tamnd commited on
Commit
34566f1
·
verified ·
1 Parent(s): da0590c

Add 2012-11-10 to 2012-11-16 — 7 days, 1.0M 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,243 days), totaling **206,973,105 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 62.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
- 2012 ████████████████░░░░░░░░░░░░░░ 40.1M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████████░ 73.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
@@ -143,7 +143,7 @@ duckdb.sql("""
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 | 349 | 40,109,704 | 114,927 | 10.7 GB | 581.3 MB | 1h24m | 2h41m | 50m25s |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 225 | 73,835,657 | 328,158 | 25.2 GB | 6.8 GB | 2h28m | 14h20m | 3h28m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
@@ -155,7 +155,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
- 2012 ███████████████░░░░░░░░░░░░░░░ 19.3M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████████░ 37.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
@@ -199,7 +199,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
199
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
- 2012 ███████████████░░░░░░░░░░░░░░�� 1.7M
203
  2013 ██████████████████████████░░░░ 2.9M
204
  2014 ██████████████████████████████ 3.3M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
@@ -221,7 +221,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
- 2012 ████████████████░░░░░░░░░░░░░░ 3.8M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 █████████████████████████████░ 6.8M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 103,829,643 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,430,583 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 18,013,778 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,377,903 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,946,185 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,478,620 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,388,344 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 26,330,518 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,691,370 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 258,733 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,928,808 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,357,351 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 190,732 | 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,246 days), totaling **207,379,644 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 62.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.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
 
 
134
 
135
  ```
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
+ 2012 ████████████████░░░░░░░░░░░░░░ 40.5M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 █████████████████████████████░ 73.8M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
 
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 | 352 | 40,516,243 | 115,102 | 10.8 GB | 527.9 MB | 1h23m | 2h43m | 49m09s |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
  | 2014 | 225 | 73,835,657 | 328,158 | 25.2 GB | 6.8 GB | 2h28m | 14h20m | 3h28m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
 
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
+ 2012 ███████████████░░░░░░░░░░░░░░░ 19.6M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 █████████████████████████████░ 37.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
 
199
 
200
  ```
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
+ 2012 ███████████████░░░░░░░░░░░░░░ 1.7M
203
  2013 ██████████████████████████░░░░ 2.9M
204
  2014 ██████████████████████████████ 3.3M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
 
221
 
222
  ```
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
+ 2012 ████████████████░░░░░░░░░░░░░░ 3.9M
225
  2013 ██████████████████████████████ 7.0M
226
  2014 █████████████████████████████░ 6.8M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 104,045,270 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,452,450 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 18,047,283 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,392,381 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,949,972 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,513,359 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,403,675 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 26,379,785 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,693,983 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 258,733 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,932,846 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,365,049 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 191,079 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/11/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c9198aaf6bd6724148744e3794eae21d96e83a508bf7979a725e17a0720e0f48
3
- size 194029
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a690ed959a83335c920a81009e7065a9371d8a09af74014301456d9ccbb5b367
3
+ size 415389
data/stars/2012/11/11.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c975c98cb204411ecd4672bd720fdceeb6864b977fb95ca1541dc1dcf4277ce5
3
- size 235143
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9935d579f880a8f6d64cd5df1cfd73dd3f812ce3ddd613efe95f1879973af691
3
+ size 473955
data/stars/2012/11/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f2e8409870571e8c335c991e01e4c8469d181ebb771477730c83df954492323e
3
- size 318765
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:646695117e8a660950ef26870a6fbdcc559afba907b337a5d875b13060eac58f
3
+ size 637134
data/stars/2012/11/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e44380b15819db5ce320613da0bf34780a9251874017c30d2816836b78bc5335
3
- size 325441
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7c40d706d96d8c30924d0b52fa6224b59f23b904a9b18aa666c13561ebf4a03
3
+ size 666259
data/stars/2012/11/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:422b17a30215341a6997065a5c54f32e4239853f25a6a52fec41c4649a9e20ff
3
- size 319494
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af528226700a2417807a56b299dfe8f14b29b43aae7dfe28d58426b58ee18c3f
3
+ size 625812
data/stars/2012/11/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bb16b99498c3f9245fc8c2808eae853ee2fb72876935a5f51279b25f83c79235
3
- size 374431
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f5b0cf52cb8cf620dbebb63532053f4d45e281abe81bf9971fa03c1189ea40a
3
+ size 688099
data/stars/2012/11/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6b5ec61317dff74bf9a732b98d8c3e14e78106e3603290a60d18708eeba3a8c4
3
- size 275564
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6fcc86b906acb39f55a4dac48baa4f837a143e872510801fca87e4b90ef422f
3
+ size 561417
stats.csv CHANGED
@@ -629,18 +629,21 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
629
  2012-10-31,150118,1213,77143,9705,12962,5490,0,1434,13409,5328,17633,1087,0,1646,2942,0,126,0,46053749,34.8,596949,15.7,34.8,5.9
630
  2012-11-01,145294,1137,75863,7435,11684,5085,0,1152,12357,5714,19029,866,0,1574,3264,0,134,0,44261406,27.8,564800,14.2,27.8,5.9
631
  2012-11-02,133633,958,68668,7064,11984,5031,0,1198,12075,5086,16256,961,0,1444,2785,0,123,0,40594958,28.1,571109,13.4,28.1,5.9
632
- 2012-11-03,96330,717,52867,5145,6485,2765,0,422,8206,3771,12570,569,0,813,1913,0,87,0,28126794,17.9,396538,5.9,17.9,0.0
633
- 2012-11-04,113737,830,63971,5133,7465,3111,0,742,10024,4215,13997,597,0,1018,2541,0,93,0,34019135,24.3,464926,4.9,24.3,0.0
634
- 2012-11-05,157801,1327,82949,8233,13599,5556,0,1614,13888,5956,18464,893,0,1745,3436,0,141,0,48531086,35.8,627324,6.6,35.8,0.0
635
- 2012-11-06,157177,1231,81734,7828,13088,5793,0,1801,14462,6275,18509,1029,0,1842,3469,0,116,0,48338231,36.4,637221,7.7,36.4,0.0
636
- 2012-11-07,167371,1340,82774,10898,14069,5909,0,1996,13743,6213,19365,1152,0,1832,7940,0,140,0,49655063,35.4,619598,6.9,35.4,0.0
637
- 2012-11-08,160102,1283,83347,9019,13557,5871,0,2012,14010,6475,18168,1122,0,1820,3289,0,129,0,48557125,29.5,634857,24.4,29.5,0.0
638
- 2012-11-09,140775,1100,72482,9655,12326,4937,0,1396,11999,5168,16691,846,0,1461,2572,0,142,0,42006830,21.2,547500,19.3,21.3,0.0
639
- 2012-11-10,99754,905,56260,4914,6594,2767,0,492,8418,3570,12088,564,0,827,2248,0,107,0,29405064,10.5,10130660,34.5,10.5,36.8
640
  2012-11-11,118341,797,63709,6634,8393,3251,0,710,10376,4180,15807,705,0,1019,2656,0,104,0,34125551,16.0,473955,8.4,16.0,0.0
641
- 2012-11-12,161722,1342,84069,9880,13968,5655,0,1479,14344,5865,18750,1144,0,1805,3249,0,172,0,48698894,33.8,16169937,56.1,33.8,30.0
642
- 2012-11-13,163377,1223,85894,8631,14275,5843,0,1998,14099,6033,19101,1128,0,1695,3180,0,277,0,50131964,29.3,16854553,27.5,29.3,32.3
643
- 2012-11-14,164338,1205,84684,8123,14070,5952,0,2179,13509,5947,18593,1149,0,1777,6986,0,164,0,50326968,28.3,16859073,27.5,28.3,19.6
 
 
 
644
  2012-11-26,177871,1361,87260,19238,14706,6062,0,1816,15169,5884,19932,1115,0,1874,3299,0,155,0,57419910,59.2,17316251,12.3,59.2,40.9
645
  2012-11-27,183069,1320,90083,18852,15060,6349,0,1745,15458,6788,20523,1185,0,1843,3670,0,193,0,59484956,76.3,17998373,26.3,76.3,48.2
646
  2012-11-28,184736,1263,90293,18585,14951,6467,0,1923,16506,6761,21404,1197,0,1823,3425,0,138,0,59778205,76.4,17409381,30.6,76.4,43.1
 
629
  2012-10-31,150118,1213,77143,9705,12962,5490,0,1434,13409,5328,17633,1087,0,1646,2942,0,126,0,46053749,34.8,596949,15.7,34.8,5.9
630
  2012-11-01,145294,1137,75863,7435,11684,5085,0,1152,12357,5714,19029,866,0,1574,3264,0,134,0,44261406,27.8,564800,14.2,27.8,5.9
631
  2012-11-02,133633,958,68668,7064,11984,5031,0,1198,12075,5086,16256,961,0,1444,2785,0,123,0,40594958,28.1,571109,13.4,28.1,5.9
632
+ 2012-11-03,96330,717,52867,5145,6485,2765,0,422,8206,3771,12570,569,0,813,1913,0,87,0,28126794,17.9,396538,5.9,17.9,6.2
633
+ 2012-11-04,113737,830,63971,5133,7465,3111,0,742,10024,4215,13997,597,0,1018,2541,0,93,0,34019135,24.3,464926,4.9,24.3,6.2
634
+ 2012-11-05,157801,1327,82949,8233,13599,5556,0,1614,13888,5956,18464,893,0,1745,3436,0,141,0,48531086,35.8,627324,6.6,35.8,6.2
635
+ 2012-11-06,157177,1231,81734,7828,13088,5793,0,1801,14462,6275,18509,1029,0,1842,3469,0,116,0,48338231,36.4,637221,7.7,36.4,6.2
636
+ 2012-11-07,167371,1340,82774,10898,14069,5909,0,1996,13743,6213,19365,1152,0,1832,7940,0,140,0,49655063,35.4,619598,6.9,35.4,6.2
637
+ 2012-11-08,160102,1283,83347,9019,13557,5871,0,2012,14010,6475,18168,1122,0,1820,3289,0,129,0,48557125,29.5,634857,24.4,29.5,6.2
638
+ 2012-11-09,140775,1100,72482,9655,12326,4937,0,1396,11999,5168,16691,846,0,1461,2572,0,142,0,42006830,21.2,547500,19.3,21.3,6.2
639
+ 2012-11-10,102948,932,57961,5075,6795,2859,0,516,8736,3741,12467,580,0,852,2326,0,108,0,30337668,16.3,415389,23.9,16.3,0.0
640
  2012-11-11,118341,797,63709,6634,8393,3251,0,710,10376,4180,15807,705,0,1019,2656,0,104,0,34125551,16.0,473955,8.4,16.0,0.0
641
+ 2012-11-12,161722,1342,84069,9880,13968,5655,0,1479,14344,5865,18750,1144,0,1805,3249,0,172,0,48698894,34.4,637134,9.9,34.4,0.0
642
+ 2012-11-13,163377,1223,85894,8631,14275,5843,0,1998,14099,6033,19101,1128,0,1695,3180,0,277,0,50131964,36.0,666259,8.3,36.0,0.0
643
+ 2012-11-14,164338,1205,84684,8123,14070,5952,0,2179,13509,5947,18593,1149,0,1777,6986,0,164,0,50326968,33.9,625812,28.3,33.9,0.0
644
+ 2012-11-15,159104,1275,82498,9642,13998,6064,0,1980,13336,6111,18384,1078,0,1685,2931,0,122,0,48568837,33.5,688099,24.6,33.5,0.0
645
+ 2012-11-16,141135,1030,73413,7503,12578,5467,0,1406,11990,5094,17415,940,0,1497,2661,0,141,0,45520452,28.1,561417,27.4,28.1,0.0
646
+ 2012-11-17,103106,910,58015,4561,6728,2855,0,377,9095,3955,13089,579,0,831,2028,0,83,0,33420545,20.5,426979,8.6,20.5,0.0
647
  2012-11-26,177871,1361,87260,19238,14706,6062,0,1816,15169,5884,19932,1115,0,1874,3299,0,155,0,57419910,59.2,17316251,12.3,59.2,40.9
648
  2012-11-27,183069,1320,90083,18852,15060,6349,0,1745,15458,6788,20523,1185,0,1843,3670,0,193,0,59484956,76.3,17998373,26.3,76.3,48.2
649
  2012-11-28,184736,1263,90293,18585,14951,6467,0,1923,16506,6761,21404,1197,0,1823,3425,0,138,0,59778205,76.4,17409381,30.6,76.4,43.1