tamnd commited on
Commit
6982dea
·
verified ·
1 Parent(s): 8b64be4

Add 2012-04-21 to 2012-04-27 — 7 days, 767.3K 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,201 days), totaling **198,755,726 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 58.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.8 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 ██████████████░░░░░░░░░░░░░░░ 37.2M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ███████████████████████████░░░ 68.5M
140
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
@@ -143,9 +143,9 @@ 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 | 322 | 37,240,168 | 115,652 | 10.0 GB | 2.4 GB | 2h00m | 3h14m | 2h13m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 210 | 68,487,814 | 326,132 | 22.3 GB | 6.3 GB | 2h18m | 12h44m | 3h09m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -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 ██████████████░░░░░░░░░░░░░░░░ 17.9M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ███████████████████████████░░░ 34.8M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 99,723,548 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,991,101 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,261,283 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,040,513 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,847,704 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,711,688 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,106,251 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 25,282,067 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,565,001 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 243,836 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,853,175 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,248,419 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 183,504 | 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,203 days), totaling **198,967,510 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 58.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.8 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 ██████████████░░░░░░░░░░░░░░░ 37.5M
138
  2013 ██████████████████████████████ 74.5M
139
  2014 ███████████████████████████░░░ 68.5M
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 | 324 | 37,451,952 | 115,592 | 10.0 GB | 2.3 GB | 1h59m | 3h12m | 2h11m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 210 | 68,487,814 | 326,132 | 22.3 GB | 6.3 GB | 2h18m | 12h44m | 3h10m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
155
 
