tamnd commited on
Commit
33c87ff
·
verified ·
1 Parent(s): 2f485f3

Add 2012-02-25 to 2012-03-02 — 7 days, 900.4K events, 7 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,176 days), totaling **194,637,563 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 57.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.0 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,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 35.2M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ██████████████████████████░░░░ 66.4M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
- | 2012 | 303 | 35,233,561 | 116,282 | 9.4 GB | 2.8 GB | 2h05m | 3h15m | 2h30m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 204 | 66,376,258 | 325,373 | 21.2 GB | 6.1 GB | 2h13m | 12h04m | 3h04m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -157,7 +157,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.9M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ██████████████████████████░░░░ 33.7M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -223,7 +223,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.4M
225
  2013 ██████████████████████████████ 7.0M
226
- 2014 ██████████████████████████░░░░ 6.1M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 97,684,803 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,781,982 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,912,040 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,882,346 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,805,278 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,313,447 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,967,887 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,671,828 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,515,492 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 237,890 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,815,596 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,188,324 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 179,615 | 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,177 days), totaling **195,052,445 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 57.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.9 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 ██████████████░░░░░░░░░░░░░░░░ 35.2M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ██████████████████████████░░░░ 66.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
146
+ | 2012 | 303 | 35,233,561 | 116,282 | 9.4 GB | 2.6 GB | 2h02m | 3h15m | 2h25m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 205 | 66,791,140 | 325,810 | 21.4 GB | 6.1 GB | 2h14m | 12h12m | 3h05m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.9M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ██████████████████████████░░░░ 33.9M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.4M
225
  2013 ██████████████████████████████ 7.0M
226
+ 2014 ██████████████████████████░░░░ 6.2M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 97,888,422 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,805,119 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,956,294 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,902,352 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,812,518 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,351,238 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,982,017 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,719,032 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,522,409 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 239,083 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,818,698 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,192,653 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 179,948 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/02/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1a53ed43b721b991443d85e3652d9f96b4b3d08153754be425ee9a55b3539eeb
3
- size 235374
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cced974e3c3e0016155d7f9423080e5977dd53a3319a2626d2e67955cce3cc53
3
+ size 338241
data/stars/2012/02/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7ffa1fefbb8cd3189681d2f6947ac4008373939c6789424a392fa14a50963a6b
3
- size 225649
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f04ca41f415b7780db606a6f79657424f18f1990a12e23fd10b00f70dfbdf760
3
+ size 326036
data/stars/2012/02/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c58edf0acbf5b32c47835ca94a58f4822222501a6a8c4160e7d1d29a208a8239
3
- size 352304
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:195468feffcedce3c21e489554032ec46aaebce8b04f144f632bfb994058a8fe
3
+ size 504745
data/stars/2012/02/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3e73b8bc907817bd22307fd29e326fc3ba2a7536a136278f3e7570165a578ad6
3
- size 356722
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ad1c27e3a05a770a45392695511d0e8cf4c23b48b85958d99e3bdb8370e12e3
3
+ size 521289
data/stars/2012/02/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:91fdbab814df9e29f31ec6c18cd44f2abbe29223ca5c93a6cf66d4ea2598a4d2
3
- size 343248
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30724efab1470f816b04867b0990d89d5c8a0a85d05e6cc222bd37f540788103
3
+ size 503882
data/stars/2012/03/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d35709e63627ace93d85d4699e9cbfa914099e449e4338c7cebd2a3d227c9053
3
- size 278062
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db42fd697ef5d7e9292b4a746ae835298d7f7a8de16e3c84ba1626d52f1d7292
3
+ size 412380
data/stars/2012/03/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b0d730c5a53329bf7397d742c57d2921d5d7179604768193d062cc570909b490
3
- size 296702
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2466a8598e168c40a6559ab2a9eae5798075b94b4e07ea8a5c7f2d1f18eb671c
3
+ size 432406
stats.csv CHANGED
@@ -382,10 +382,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
382
  2012-02-27,140378,0,54127,5609,8665,28455,0,810,11535,3464,22724,1091,0,1276,2018,509,95,0,46246995,39.1,504745,28.4,39.1,0.0
383
  2012-02-28,143323,0,56258,5799,9337,25900,0,813,12338,3537,23077,1669,0,1451,2421,592,131,0,46664892,44.1,521289,8.0,44.1,0.0
384
  2012-02-29,145943,0,54626,5674,9253,27517,0,1063,11872,3540,26672,934,0,1352,2743,593,104,0,46524459,38.3,503882,11.0,38.3,0.0
