tamnd commited on
Commit
4e0c3ac
·
verified ·
1 Parent(s): cb92715

Add 2014-10-09 — 454.0K events, 11 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 **2011-02-12** to **2015-01-03** (1,312 days), totaling **227,837,968 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 72.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.7 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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████████░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 90.6M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
@@ -147,7 +147,7 @@ duckdb.sql("""
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
- | 2014 | 268 | 90,601,855 | 338,066 | 34.0 GB | 8.3 GB | 3h03m | 18h13m | 4h05m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -159,7 +159,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
159
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 █████████████░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 █████████████████████████░░░░░ 38.9M
162
- 2014 ██████████████████████████████ 45.8M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -202,7 +202,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
202
  ```
203
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
204
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.8M
205
- 2013 █████████████████████░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 4.0M
207
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
208
  ```
@@ -225,7 +225,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
225
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ██████████████░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████████░░░░░ 7.1M
228
- 2014 ██████████████████████████████ 8.2M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 114,302,385 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 12,924,962 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 19,911,138 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,278,109 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,231,237 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 21,277,798 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,077,110 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 28,725,841 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,001,811 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 303,441 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,090,386 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,640,854 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 209,676 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
 
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 **2011-02-12** to **2015-01-03** (1,313 days), totaling **228,291,989 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 72.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.8 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
 
 
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████████░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 91.1M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
 
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
+ | 2014 | 269 | 91,055,876 | 338,497 | 34.3 GB | 8.4 GB | 3h04m | 18h15m | 4h06m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
159
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 █████████████░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 █████████████████████████░░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 46.1M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
202
  ```
203
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
204
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.8M
205
+ 2013 █████████████████████░��░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 4.0M
207
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
208
  ```
 
225
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ██████████████░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████████░░░░░ 7.1M
228
+ 2014 ██████████████████████████████ 8.3M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 114,533,450 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 12,948,394 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 19,954,056 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,299,939 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,238,260 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 21,316,291 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,092,607 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 28,779,389 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,009,351 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 304,573 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,093,824 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,645,904 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 210,130 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:494dfd4c430f028aaf4832ce8f90518c967354e35abfe620c7802b3074ac35ee
3
+ size 119584
data/creates/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90203178b3b23616c690603b20d818f3eda28ca21d07a7ddd98ab562813dbbd8
3
+ size 2946333
data/deletes/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:070bc0e916667ce39757394161dec02e9d85aa4e9f72d6dbabc536d8f4823d00
3
+ size 218143
data/forks/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba501152a2285ee25c9aa4c73064efbdc9fedf4d99469b8bbf57af64a52d99b3
3
+ size 432164
data/issue_comments/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa9b848318ae55dc8a24535a173cc3a0d3fa11ae859d6c7a59f21dddb90698a2
3
+ size 1065663
data/issues/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b4d5dbdeeb0f9cdee2c8bb415e9b2ab75a51bbdccdab345ad83527d77e73690
3
+ size 598451
data/public_events/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17655411b80cb1e155279131ce3668db8b8401477cb8acef1f4853c171034489
3
+ size 17914
data/pull_requests/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ed4063346a5eb13d15ae4d1423bfecc111c2988b0c8f4ee63ec65fb7c4ec7e6
3
+ size 3717636
data/pushes/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06a82f6631bbb5ac4d48af21899f1529b35dc90954014b727cddcfb08b4c7c41
3
+ size 35264805
data/stars/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9288f2d57852daf06bf684956929eb475f8f11fa4b228b915501c029138acaa
3
+ size 1757999
data/wiki_pages/2014/10/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:173d2679d6eceb98d4d2c1ca7e424bfb5ce2b7d3389bf433131e3f31fe71ccd1
3
+ size 323494
stats.csv CHANGED
@@ -1308,6 +1308,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1308
  2014-10-05,292293,1315,162849,13406,21830,11392,0,2632,24499,8272,34285,4878,924,1935,3792,0,284,0,157624973,72.8,32969698,60.1,72.8,69.5
1309
  2014-10-06,441525,2376,222963,23238,44023,21852,0,7047,35701,13817,52166,7719,1176,3449,5602,0,396,0,247692434,119.5,45104774,53.2,119.5,44.9
1310
  2014-10-07,468995,2554,229635,32132,44112,21743,0,7500,43034,15298,55175,7193,1204,3257,5623,0,535,0,259490412,123.4,47177374,56.2,123.4,45.3
1311
- 2014-10-08,463901,2354,236116,23251,43485,22433,0,7179,39897,16160,55118,8118,1261,3166,4869,0,494,0,259255403,123.8,48235960,65.6,123.8,0.0
 
1312
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1313
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
1308
  2014-10-05,292293,1315,162849,13406,21830,11392,0,2632,24499,8272,34285,4878,924,1935,3792,0,284,0,157624973,72.8,32969698,60.1,72.8,69.5
1309
  2014-10-06,441525,2376,222963,23238,44023,21852,0,7047,35701,13817,52166,7719,1176,3449,5602,0,396,0,247692434,119.5,45104774,53.2,119.5,44.9
1310
  2014-10-07,468995,2554,229635,32132,44112,21743,0,7500,43034,15298,55175,7193,1204,3257,5623,0,535,0,259490412,123.4,47177374,56.2,123.4,45.3
1311
+ 2014-10-08,463901,2354,236116,23251,43485,22433,0,7179,39897,16160,55118,8118,1261,3166,4869,0,494,0,259255403,123.8,48235960,65.6,123.8,37.0
1312
+ 2014-10-09,454021,2601,231065,23432,42918,21830,0,7023,38493,15497,53548,7540,1132,3438,5050,0,454,0,252782256,118.6,46462186,81.3,118.6,0.0
1313
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1314
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0