tamnd commited on
Commit
faff2ef
·
verified ·
1 Parent(s): 66dd9db

Add 2014-09-10 — 436.4K 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,284 days), totaling **216,434,489 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 66.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
@@ -136,7 +136,7 @@ duckdb.sql("""
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 ████████████████████████████░░ 76.1M
139
- 2014 ██████████████████████████████ 79.3M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
@@ -144,8 +144,8 @@ duckdb.sql("""
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
- | 2013 | 353 | 76,069,545 | 215,494 | 23.1 GB | 6.0 GB | 3h08m | 10h17m | 3h53m |
148
- | 2014 | 240 | 79,283,095 | 330,346 | 28.1 GB | 7.3 GB | 2h39m | 16h00m | 3h42m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -156,8 +156,8 @@ Pushes are the most common event type, representing roughly half of all GitHub a
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
- 2013 ████████████████████████████░ 38.9M
160
- 2014 ██████████████████████████████ 40.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 108,638,367 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 12,014,281 | 5.6% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,897,984 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,766,445 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,059,796 | 1.0% | Line-level PR comments |
645
- | `stars` | WatchEvent | 20,330,391 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,713,254 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 27,425,119 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,812,792 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 273,798 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 2,009,585 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,490,624 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 199,086 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
 
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,285 days), totaling **216,870,839 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 66.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.4 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
 
 
136
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ████████████████░░░░░░░░░░░░░░ 42.5M
138
  2013 ████████████████████████████░░ 76.1M
139
+ 2014 ██████████████████████████████ 79.7M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
 
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
147
+ | 2013 | 353 | 76,069,545 | 215,494 | 23.1 GB | 5.8 GB | 3h05m | 10h04m | 3h47m |
148
+ | 2014 | 241 | 79,719,445 | 330,786 | 28.3 GB | 7.3 GB | 2h40m | 16h08m | 3h43m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ███████████████░░░░░░░░░░░░░░░ 20.6M
159
+ 2013 ████████████████████████████░ 38.9M
160
+ 2014 ██████████████████████████████ 40.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 108,859,167 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 12,034,352 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,940,015 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,787,921 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,067,248 | 1.0% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 20,366,881 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,728,374 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 27,477,420 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,821,341 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 275,020 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 2,012,915 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,495,321 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 199,487 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/commit_comments/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1124109e59fa74f7d71225735faa9f570dab06ab82bd996bd3b9780586c1b5a
3
+ size 114064
data/creates/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7d46ad0f95234a84e713b353c60f5cf1eef97f5ccf9be9f498af1fd9553aaf7
3
+ size 2773439
data/deletes/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56eae34b4f582425190879b48f60d305d4476f2f1f91da38dd8fdefea3473faf
3
+ size 236198
data/forks/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5b023332cbf931f0a7520d284a6df8726bcfca71b6305ff74bd71e7880edc1f
3
+ size 396191
data/issue_comments/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ae3bc77fe571a56b3fcf194a778732880a2eef593a6fc6ab35410dd7911b529
3
+ size 972561
data/issues/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:306814422b5e1e4d55708d4ba082da67189bf31d8ba16b58de7d605fdf715ffb
3
+ size 529250
data/public_events/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39a301efac31cbf8cde9932fbf3cfbda7638b28cf405f18e7ecdcc3d1fed1619
3
+ size 15399
data/pull_requests/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d7b479828ea216b2ccd2c03ea7a71ab8084af93e3591af041e2492117a2c5e7
3
+ size 3751471
data/pushes/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b80b395a977990774ed2d7855d679021c77e90ae358802ba57703c312a1e58d4
3
+ size 34284349
data/stars/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afe07058c10d67785568815201f80f3b6d862dcb857b7c2f50ed6f36401157dc
3
+ size 1629367
data/wiki_pages/2014/09/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:669861d7b25d47b79bed9db0c7f4323845a97d05f5adbcf2484f3826e3fb7ac7
3
+ size 323932
stats.csv CHANGED
@@ -768,9 +768,9 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
768
  2013-03-19,234720,1902,117519,12784,22390,9329,0,2788,23196,9650,26578,1832,0,2252,4294,0,206,0,77673255,55.8,1058074,10.2,55.8,0.0
769
  2013-03-20,234338,1646,117914,12857,22914,9201,0,2639,22727,9433,26466,1893,0,2454,3964,0,230,0,77014806,55.6,987310,11.7,55.6,0.0
770
  2013-03-21,228991,1879,115596,12419,23879,8740,0,2176,21009,8764,26197,1865,0,2342,3947,0,178,0,73730998,54.4,955186,18.6,54.4,0.0