385
- 2012-03-01,121155,0,45647,4625,7442,25808,0,832,9559,3033,19715,815,0,1149,1966,458,106,0,39461851,35.4,15301594,23.9,35.4,31.2
386
- 2012-03-02,134585,0,47252,6581,10555,26537,0,673,9855,3155,24827,1080,0,1211,2197,562,100,0,41240553,30.3,16141369,34.4,30.3,33.7
387
  2012-03-03,100314,0,37344,4615,6179,18003,0,306,7801,2401,19981,630,0,840,1658,510,46,0,29497236,21.8,340780,7.7,21.8,0.0
388
- 2012-03-04,79954,0,30820,2916,4154,13206,0,326,6327,1774,16563,1187,0,817,1504,312,48,0,23218953,16.7,9828549,29.7,16.7,36.1
389
  2012-03-05,117772,0,46899,5245,8053,22635,0,719,10419,2868,15867,1102,0,1388,1926,568,83,0,39269934,27.2,15781870,24.3,27.2,28.4
390
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,49.6,18967539,61.8,49.6,25.3
391
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
@@ -1172,6 +1172,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1172
  2014-08-01,366106,1311,172446,16873,32989,17009,0,6125,31875,11145,61860,6561,933,2985,3670,0,324,0,215629842,406.0,37932947,45.9,406.0,61.6
1173
  2014-08-02,239501,853,121428,10201,16897,8661,0,1554,21146,8287,42179,3200,683,1599,2642,0,171,0,128360903,246.9,23603017,42.6,247.0,68.5
1174
  2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,51.5
1175
- 2014-08-04,401409,1718,195378,21869,43573,19363,0,6998,37373,14073,46148,6742,1101,2852,3806,0,415,0,232502272,466.5,40240092,53.6,466.5,0.0
 
1176
  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
1177
  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
 
382
  2012-02-27,140378,0,54127,5609,8665,28455,0,810,11535,3464,22724,1091,0,1276,2018,509,95,0,46246995,39.1,504745,28.4,39.1,0.0
383
  2012-02-28,143323,0,56258,5799,9337,25900,0,813,12338,3537,23077,1669,0,1451,2421,592,131,0,46664892,44.1,521289,8.0,44.1,0.0
384
  2012-02-29,145943,0,54626,5674,9253,27517,0,1063,11872,3540,26672,934,0,1352,2743,593,104,0,46524459,38.3,503882,11.0,38.3,0.0
385
+ 2012-03-01,121155,0,45647,4625,7442,25808,0,832,9559,3033,19715,815,0,1149,1966,458,106,0,39461851,33.2,412380,29.6,33.2,0.0
386
+ 2012-03-02,134585,0,47252,6581,10555,26537,0,673,9855,3155,24827,1080,0,1211,2197,562,100,0,41240553,29.6,432406,9.1,29.6,0.0
387
  2012-03-03,100314,0,37344,4615,6179,18003,0,306,7801,2401,19981,630,0,840,1658,510,46,0,29497236,21.8,340780,7.7,21.8,0.0
388
+ 2012-03-04,79954,0,30820,2916,4154,13206,0,326,6327,1774,16563,1187,0,817,1504,312,48,0,23218953,17.1,273033,6.9,17.1,0.0
389
  2012-03-05,117772,0,46899,5245,8053,22635,0,719,10419,2868,15867,1102,0,1388,1926,568,83,0,39269934,27.2,15781870,24.3,27.2,28.4
390
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,49.6,18967539,61.8,49.6,25.3
391
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,49.2,17775768,52.4,49.2,25.2
 
1172
  2014-08-01,366106,1311,172446,16873,32989,17009,0,6125,31875,11145,61860,6561,933,2985,3670,0,324,0,215629842,406.0,37932947,45.9,406.0,61.6
1173
  2014-08-02,239501,853,121428,10201,16897,8661,0,1554,21146,8287,42179,3200,683,1599,2642,0,171,0,128360903,246.9,23603017,42.6,247.0,68.5
1174
  2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,51.5
1175
+ 2014-08-04,401409,1718,195378,21869,43573,19363,0,6998,37373,14073,46148,6742,1101,2852,3806,0,415,0,232502272,466.5,40240092,53.6,466.5,57.6
1176
+ 2014-08-05,414882,1627,203619,23137,44254,20006,0,7240,37791,14130,47204,6917,1193,3102,4329,0,333,0,240654829,478.7,41706265,43.1,478.7,0.0
1177
  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
1178
  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