156
  ```
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
+ 2012 ██████████████░░░░░░░░░░░░░░░░ 18.0M
159
  2013 ██████████████████████████████ 38.1M
160
  2014 ███████████████████████████░░░ 34.8M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 99,833,395 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,001,570 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,276,225 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,046,643 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,848,815 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,732,323 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,112,210 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 25,316,037 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,566,201 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 243,836 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,855,437 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,252,606 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 183,699 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/04/21.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fbd6090689d980225c84474b32073a67c5ca79901ded2183097e30b91914b35a
3
- size 165037
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49b73623295a4b98534200dc82e2d5bd953d395666b104ffb284681734733ba8
3
+ size 341159
data/stars/2012/04/22.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3b5062ec722a6224f186da3b0428dd76b70b62b9a0bedb71674b65a92fe6bac6
3
- size 143304
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cb561ed00e6668ce62f8960d196175af5142152f621bd090398d1d228bb5295
3
+ size 336097
data/stars/2012/04/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2df40d76be5764982672f4b8acc17da2d5ff73a30df5c84448466f14f6daeac6
3
- size 188665
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ce0650efd4c2543e3a9908b026b97e816a101bc84b33578ac31522a69fa3433
3
+ size 427697
data/stars/2012/04/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:41a50476af041eadab8bfebf3eda07ec293a3f29aa72ad8d5ce4d94d1e4bd75a
3
- size 208581
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83d371c41982ee555c718d37ad7340eab7d5be9d504c342d0f3fff848137ceaa
3
+ size 476679
data/stars/2012/04/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:34ab5a7f5b62750ff2884604c9ab5f2a8b13395ed7e32556d11eeee5727de69f
3
- size 192426
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1c9c00acf50c586f1ad7158cc2a2494189388700494f02c69615c1fad519d97
3
+ size 439273
data/stars/2012/04/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bcf89dffd3c8e25b9f9030f37fcf599d96fb0c61a7177a7c2f83ef5116f70f57
3
- size 186773
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e667ed6cbe41923a87c1f93f63b2cbdc321c212031b6d945444ec23a3f058b2c
3
+ size 428991
data/stars/2012/04/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1fa1d278e221441c4ceccab1dd7151dd77a3fb9597faddde021fb128098e5811
3
- size 166640
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a60964d1c85dc5fbaed30e9ca1f314452b1b26325161c4fbc9ee751fd7484f1
3
+ size 359297
stats.csv CHANGED
@@ -436,10 +436,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
436
  2012-04-21,83549,424,43348,3528,4903,1990,0,252,8414,2466,15419,433,0,742,1548,0,82,0,22279447,14.2,341159,0.0,14.2,0.0
437
  2012-04-22,93837,336,50097,4097,5587,2325,0,379,8960,2524,16363,450,0,761,1877,0,81,0,25270005,14.2,336097,0.0,14.2,0.0
438
  2012-04-23,123230,562,62661,6617,9692,3917,0,770,12344,3629,18233,778,0,1538,2369,0,120,0,34721768,22.3,427697,0.0,22.3,0.0
439
- 2012-04-24,129309,594,62205,7012,12524,4052,0,823,14188,3805,19201,816,0,1448,2519,0,122,0,35616421,63.2,11568684,7.9,63.2,38.7
440
  2012-04-25,118508,519,59536,5867,9330,3907,0,734,12657,3612,17588,680,0,1676,2288,0,114,0,33422638,25.2,439273,8.8,25.2,0.0
441
  2012-04-26,119782,446,60019,6324,10536,3917,0,638,12399,3499,17492,740,0,1420,2250,0,102,0,33516197,25.3,428991,7.9,25.3,0.0
442
- 2012-04-27,104380,476,52213,5591,8428,3409,0,538,10565,3208,15929,598,0,1246,2072,0,107,0,29692200,56.1,10196374,21.7,56.1,23.2
443
  2012-05-02,117661,483,58945,6085,9624,3831,0,896,12293,3837,16796,621,0,1548,2587,0,115,0,33279770,54.1,10908337,11.2,54.1,33.9
444
  2012-05-03,117912,523,59563,5750,9259,3876,0,766,12058,3712,17931,603,0,1494,2269,0,108,0,32987096,56.0,10946945,12.3,56.0,39.1
445
  2012-05-04,105618,396,53023,5148,8675,3469,0,554,10673,3370,16482,584,0,1239,1905,0,100,0,29830600,52.1,10177132,19.5,52.1,37.8
@@ -1198,7 +1198,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1198
  2014-08-06,415193,1598,203604,23891,42531,20016,0,7275,37411,14471,48108,7632,1094,3372,3816,0,374,0,241173058,486.1,41950556,50.8,486.1,61.9
1199
  2014-08-07,408059,1522,203904,20496,39399,20194,0,6804,37138,14050,46633,8834,1134,3307,4247,0,397,0,238373344,489.9,41741573,45.7,489.9,43.8
1200
  2014-08-08,362454,1363,177891,21198,38267,17746,0,5660,32019,11812,41820,7241,938,2380,3818,0,301,0,208516909,401.5,37105505,49.7,401.5,53.3
1201
- 2014-08-09,236140,902,128531,11634,17318,8630,0,1889,20983,8683,29336,3269,823,1433,2533,0,176,0,127385451,260.6,23190387,41.8,260.6,0.0
1202
  2014-08-10,274828,806,148514,12071,20175,10116,0,2245,29016,9884,32199,3953,764,1784,3082,0,219,0,151135738,278.4,27940353,40.5,278.4,0.0
1203
  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
1204
  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
 
436
  2012-04-21,83549,424,43348,3528,4903,1990,0,252,8414,2466,15419,433,0,742,1548,0,82,0,22279447,14.2,341159,0.0,14.2,0.0
437
  2012-04-22,93837,336,50097,4097,5587,2325,0,379,8960,2524,16363,450,0,761,1877,0,81,0,25270005,14.2,336097,0.0,14.2,0.0
438
  2012-04-23,123230,562,62661,6617,9692,3917,0,770,12344,3629,18233,778,0,1538,2369,0,120,0,34721768,22.3,427697,0.0,22.3,0.0
439
+ 2012-04-24,129309,594,62205,7012,12524,4052,0,823,14188,3805,19201,816,0,1448,2519,0,122,0,35616421,26.9,476679,19.8,26.9,0.0
440
  2012-04-25,118508,519,59536,5867,9330,3907,0,734,12657,3612,17588,680,0,1676,2288,0,114,0,33422638,25.2,439273,8.8,25.2,0.0
441
  2012-04-26,119782,446,60019,6324,10536,3917,0,638,12399,3499,17492,740,0,1420,2250,0,102,0,33516197,25.3,428991,7.9,25.3,0.0
442
+ 2012-04-27,99097,455,49302,5346,8091,3297,0,500,9896,3014,15303,570,0,1209,2013,0,101,0,28217932,19.3,359297,21.7,19.3,0.0
443
  2012-05-02,117661,483,58945,6085,9624,3831,0,896,12293,3837,16796,621,0,1548,2587,0,115,0,33279770,54.1,10908337,11.2,54.1,33.9
444
  2012-05-03,117912,523,59563,5750,9259,3876,0,766,12058,3712,17931,603,0,1494,2269,0,108,0,32987096,56.0,10946945,12.3,56.0,39.1
445
  2012-05-04,105618,396,53023,5148,8675,3469,0,554,10673,3370,16482,584,0,1239,1905,0,100,0,29830600,52.1,10177132,19.5,52.1,37.8
 
1198
  2014-08-06,415193,1598,203604,23891,42531,20016,0,7275,37411,14471,48108,7632,1094,3372,3816,0,374,0,241173058,486.1,41950556,50.8,486.1,61.9
1199
  2014-08-07,408059,1522,203904,20496,39399,20194,0,6804,37138,14050,46633,8834,1134,3307,4247,0,397,0,238373344,489.9,41741573,45.7,489.9,43.8
1200
  2014-08-08,362454,1363,177891,21198,38267,17746,0,5660,32019,11812,41820,7241,938,2380,3818,0,301,0,208516909,401.5,37105505,49.7,401.5,53.3
1201
+ 2014-08-09,236140,902,128531,11634,17318,8630,0,1889,20983,8683,29336,3269,823,1433,2533,0,176,0,127385451,260.6,23190387,41.8,260.6,51.8
1202
  2014-08-10,274828,806,148514,12071,20175,10116,0,2245,29016,9884,32199,3953,764,1784,3082,0,219,0,151135738,278.4,27940353,40.5,278.4,0.0
1203
  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
1204
  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