771
- 2013-03-22,199993,1569,103385,10473,17805,7839,0,1846,19187,7658,22741,1636,0,2226,3445,0,183,0,65998243,132.8,20714046,39.7,132.8,43.4
772
- 2013-03-23,142771,1104,75244,7587,10318,4539,0,1078,14512,5487,18083,1025,0,1150,2540,0,104,0,44199233,85.6,13823877,33.4,85.6,38.4
773
- 2013-03-24,179246,1107,92130,10378,16714,5081,0,1066,16987,6550,22287,2267,0,1555,2982,0,142,0,57744900,114.1,18372909,33.2,114.1,48.1
774
  2013-03-25,229870,1804,117636,12913,21050,9135,0,2271,21213,8784,26764,1931,0,2270,3876,0,223,0,76027975,152.9,23993454,47.2,152.9,53.4
775
  2013-03-26,240524,1573,116972,26622,20157,8823,0,2116,22636,8717,24989,1817,0,2076,3809,0,217,0,74497767,163.8,22745046,33.6,163.8,39.1
776
  2013-03-27,239110,1606,115132,23776,21887,9368,0,2483,22379,9092,25110,1825,0,2301,3942,0,209,0,75471826,163.1,23132503,42.1,163.1,47.9
@@ -1280,6 +1280,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1280
  2014-09-06,244058,1198,136000,11098,18542,9442,0,2029,20095,8144,28962,3647,621,1342,2711,0,227,0,138739344,256.5,25361563,44.6,256.5,37.3
1281
  2014-09-07,290727,1035,162117,12322,21808,11148,0,2410,25387,9214,35021,4383,800,1853,2956,0,273,0,162165359,308.8,29846104,33.2,308.8,47.3
1282
  2014-09-08,441314,2074,228681,21306,45702,20124,0,7307,36789,13110,49375,7199,1170,3495,4502,0,480,0,250817458,498.0,44655514,50.3,498.0,57.8
1283
- 2014-09-09,431793,2165,215272,21451,44255,20470,0,7860,38439,14247,49998,8373,1092,3163,4644,0,364,0,251008448,471.0,44371276,44.5,471.0,0.0
 
1284
  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
1285
  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
 
768
  2013-03-19,234720,1902,117519,12784,22390,9329,0,2788,23196,9650,26578,1832,0,2252,4294,0,206,0,77673255,55.8,1058074,10.2,55.8,0.0
769
  2013-03-20,234338,1646,117914,12857,22914,9201,0,2639,22727,9433,26466,1893,0,2454,3964,0,230,0,77014806,55.6,987310,11.7,55.6,0.0
770
  2013-03-21,228991,1879,115596,12419,23879,8740,0,2176,21009,8764,26197,1865,0,2342,3947,0,178,0,73730998,54.4,955186,18.6,54.4,0.0
771
+ 2013-03-22,199993,1569,103385,10473,17805,7839,0,1846,19187,7658,22741,1636,0,2226,3445,0,183,0,65998243,42.5,858458,33.2,42.5,0.0
772
+ 2013-03-23,142771,1104,75244,7587,10318,4539,0,1078,14512,5487,18083,1025,0,1150,2540,0,104,0,44199233,27.4,655365,6.7,27.5,0.0
773
+ 2013-03-24,179246,1107,92130,10378,16714,5081,0,1066,16987,6550,22287,2267,0,1555,2982,0,142,0,57744900,31.1,756776,8.8,31.1,0.0
774
  2013-03-25,229870,1804,117636,12913,21050,9135,0,2271,21213,8784,26764,1931,0,2270,3876,0,223,0,76027975,152.9,23993454,47.2,152.9,53.4
775
  2013-03-26,240524,1573,116972,26622,20157,8823,0,2116,22636,8717,24989,1817,0,2076,3809,0,217,0,74497767,163.8,22745046,33.6,163.8,39.1
776
  2013-03-27,239110,1606,115132,23776,21887,9368,0,2483,22379,9092,25110,1825,0,2301,3942,0,209,0,75471826,163.1,23132503,42.1,163.1,47.9
 
1280
  2014-09-06,244058,1198,136000,11098,18542,9442,0,2029,20095,8144,28962,3647,621,1342,2711,0,227,0,138739344,256.5,25361563,44.6,256.5,37.3
1281
  2014-09-07,290727,1035,162117,12322,21808,11148,0,2410,25387,9214,35021,4383,800,1853,2956,0,273,0,162165359,308.8,29846104,33.2,308.8,47.3
1282
  2014-09-08,441314,2074,228681,21306,45702,20124,0,7307,36789,13110,49375,7199,1170,3495,4502,0,480,0,250817458,498.0,44655514,50.3,498.0,57.8
1283
+ 2014-09-09,431793,2165,215272,21451,44255,20470,0,7860,38439,14247,49998,8373,1092,3163,4644,0,364,0,251008448,471.0,44371276,44.5,471.0,71.4
1284
+ 2014-09-10,436350,2410,220800,20071,42031,21476,0,7452,36490,15120,52301,8549,1222,3330,4697,0,401,0,254952149,485.4,45026221,39.5,485.4,0.0
1285
  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
1286
  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