tamnd commited on
Commit
1faea4c
·
verified ·
1 Parent(s): efe5ff1

Add 2012-05-12 to 2012-05-18 — 7 days, 733.1K 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,208 days), totaling **199,710,059 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 59.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.7 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 ███████████████░░░░░░░░░░░░░░░ 37.8M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ███████████████████████████░░░ 68.9M
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 | 328 | 37,802,626 | 115,251 | 10.1 GB | 2.3 GB | 1h59m | 3h08m | 2h06m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 211 | 68,879,689 | 326,444 | 22.5 GB | 6.3 GB | 2h19m | 12h51m | 3h12m |
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 ██████████████░░░░░░░░░░░░░░░░ 18.2M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ███████████████████████████░░░ 35.0M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -178,7 +178,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ██████████████░��░░░░░░░░░░░░░░ 2.1M
180
  2013 ██████████████████████████████ 4.3M
181
- 2014 █████████████████████████░░░░░ 3.6M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -201,7 +201,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ████████████████░░░░░░░░░░░░░░ 1.6M
203
  2013 ████████████████████████████░░ 2.9M
204
- 2014 ██████████████████████████████ 3.0M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 100,210,167 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,037,010 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,341,991 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,076,622 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,857,259 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,803,559 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,135,999 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 25,413,528 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,576,296 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 244,907 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,862,787 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,263,966 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 184,419 | 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,209 days), totaling **200,080,775 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 59.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.7 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 ███████████████░░░░░░░░░░░░░░░ 37.8M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ███████████████████████████░░░ 69.3M
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 | 328 | 37,802,626 | 115,251 | 10.1 GB | 2.2 GB | 1h58m | 3h04m | 2h03m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 212 | 69,250,405 | 326,652 | 22.7 GB | 6.3 GB | 2h20m | 12h57m | 3h14m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 ██████████████░░░░░░░░░░░░░░░░ 18.2M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ███████████████████████████░░░ 35.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ██████████████░��░░░░░░░░░░░░░░ 2.1M
180
  2013 ██████████████████████████████ 4.3M
181
+ 2014 █████████████████████████░░░░░ 3.7M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
201
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
202
  2012 ████████████████░░░░░░░░░░░░░░ 1.6M
203
  2013 ████████████████████████████░░ 2.9M
