tamnd commited on
Commit
1f0fac9
·
verified ·
1 Parent(s): d5450f1

Add 2011-11-26 to 2011-12-02 — 7 days, 570.3K events, 7 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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,159 days), totaling **191,994,714 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 55.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
@@ -142,10 +142,10 @@ duckdb.sql("""
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
- | 2011 | 323 | 18,009,050 | 55,755 | 3.5 GB | 370.2 MB | 53m51s | 50m30s | 48m32s |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 199 | 64,733,662 | 325,294 | 20.3 GB | 5.9 GB | 2h10m | 11h34m | 2h59m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -175,7 +175,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
- 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 979.1K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
@@ -198,7 +198,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
- 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.1K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 █████████████████████████████░ 2.8M
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 96,425,922 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,650,617 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,682,517 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,778,652 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,781,901 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,061,933 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,884,602 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,228,123 | 12.6% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,477,231 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 233,270 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,791,639 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,150,797 | 1.6% | Wiki page edits |
652
- | `members` | MemberEvent | 129,837 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 177,235 | 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,159 days), totaling **192,009,982 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 55.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
+ | 2011 | 323 | 18,024,318 | 55,802 | 3.5 GB | 297.3 MB | 52m48s | 51m17s | 45m28s |
146
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 199 | 64,733,662 | 325,294 | 20.3 GB | 5.9 GB | 2h10m | 11h34m | 3h00m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
175
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
176
 
177
  ```
178
+ 2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 981.9K
179
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
180
  2013 ██████████████████████████████ 4.3M
181
  2014 ███████████████████████░░░░░░░ 3.4M
 
198
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
199
 
200
  ```
201
+ 2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.5K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 █████████████████████████████░ 2.8M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 96,430,440 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,653,349 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,687,516 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,779,006 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,781,901 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,062,831 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,884,871 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,229,039 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,477,330 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 233,270 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,791,792 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,151,030 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 129,923 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 177,246 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/11/26.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2dca78f600531ff6b1b97657ce798237a10bc309793da0f0498769161aa7f555
3
- size 162570
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:825b3eeebbce0194c8bd397ec32e745a1d398f6318ab313ffc6bd6d51ae4fa9f
3
+ size 233162
data/stars/2011/11/27.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c9fc62d7f2c12b69860b61c272c0988a9156b4dd5d36a3db9ed76f12cf0069aa
3
- size 161650
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:936546a55867cee613f7802f3bc150d6d295765105748c25e98a909ad0ce7a50
3
+ size 235060
data/stars/2011/11/28.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cb2a5e0eb3f50f40e0e3de51a8846b42a4ddaba1419723c9e7c34b9ee2b18afd
3
- size 215111
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34c549a4b3683d174db4f2685153594d341fda948cf54530240879827dc12394
3
+ size 318274
data/stars/2011/11/29.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:12e3c1014f1d070850a3457fd788ee60e4154625aae765f740b2c3b12994413b
3
- size 208078
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76c799a8a789720210482ea60a98dc4565c76c641e186ae7fb7d0400d9396449
3
+ size 342211
data/stars/2011/11/30.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:49f44302b5fc0e7e03b1f2a8ce69e7002cd1b4ad2a8deb1b48f5550c07108b73
3
- size 225684
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5112754cd253b0175662d4993e94df72da2684bc33c791cbfd90a30aee61515b
3
+ size 331876
data/stars/2011/12/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4e287ac06549205d48e01260f7979db758b4db7b9c767ea6abb9546219c48adc
3
- size 258036
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0872b6e5cd049c3d75d530f65759ea2b648c7f2be6b996adc9f2b28829aced53
3
+ size 383956
data/stars/2011/12/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fa3d7cf7e15256a8379a22267df2b93c48959c407f0edf29fd13214252249295
3
- size 254528
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4caa493f74e8f70cefff083a815247c37f7937d181e76f998298beb2e90d89bd
3
+ size 360718
stats.csv CHANGED
@@ -279,22 +279,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
279
  2011-11-16,72750,0,33053,3573,5363,2137,0,0,6547,2054,16609,765,0,735,1374,469,71,0,18698031,15.7,290883,17.2,15.7,4.4
280
  2011-11-17,82971,0,36551,3677,5382,2291,0,0,7301,2310,22061,770,0,902,1207,440,79,0,20566537,15.9,348648,6.4,15.9,4.4
281
  2011-11-18,66232,0,30596,2934,4300,1849,0,0,5791,1874,15981,748,0,693,1022,390,54,0,16912775,12.4,257452,17.8,12.4,4.4
282
- 2011-11-19,48282,0,21831,1915,2466,1011,0,0,3687,1326,13995,418,0,467,837,291,38,0,10887031,8.4,184156,5.3,8.4,0.0
283
- 2011-11-20,59251,0,27771,2447,3062,1219,0,0,5533,1586,15211,605,0,468,996,294,59,0,13566479,10.6,238651,17.4,10.6,0.0
284
- 2011-11-21,62863,0,30340,3397,4915,1827,0,0,6048,1876,11305,620,0,713,1363,409,50,0,16816825,10.7,267439,6.0,10.7,0.0
285
- 2011-11-22,74414,0,34506,3510,5108,1996,0,0,7121,2225,16771,742,0,758,1155,466,56,0,19321301,13.0,310999,7.5,13.0,0.0
286
- 2011-11-23,86174,0,36941,4181,5884,2312,0,0,8101,2482,22378,874,0,1087,1432,435,67,0,21051693,17.0,349003,17.5,17.0,0.0
287
- 2011-11-24,79811,0,33601,5089,8096,1967,0,0,6785,2154,18637,755,0,727,1549,397,54,0,19410406,14.9,296261,5.9,14.9,0.0
288
- 2011-11-25,58867,0,27382,2702,3630,1516,0,0,5955,1843,12942,585,0,703,1236,331,42,0,14969432,10.4,261983,4.9,10.4,0.0
289
  2011-11-26,56769,0,24570,2816,3383,1223,0,0,5487,1466,15289,516,0,526,1223,239,31,0,12996919,10.2,233162,5.4,10.2,0.0
290
- 2011-11-27,61975,0,27671,3694,3927,1292,0,0,5463,1459,15513,665,0,631,1357,256,47,0,14591183,9.4,7700231,27.2,9.4,27.5
291
- 2011-11-28,80484,0,36600,5794,9701,2264,0,0,7333,1942,13227,654,0,961,1562,377,69,0,22026925,13.2,10712646,32.1,13.2,27.0
292
- 2011-11-29,101701,0,34260,12898,23319,2088,0,0,6979,2066,16529,609,0,1019,1414,463,57,0,26204872,17.9,11151899,20.2,17.9,27.9
293
- 2011-11-30,78831,0,38026,5076,6064,2400,0,0,7511,2361,13601,730,0,907,1599,483,73,0,21758401,11.2,10750994,18.2,11.2,29.5
294
- 2011-12-01,90051,0,42363,4201,6255,2941,0,0,8927,2438,18559,822,0,1020,1896,552,77,0,24307839,10.9,12132867,20.7,10.9,25.1
295
- 2011-12-02,85270,0,37777,3527,5376,2372,0,0,7654,2325,22306,1042,0,907,1504,418,62,0,21154484,9.1,10550313,19.7,9.1,29.4
296
- 2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,8.8,7597772,18.6,8.8,28.6
297
- 2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,9.1,8259169,19.1,9.1,25.7
298
  2011-12-05,78067,0,37239,4033,7225,2179,0,0,8513,2158,12852,889,0,918,1588,409,64,0,20882321,11.2,10429388,20.4,11.2,26.0
299
  2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,12.4,11165296,22.9,12.4,27.7
300
  2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.0,10426536,31.6,13.0,35.6
 
279
  2011-11-16,72750,0,33053,3573,5363,2137,0,0,6547,2054,16609,765,0,735,1374,469,71,0,18698031,15.7,290883,17.2,15.7,4.4
280
  2011-11-17,82971,0,36551,3677,5382,2291,0,0,7301,2310,22061,770,0,902,1207,440,79,0,20566537,15.9,348648,6.4,15.9,4.4
281
  2011-11-18,66232,0,30596,2934,4300,1849,0,0,5791,1874,15981,748,0,693,1022,390,54,0,16912775,12.4,257452,17.8,12.4,4.4
282
+ 2011-11-19,48282,0,21831,1915,2466,1011,0,0,3687,1326,13995,418,0,467,837,291,38,0,10887031,8.4,184156,5.3,8.4,5.3
283
+ 2011-11-20,59251,0,27771,2447,3062,1219,0,0,5533,1586,15211,605,0,468,996,294,59,0,13566479,10.6,238651,17.4,10.6,5.3
284
+ 2011-11-21,62863,0,30340,3397,4915,1827,0,0,6048,1876,11305,620,0,713,1363,409,50,0,16816825,10.7,267439,6.0,10.7,5.3
285
+ 2011-11-22,74414,0,34506,3510,5108,1996,0,0,7121,2225,16771,742,0,758,1155,466,56,0,19321301,13.0,310999,7.5,13.0,5.3
286
+ 2011-11-23,86174,0,36941,4181,5884,2312,0,0,8101,2482,22378,874,0,1087,1432,435,67,0,21051693,17.0,349003,17.5,17.0,5.3
287
+ 2011-11-24,79811,0,33601,5089,8096,1967,0,0,6785,2154,18637,755,0,727,1549,397,54,0,19410406,14.9,296261,5.9,14.9,5.3
288
+ 2011-11-25,58867,0,27382,2702,3630,1516,0,0,5955,1843,12942,585,0,703,1236,331,42,0,14969432,10.4,261983,4.9,10.4,5.3
289
  2011-11-26,56769,0,24570,2816,3383,1223,0,0,5487,1466,15289,516,0,526,1223,239,31,0,12996919,10.2,233162,5.4,10.2,0.0
290
+ 2011-11-27,61975,0,27671,3694,3927,1292,0,0,5463,1459,15513,665,0,631,1357,256,47,0,14591183,12.6,235060,17.5,12.6,0.0
291
+ 2011-11-28,80484,0,36600,5794,9701,2264,0,0,7333,1942,13227,654,0,961,1562,377,69,0,22026925,17.5,318274,23.6,17.5,0.0
292
+ 2011-11-29,116969,0,38778,15630,28318,2442,0,0,7877,2335,17445,708,0,1172,1647,549,68,0,30405769,26.7,342211,6.7,26.7,0.0
293
+ 2011-11-30,78831,0,38026,5076,6064,2400,0,0,7511,2361,13601,730,0,907,1599,483,73,0,21758401,18.3,331876,9.6,18.3,0.0
294
+ 2011-12-01,90051,0,42363,4201,6255,2941,0,0,8927,2438,18559,822,0,1020,1896,552,77,0,24307839,19.5,383956,30.6,19.5,0.0
295
+ 2011-12-02,85270,0,37777,3527,5376,2372,0,0,7654,2325,22306,1042,0,907,1504,418,62,0,21154484,17.2,360718,6.4,17.2,0.0
296
+ 2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,12.5,240346,7.3,12.5,0.0
297
+ 2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,13.0,238853,11.1,13.0,0.0
298
  2011-12-05,78067,0,37239,4033,7225,2179,0,0,8513,2158,12852,889,0,918,1588,409,64,0,20882321,11.2,10429388,20.4,11.2,26.0
299
  2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,12.4,11165296,22.9,12.4,27.7
300
  2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.0,10426536,31.6,13.0,35.6