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

Add 2011-12-03 to 2011-12-09 — 7 days, 539.0K 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,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
 
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
 
@@ -142,7 +142,7 @@ duckdb.sql("""
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 |
@@ -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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 981.9K
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.5K
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,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
 
 
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,018,247 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.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
 
 
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 | 241.9 MB | 52m01s | 51m39s | 42m06s |
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 |
 
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 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
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.6K
202
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
203
  2013 ██████████████████████████████ 2.9M
204
  2014 █████████████████████████████░ 2.8M
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 96,432,385 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,653,559 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 16,687,793 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,779,135 | 4.1% | PR lifecycle events |
644
  | `pr_review_comments` | PullRequestReviewCommentEvent | 1,781,901 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,063,354 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 6,885,000 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,233,882 | 12.6% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,477,360 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 233,270 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,791,842 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,151,123 | 1.6% | Wiki page edits |
652
+ | `members` | MemberEvent | 129,956 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 177,249 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2011/12/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:45421229c92b8e4f9f2b258ecd7a0862712b0f4310e618fb5c2355c8feac9b23
3
- size 164647
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ada168b160fc1b43cd6c368882d31ce939deceb144fb41aef214b8020aed5a12
3
+ size 240346
data/stars/2011/12/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3b682645cc91400f82e30e5edb32a2ae15a37b530971bbfd281f76a8a9bb07da
3
- size 161909
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0050f53e9fe246be2dc3463d2807e1cf2682da97e1b24d86d66d7c574af9fb9
3
+ size 238853
data/stars/2011/12/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2814b3a9e716dddb1232b67537b2b52ecda14e8e8b216d1585346e242ba88a07
3
- size 244286
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b2524083c7d7b57cddaf4a72ac5989a99504b7c7bf9f176071b1f2b8b8650834
3
+ size 386131
data/stars/2011/12/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f2001c86c083da10bcad0ac1b05c795825772741108c959991098934a45b0898
3
- size 244806
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab78a61be6ab40815c6942f2975dcd55348e32f52b1050a9512649f702c7eb0e
3
+ size 361995
data/stars/2011/12/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c180e5f5fbd68f30b235015e11e6e3009443adcbabc78d8736f5a1e57392610a
3
- size 253901
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d491d9a79813f9778c173887e52cfa033c6bb84a19d8a0f2c507fef6b7948aee
3
+ size 360764
data/stars/2011/12/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:27d6d837052fd916e37f6a3f465cc8daf3c5b8f891f2e07a758e90328c96719e
3
- size 226659
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65966c240aa0eefc7c125ceb69d8ae040f9c65ddf9a724e3d635afc207ac329d
3
+ size 331605
data/stars/2011/12/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f99e847d5f5809ffe2631703fabd5a6942b6744f50831c2886614361800c0eb7
3
- size 228196
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5c38ca84b102f8d9cc6ac7c133ee006f8060a7887b0a894b5bbd25ae8920ada
3
+ size 337548
stats.csv CHANGED
@@ -286,22 +286,22 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
301
- 2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,11.4,10071428,20.7,11.4,85.8
302
- 2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,11.2,10601648,21.7,11.2,28.0
303
  2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,35.3
304
- 2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,9.9,7422219,16.8,9.9,35.3
305
  2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,11.8,11037967,24.2,11.8,28.6
306
  2011-12-13,82669,0,35649,3531,5617,2439,0,0,7551,2153,19479,3431,0,800,1573,389,57,0,20503814,13.2,10079974,19.8,13.2,26.8
307
  2011-12-14,82177,0,36694,4543,7093,2455,0,0,7882,2087,17630,733,0,968,1660,352,80,0,21610285,12.6,10771978,24.3,12.6,31.4
 
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,5.2
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,5.2
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,5.2
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,5.2
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,5.2
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,5.2
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,5.2
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,86332,0,39184,4243,7502,2308,0,0,9036,2287,17695,919,0,968,1681,442,67,0,22063483,17.1,386131,17.2,17.1,0.0
299
+ 2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,15.4,361995,18.7,15.4,0.0
300
+ 2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.8,360764,7.5,13.8,0.0
301
+ 2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,16.9,331605,24.2,16.9,0.0
302
+ 2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,17.0,337548,11.3,17.0,0.0
303
  2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,35.3
304
+ 2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,10.4,240615,7.7,10.4,0.0
305
  2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,11.8,11037967,24.2,11.8,28.6
306
  2011-12-13,82669,0,35649,3531,5617,2439,0,0,7551,2153,19479,3431,0,800,1573,389,57,0,20503814,13.2,10079974,19.8,13.2,26.8
307
  2011-12-14,82177,0,36694,4543,7093,2455,0,0,7882,2087,17630,733,0,968,1660,352,80,0,21610285,12.6,10771978,24.3,12.6,31.4