204
+ 2014 ██████████████████████████████ 3.1M
205
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
206
  ```
207
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 100,394,375 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,054,791 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,377,733 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,094,203 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,863,219 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,838,888 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,148,712 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 25,456,099 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,585,271 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 245,995 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,865,555 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,268,108 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 184,802 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/05/12.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5e889ce3785fee74f571f9c60d8fce5a74b2abe559dbdd7ff369f3b2402bc1be
3
- size 186846
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2211c8d4d265480648d6641cb72e553e9b910485594c1e5de0e75c2df9129e5e
3
+ size 384580
data/stars/2012/05/13.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb82f3e4cdc83295c627b140729380eefa67bd9b6e98bb798d48fd5e71ec37da
3
- size 171475
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a219b1bcd17aca6aa3149eb09bca3d74e63d3425db84e407355784764ece58ac
3
+ size 385114
data/stars/2012/05/14.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9a7c783f4b1096b15992b23b65bc799b0e11c84562a4207a10e3a153354e1dec
3
- size 223060
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98d7b101c199323e40db16cb9cd951adb0d175e8f421ca903aa65f0e370fee4b
3
+ size 500202
data/stars/2012/05/15.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6629ff75e18020d22c3b7c9e20a9132f85f44787aec6090038ca884d7f723fa0
3
- size 199939
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bcad3c5e5de84b3ec02de2481a77ada6aa0dc60553d07dc2f916f83d9f28961
3
+ size 454897
data/stars/2012/05/16.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2a3214186d60485df18262815dd36635f35533867c538c66f8214d7e565d6ec9
3
- size 192884
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00796d8a69d062f1094dfdbbd2d137e39ba504a2844e5e8b9c09cfea3221da4f
3
+ size 442091
data/stars/2012/05/17.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7aa62d8ba0398c3f9f832fa07beb97ba472c12ca13b3421cebc5643b35457f54
3
- size 192864
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6380d3fcf7d0fce64f4e5d883f12cbf206c2bc65ba16f5bb0caa7df05541caa
3
+ size 454197
data/stars/2012/05/18.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c7e6c7c599c9db224d2c161fc1bfac6b8d688cd9c977c5c75cb3cf4480ebf714
3
- size 165421
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10de8d2e01839535c1534c8223f4c1504f5307daf71b7645bdc33382e5a0d3fe
3
+ size 397071
stats.csv CHANGED
@@ -457,10 +457,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
457
  2012-05-12,80535,302,38632,3948,5828,2089,0,366,9329,3277,14122,378,0,844,1352,0,68,0,21193724,16.1,384580,19.2,16.1,0.0
458
  2012-05-13,85026,288,42227,3582,5678,2217,0,450,9985,3092,14804,417,0,796,1412,0,78,0,22698241,17.7,385114,7.7,17.7,0.0
459
  2012-05-14,121589,508,59052,6130,10446,3937,0,722,13612,4405,18326,655,0,1447,2215,0,134,0,34402112,28.6,500202,7.7,28.6,0.0
460
- 2012-05-15,118129,536,58633,6259,9745,4083,0,800,12341,4073,17429,720,0,1395,1971,0,144,0,33392408,68.6,11042207,34.5,68.6,40.0
461
- 2012-05-16,114746,495,56519,5700,9342,3758,0,776,12402,4021,17378,705,0,1580,1960,0,110,0,32255086,67.3,10547637,22.5,67.3,25.7
462
- 2012-05-17,110139,453,54343,5156,8252,3492,0,681,12448,4151,16809,640,0,1356,2255,0,103,0,30675299,64.8,10295525,23.6,64.8,30.8
463
- 2012-05-18,102893,398,49757,5073,7867,3221,0,850,10177,3701,18044,595,0,1125,1986,0,99,0,28317097,41.3,9397780,23.5,41.3,28.5
464
  2012-05-19,71888,278,35785,3106,4596,1831,0,304,7599,2627,13581,346,0,740,1033,0,62,0,18761137,25.8,6346519,19.2,25.8,34.6
465
  2012-05-20,81794,251,40998,3583,5509,2323,0,703,8416,2805,14601,389,0,673,1501,0,42,0,21829607,34.0,7409845,19.6,34.0,26.9
466
  2012-05-21,120117,533,58896,5597,9509,3901,0,880,13420,4241,18513,750,0,1586,2185,0,106,0,34016500,43.6,11344744,21.5,43.6,28.0
@@ -1204,6 +1204,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1204
  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
1205
  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
1206
  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,168.3
1207
- 2014-08-11,391875,1701,195550,19066,38696,18948,0,6548,35303,13101,45269,8167,1071,3372,4737,0,346,0,229331698,422.3,39625888,57.7,422.3,0.0
 
1208
  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
1209
  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
 
457
  2012-05-12,80535,302,38632,3948,5828,2089,0,366,9329,3277,14122,378,0,844,1352,0,68,0,21193724,16.1,384580,19.2,16.1,0.0
458
  2012-05-13,85026,288,42227,3582,5678,2217,0,450,9985,3092,14804,417,0,796,1412,0,78,0,22698241,17.7,385114,7.7,17.7,0.0
459
  2012-05-14,121589,508,59052,6130,10446,3937,0,722,13612,4405,18326,655,0,1447,2215,0,134,0,34402112,28.6,500202,7.7,28.6,0.0
460
+ 2012-05-15,118129,536,58633,6259,9745,4083,0,800,12341,4073,17429,720,0,1395,1971,0,144,0,33392408,29.2,454897,25.6,29.2,0.0
461
+ 2012-05-16,114746,495,56519,5700,9342,3758,0,776,12402,4021,17378,705,0,1580,1960,0,110,0,32255086,25.2,442091,21.8,25.2,0.0
462
+ 2012-05-17,110139,453,54343,5156,8252,3492,0,681,12448,4151,16809,640,0,1356,2255,0,103,0,30675299,25.0,454197,23.3,25.0,0.0
463
+ 2012-05-18,102893,398,49757,5073,7867,3221,0,850,10177,3701,18044,595,0,1125,1986,0,99,0,28317097,18.5,397071,6.7,18.5,0.0
464
  2012-05-19,71888,278,35785,3106,4596,1831,0,304,7599,2627,13581,346,0,740,1033,0,62,0,18761137,25.8,6346519,19.2,25.8,34.6
465
  2012-05-20,81794,251,40998,3583,5509,2323,0,703,8416,2805,14601,389,0,673,1501,0,42,0,21829607,34.0,7409845,19.6,34.0,26.9
466
  2012-05-21,120117,533,58896,5597,9509,3901,0,880,13420,4241,18513,750,0,1586,2185,0,106,0,34016500,43.6,11344744,21.5,43.6,28.0
 
1204
  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
1205
  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
1206
  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,168.3
1207
+ 2014-08-11,391875,1701,195550,19066,38696,18948,0,6548,35303,13101,45269,8167,1071,3372,4737,0,346,0,229331698,422.3,39625888,57.7,422.3,66.6
1208
+ 2014-08-12,370716,1475,184208,17781,35742,17581,0,5960,35329,12713,42571,8975,1088,2768,4142,0,383,0,215467510,394.0,38084035,49.0,394.0,0.0
1209
  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
1210
  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