tamnd commited on
Commit
a92df9d
·
verified ·
1 Parent(s): b2042f9

Add 2015-08-04 — 638.0K events, 14 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ configs:
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
- The archive currently spans from **2015-04-14** to **2015-08-03** (112 days), totaling **57,709,348 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
- We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 17.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.3 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -104,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 57.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 112 | 57,709,348 | 515,262 | 17.9 GB | 9.3 GB | 1h20m | 12h57m | 2h27m |
113
 
114
 
115
  ### Pushes per year
@@ -117,7 +117,7 @@ duckdb.sql("""
117
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
118
 
119
  ```
120
- 2015 ██████████████████████████████ 27.9M
121
  ```
122
 
123
 
@@ -134,7 +134,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
134
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
135
 
136
  ```
137
- 2015 ██████████████████████████████ 2.7M
138
  ```
139
 
140
 
@@ -153,7 +153,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
153
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
154
 
155
  ```
156
- 2015 ██████████████████████████████ 2.9M
157
  ```
158
 
159
 
@@ -171,7 +171,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
171
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
172
 
173
  ```
174
- 2015 ��█████████████████████████████ 5.1M
175
  ```
176
 
177
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 27,912,965 | 48.4% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,698,263 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 5,304,433 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,892,677 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 970,767 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 5,145,451 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,931,830 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 8,180,180 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,279,935 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 193,794 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 354,120 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 526,322 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 262,917 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 55,694 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
 
61
 
62
  This dataset contains every public event on GitHub: every push, pull request, issue, star, fork, code review, release, and discussion across all public repositories. GitHub is the world's largest software development platform, home to over 200 million repositories and the daily work of tens of millions of developers, from individual open-source contributors to the engineering teams behind the most widely used software on earth.
63
 
64
+ The archive currently spans from **2015-04-14** to **2015-08-06** (115 days), totaling **59,448,803 events** across 16 fully structured Parquet tables. New events are fetched directly from the GitHub Events API every few seconds and committed as 5-minute Parquet blocks through an automated live pipeline, so the dataset stays current with GitHub itself.
65
 
66
+ We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 18.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.6 GB of Zstd-compressed Parquet. Every nested JSON field is expanded into typed columns — no JSON parsing needed downstream. The data is partitioned as `data/TABLE/YYYY/MM/DD.parquet`, making it straightforward to query with DuckDB, load with the `datasets` library, or process with any tool that reads Parquet.
67
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
104
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 59.4M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 115 | 59,448,803 | 516,946 | 18.5 GB | 9.6 GB | 1h24m | 13h13m | 2h29m |
113
 
114
 
115
  ### Pushes per year
 
117
  Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
118
 
119
  ```
120
+ 2015 ██████████████████████████████ 28.7M
121
  ```
122
 
123
 
 
134
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
135
 
136
  ```
137
+ 2015 ██████████████████████████████ 2.8M
138
  ```
139
 
140
 
 
153
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
154
 
155
  ```
156
+ 2015 ██████████████████████████████ 3.0M
157
  ```
158
 
159
 
 
171
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
172
 
173
  ```
174
+ 2015 █████████████████████████████ 5.3M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 28,732,166 | 48.3% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,779,248 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 5,478,287 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,986,663 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,006,093 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 5,303,502 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,989,491 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 8,423,162 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,318,047 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 199,672 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 365,564 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 540,391 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 269,283 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 57,234 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8188bc68fe4734cb79e01bcc91390d7ea386c9d30d040d66e9db990be9985914
3
+ size 519102
data/creates/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5854b51232f9d66f237bedff56f460a06d5cc2bc30c733a1ff2b480b36f12ef
3
+ size 3327336
data/deletes/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fbbf21d88bfa4c77e522f086fe0b228757e729c48cd32cd2da52cb173f67479
3
+ size 492459
data/forks/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bb1d679462f9d2358c1190b65330608cfbdeca338d840240eb3f23ffba1ce5f
3
+ size 2207607
data/issue_comments/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f74525538713df41f734f24e15b55ad7c8632643418f2e7bbfdbdc2e5e9921f6
3
+ size 11931624
data/issues/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:074e4f5987dd28ef017662cd80e07d5799403ca6a78d175adcd6f21197ed54ee
3
+ size 7350274
data/members/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5a4dc77c2455879bd66818b8401e98fdcee11ef32f6085cb6ef220d5695daed
3
+ size 95526
data/pr_review_comments/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97bf8e3a0c662b63b22ce1adc1a05793be3ce0f7f15f901151dbf33d2a546f60
3
+ size 4700025
data/public_events/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89a37315ae2a5aa51feda8713cf842c05c31af608f23d96f11588704db256294
3
+ size 26509
data/pull_requests/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa457127d6b0ffc7cc45ee09b7db72f714a1e6aa3d47dbfc7d659e162b4d0ee2
3
+ size 6148485
data/pushes/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9ebeca689ace82c3aef1ec22d342b3e3c3eb63e51a89e4e687d318e0d353793
3
+ size 72287196
data/releases/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81518b9075b4a737b99fa497490e50eceed0e6cf336c85b286cd048012599395
3
+ size 300424
data/stars/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3320436aaa18a0b04aaccb805cae62f7c882912bd02e2a84d017a3c2bf67a8f
3
+ size 1958794
data/wiki_pages/2015/08/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:064e1054fb36e3162c32bb2f66fb39bff4f1556952e28380bc681d78e0652ff0
3
+ size 408263
stats.csv CHANGED
@@ -110,4 +110,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
110
  2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,82.2
111
  2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,28.4
112
  2015-08-02,357759,0,185599,17471,28378,15253,0,4292,31977,10856,49929,6677,1218,1692,2982,1121,314,0,120377063,261.4,60056098,31.1,261.4,118.2
113
- 2015-08-03,603710,0,284237,31441,60312,32568,0,12304,53325,19521,83813,13065,2139,3434,4628,2350,573,0,235592743,432.7,108265015,34.5,432.7,0.0
 
 
 
 
110
  2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,82.2
111
  2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,28.4
112
  2015-08-02,357759,0,185599,17471,28378,15253,0,4292,31977,10856,49929,6677,1218,1692,2982,1121,314,0,120377063,261.4,60056098,31.1,261.4,118.2
113
+ 2015-08-03,603710,0,284237,31441,60312,32568,0,12304,53325,19521,83813,13065,2139,3434,4628,2350,573,0,235592743,432.7,108265015,34.5,432.7,88.7
114
+ 2015-08-04,638045,0,296028,29095,63615,33662,0,13312,57184,20664,95452,14926,2119,3898,5083,2434,573,0,247187320,378.4,111753624,151.3,378.4,0.0
115
+ 2015-08-05,628088,0,297334,29755,62890,33915,0,12707,57059,20844,86587,12778,2075,4065,5230,2307,542,0,245004964,355.4,111248267,93.1,355.5,0.0
116
+ 2015-08-06,473322,0,225839,22135,47349,26409,0,9307,43808,16153,60943,10408,1684,3481,3756,1625,425,0,187356214,259.6,86148628,24.3,259.6,0.0