tamnd commited on
Commit
3f55900
·
verified ·
1 Parent(s): d47c1e5

Add 2014-12-12 — 429.6K 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,372 days), totaling **254,545,454 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 86.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ███████████████████░░░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 117.3M
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 | 328 | 117,309,341 | 357,650 | 48.0 GB | 11.0 GB | 3h55m | 20h08m | 4h47m |
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 ██████████████████████████████ 59.4M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -180,7 +180,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ███████████████████░░░░░░░░░░░ 4.4M
183
- 2014 ██████████████████████████████ 6.8M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
@@ -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 ██████████████████████████████ 5.2M
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 ██████████████████████████████ 10.5M
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 | 127,882,805 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 14,653,119 | 5.8% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 22,252,311 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,472,548 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,608,770 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 23,552,384 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,936,344 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 31,930,279 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,455,148 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 374,031 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,271,360 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,914,355 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 235,872 | 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,374 days), totaling **255,286,235 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 86.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.5 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 ██████████████████████████████ 118.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 | 330 | 118,050,122 | 357,727 | 48.5 GB | 11.1 GB | 3h57m | 20h10m | 4h47m |
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 ██████████████████████████████ 59.8M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ███████████████████░░░░░░░░░░░ 4.4M
183
+ 2014 ██████████████████████████████ 6.9M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
 
202
  ```
203
  2011 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
204
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 1.8M
205
+ 2013 ████████████████░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.2M
207
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
208
  ```
 
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ████████████████████░░░░░░░░░░ 7.1M
228
+ 2014 ██████████████████████████████ 10.6M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 128,267,592 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 14,696,404 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 22,313,829 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,505,757 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,619,222 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 23,613,921 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 8,959,758 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 32,021,297 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,467,955 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 376,304 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,276,423 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,921,637 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 236,720 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fae50410c937ad577855005fe28e1a636c55ac66259320df2e817bddde614cf6
3
+ size 111623
data/creates/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c94a5601f3db38e2eedbffeeba198ef64def3a107a40e00015de5185369824de
3
+ size 7463291
data/deletes/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:420ad8e0c3372db4c65b5b45819519d22ff218f880923a7e97492cfeed3fcfab
3
+ size 224141
data/forks/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1f5126ff60217375494e7bbb14e260011b31af188fb83cd9ab000d2bf7433e6
3
+ size 370394
data/issue_comments/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c848ea137c82571163c7698f4a05d9396da1c6a0dcace757273b1252e9214c9
3
+ size 928099
data/issues/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01adbc1b13a2361b951ebe0bb9cea73d4a3270371c7e66099189befd7be90021
3
+ size 642688
data/public_events/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9f90b53a09a3edfbd14e780711d499a573a327af14525a35d2916672298c93c
3
+ size 15864
data/pull_requests/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f82750e5c05f4d8aad5a9e8935b44ac97aea4f78a6cf17811c9b8ee46813a483
3
+ size 3717626
data/pushes/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48c9ccafa913269d9dd62ef85fabf047174779d548d32a469d8560d092354ae1
3
+ size 34319347
data/stars/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc0694ddffffb06bb52f6e94b136dcb530917ea26a7f24297399a714f76e7c9f
3
+ size 1561989
data/wiki_pages/2014/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e8f13e0d8d59c83132d1299042a6d3beddad0eac3a469c13e06d8333d535a2b
3
+ size 301083
stats.csv CHANGED
@@ -1368,6 +1368,8 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1368
  2014-12-08,514854,2421,265090,27187,46140,24715,0,9492,45295,15615,59765,8867,1524,3687,4526,0,530,0,303644805,149.0,60023724,57.6,149.0,39.7
1369
  2014-12-09,519024,2336,264778,30436,47690,25132,0,8521,43280,15797,60615,9749,1454,3884,4824,0,528,0,305661566,147.6,59962539,55.0,147.6,25.8
1370
  2014-12-10,509651,2235,258450,29221,46778,24903,0,8439,43560,15561,60604,9181,1594,3824,4799,0,502,0,297686067,128.1,58330913,58.0,128.1,27.4
1371
- 2014-12-11,496922,2282,251616,28103,45540,23936,0,8285,44641,15772,57636,8693,1476,3616,4751,0,575,0,289072674,115.8,56791452,49.8,115.8,0.0
 
 
1372
  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
1373
  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
 
1368
  2014-12-08,514854,2421,265090,27187,46140,24715,0,9492,45295,15615,59765,8867,1524,3687,4526,0,530,0,303644805,149.0,60023724,57.6,149.0,39.7
1369
  2014-12-09,519024,2336,264778,30436,47690,25132,0,8521,43280,15797,60615,9749,1454,3884,4824,0,528,0,305661566,147.6,59962539,55.0,147.6,25.8
1370
  2014-12-10,509651,2235,258450,29221,46778,24903,0,8439,43560,15561,60604,9181,1594,3824,4799,0,502,0,297686067,128.1,58330913,58.0,128.1,27.4
1371
+ 2014-12-11,496922,2282,251616,28103,45540,23936,0,8285,44641,15772,57636,8693,1476,3616,4751,0,575,0,289072674,115.8,56791452,49.8,115.8,21.3
1372
+ 2014-12-12,429645,1945,218876,24802,39057,21028,0,7554,35023,13387,50881,7850,1409,3234,4119,0,480,0,254282479,98.3,49656145,56.9,98.3,0.0
1373
+ 2014-12-13,311136,1343,165911,18483,22461,12181,0,2898,26514,10027,40137,4957,864,1829,3163,0,368,0,179020319,66.2,35842743,46.3,66.2,0.0
1374
  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
1375
  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