tamnd commited on
Commit
10a4d1b
·
verified ·
1 Parent(s): cc232cd

Add 2014-12-29 — 390.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,389 days), totaling **260,780,822 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 89.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.1 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 ██████████████████████████████ 123.5M
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 | 345 | 123,544,709 | 358,100 | 51.4 GB | 11.7 GB | 4h11m | 20h33m | 5h02m |
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 ██████████████████████████████ 62.5M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 131,010,815 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 15,039,882 | 5.8% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 22,773,677 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,744,444 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,692,531 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 24,116,883 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 9,142,867 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 32,736,903 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,564,598 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 392,438 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,313,444 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,981,924 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 241,833 | 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,390 days), totaling **261,171,229 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 89.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.1 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 ██████████████████████████████ 123.9M
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 | 346 | 123,935,116 | 358,193 | 51.6 GB | 11.7 GB | 4h11m | 20h35m | 5h02m |
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 ██████████████████████████████ 62.7M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 131,198,045 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 15,065,291 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 22,814,679 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,761,526 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,697,829 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 24,156,371 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 9,155,705 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 32,781,323 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,572,108 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 393,636 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,316,106 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,986,532 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 242,206 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b417e40e433ab9acaaca3fe61004cdaf796094093a228ccf2bc5ba67ad7882c1
3
+ size 90542
data/creates/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:610fe1dd01e1410449bd23fd9e01334b67dddcb11ceda2860b806d7f7a20f895
3
+ size 5450955
data/deletes/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbfcde0bd35ce9618b8610d6b25d62bd8be4482db1bb6c38d672edbd226a052e
3
+ size 200895
data/forks/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7964b524f63938be08a71f8b42ecb62ad3edafa44fcca2b584093b2d275bb6ed
3
+ size 341716
data/issue_comments/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f366e94ded9e93483bcd63dbae07a90c581b84953bfab53b8810671ba49623f8
3
+ size 870707
data/issues/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77e39e34d3549b718776181c31127b388450ec936304e5c72dfe316504a4faf3
3
+ size 620174
data/public_events/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fbcab52a0852a51bd6e80a3203717f0f3f9e0d066c3a62cefba348057e8a872
3
+ size 14520
data/pull_requests/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66d6c5bca22c69926fa78a0fda62a7237677e2753fb792e6ec1b73a648403e19
3
+ size 2978758
data/pushes/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98008a1d9a2914cc0162630424ae4e24692385e90a9717a480f467683db42421
3
+ size 27766666
data/stars/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d91e15f801073fce16e4a89dc0dedd3f770263bffd5ba4ad444d733e24a0931
3
+ size 1757592
data/wiki_pages/2014/12/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba0860fccffe7998c8860c4a3a0f5e402254f3d223ca26ca7a6c4894ee8a60eb
3
+ size 246419
stats.csv CHANGED
@@ -1385,6 +1385,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1385
  2014-12-25,239963,599,120941,15051,14857,8516,0,2029,27666,9116,32373,4148,687,1290,2490,0,200,0,137704476,66.8,28247483,42.1,66.8,30.9
1386
  2014-12-26,275747,800,135570,27554,19292,10382,0,2423,27435,9041,32841,4603,820,1763,2955,0,268,0,147045470,71.5,28707021,39.0,71.5,55.6
1387
  2014-12-27,256942,722,133256,14340,18661,9358,0,2093,28243,8872,30461,5376,744,1612,2960,0,244,0,137385462,67.2,27098162,33.4,67.2,65.3
1388
- 2014-12-28,299671,940,152025,24427,21490,11147,0,2465,32561,10318,32891,5224,884,1517,3538,0,244,0,157583164,69.8,30264309,39.6,69.8,0.0
 
1389
  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
1390
  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
 
1385
  2014-12-25,239963,599,120941,15051,14857,8516,0,2029,27666,9116,32373,4148,687,1290,2490,0,200,0,137704476,66.8,28247483,42.1,66.8,30.9
1386
  2014-12-26,275747,800,135570,27554,19292,10382,0,2423,27435,9041,32841,4603,820,1763,2955,0,268,0,147045470,71.5,28707021,39.0,71.5,55.6
1387
  2014-12-27,256942,722,133256,14340,18661,9358,0,2093,28243,8872,30461,5376,744,1612,2960,0,244,0,137385462,67.2,27098162,33.4,67.2,65.3
1388
+ 2014-12-28,299671,940,152025,24427,21490,11147,0,2465,32561,10318,32891,5224,884,1517,3538,0,244,0,157583164,69.8,30264309,39.6,69.8,44.4
1389
+ 2014-12-29,390407,1289,187230,25409,41002,17082,0,5298,39488,12838,44420,7510,1198,2662,4608,0,373,0,216934942,91.9,40338944,40.5,91.9,0.0
1390
  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
1391
  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