tamnd commited on
Commit
5758fea
·
verified ·
1 Parent(s): 5831ed9

Add 2012-05-19 to 2012-05-25 — 7 days, 771.7K 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,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,16 +136,16 @@ duckdb.sql("""
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,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.2M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
@@ -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,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
 
 
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,210 days), totaling **200,446,857 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.6 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.6M
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.1 GB | 1h56m | 3h00m | 2h00m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 213 | 69,616,487 | 326,837 | 22.9 GB | 6.4 GB | 2h21m | 13h04m | 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.3M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 100,577,273 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,072,786 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,412,997 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,112,032 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,869,134 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,872,215 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,161,152 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 25,499,812 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,592,212 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 247,011 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,868,491 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,272,248 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 185,112 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/05/19.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7d1a11124ed898ce5039f155bcf89796408f2b4e97b44981e7014e66aa345f2c
3
- size 123340
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:769fec7a2815ee0405d9a3fc63d8161f31ec2ea4df3cc4d01f7a2b7b004d1d65
3
+ size 291379
data/stars/2012/05/20.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d0f3ed17306828708763d3aa562c79f3519b286601ea2bb1399cc73e93ea1f68
3
- size 139633
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa586bcbf1a43d541752fede4c00662613333ea7d2dad5585b982ec929f1e98b
3
+ size 325901
data/stars/2012/05/21.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:675fd52c0b4ee650e71d5033ef607cce21423a9bd970239c128b9c0fa6fadb1c
3
- size 210432
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aed04196fb863e5bca7827ae35cf1234a2c2a2c8bf2b6a0e65705ab8eaa7ab9f
3
+ size 490199
data/stars/2012/05/22.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ad742e650e894cb9c885ae00a462848a3ce670021e390f8a2eea17ff9cd51a5
3
- size 214786
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:730f86fc34d6898cfe764c159666d8f94ad24737cccb1e777de286a57c919250
3
+ size 495075
data/stars/2012/05/23.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:69f7ffe4c3272d4737eddeb6b654d2febebdb61ac8dc278510a9dff4ffcd2572
3
- size 256930
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df015303c6ae5f7af9fb7b4731ec7a8173109b11d0d5a77d7e47bf01f6306049
3
+ size 530582
data/stars/2012/05/24.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3a985a2987958154ef3149ab755c156470d7b21b309000daa685ae474ae77475
3
- size 208558
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e7c9a43d432de9c2124544fc9cc40e7af46c17f9e7428a336ce49a2d4e294ff
3
+ size 487587
data/stars/2012/05/25.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9b24d8b1f92cfd0f87d2201f8d75bc6b5cba1950ab87c71dbc7ea5c40562a06a
3
- size 181134
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22f7f0685406c4cb396f46f471121e23581dafdbc119453e067586daa63c9da7
3
+ size 423113
stats.csv CHANGED
@@ -465,10 +465,10 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
465
  2012-05-20,81794,251,40998,3583,5509,2323,0,703,8416,2805,14601,389,0,673,1501,0,42,0,21829607,19.0,325901,17.7,19.0,0.0
466
  2012-05-21,120117,533,58896,5597,9509,3901,0,880,13420,4241,18513,750,0,1586,2185,0,106,0,34016500,25.1,490199,6.3,25.1,0.0
467
  2012-05-22,128485,514,61638,5960,10362,4499,0,1141,14014,4490,20888,807,0,1733,2320,0,119,0,36099937,27.1,495075,5.3,27.1,0.0
468
- 2012-05-23,129523,515,61443,7209,12627,4397,0,1082,13063,4569,19987,716,0,1461,2326,0,128,0,35572597,65.3,11820992,22.2,65.3,32.9
469
  2012-05-24,130083,494,58935,7708,15693,4115,0,1020,13431,4668,19334,895,0,1537,2143,0,110,0,34463535,19.5,487587,5.6,19.5,0.0
470
- 2012-05-25,109856,497,53283,5600,8729,3327,0,833,11651,3976,17999,607,0,1282,1996,0,76,0,29503072,55.4,9522251,30.0,55.4,28.3
471
- 2012-05-26,72134,297,35367,3310,4394,1690,0,333,7461,2540,14270,366,0,639,1410,0,57,0,18672099,21.2,6227750,31.7,21.2,35.4
472
  2012-05-27,79714,261,39470,3417,4967,1964,0,455,8176,2575,15660,390,0,854,1459,0,66,0,20746455,21.5,7127795,27.5,21.5,27.7
473
  2012-05-28,103768,423,51373,4839,7932,2907,0,606,10515,4060,17357,602,0,1278,1795,0,81,0,28182550,27.8,9856428,33.5,27.8,29.7
474
  2012-05-29,123828,519,61003,5899,10117,4273,0,929,12588,4874,18938,829,0,1589,2177,0,93,0,35155031,35.4,11511518,25.9,35.4,32.0
@@ -1205,6 +1205,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
465
  2012-05-20,81794,251,40998,3583,5509,2323,0,703,8416,2805,14601,389,0,673,1501,0,42,0,21829607,19.0,325901,17.7,19.0,0.0
466
  2012-05-21,120117,533,58896,5597,9509,3901,0,880,13420,4241,18513,750,0,1586,2185,0,106,0,34016500,25.1,490199,6.3,25.1,0.0
467
  2012-05-22,128485,514,61638,5960,10362,4499,0,1141,14014,4490,20888,807,0,1733,2320,0,119,0,36099937,27.1,495075,5.3,27.1,0.0
468
+ 2012-05-23,129523,515,61443,7209,12627,4397,0,1082,13063,4569,19987,716,0,1461,2326,0,128,0,35572597,24.2,530582,23.4,24.2,0.0
469
  2012-05-24,130083,494,58935,7708,15693,4115,0,1020,13431,4668,19334,895,0,1537,2143,0,110,0,34463535,19.5,487587,5.6,19.5,0.0
470
+ 2012-05-25,109856,497,53283,5600,8729,3327,0,833,11651,3976,17999,607,0,1282,1996,0,76,0,29503072,17.2,423113,19.2,17.2,0.0
471
+ 2012-05-26,72134,297,35367,3310,4394,1690,0,333,7461,2540,14270,366,0,639,1410,0,57,0,18672099,11.2,287120,20.5,11.2,0.0
472
  2012-05-27,79714,261,39470,3417,4967,1964,0,455,8176,2575,15660,390,0,854,1459,0,66,0,20746455,21.5,7127795,27.5,21.5,27.7
473
  2012-05-28,103768,423,51373,4839,7932,2907,0,606,10515,4060,17357,602,0,1278,1795,0,81,0,28182550,27.8,9856428,33.5,27.8,29.7
474
  2012-05-29,123828,519,61003,5899,10117,4273,0,929,12588,4874,18938,829,0,1589,2177,0,93,0,35155031,35.4,11511518,25.9,35.4,32.0
 
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,45.2
1209
+ 2014-08-13,366082,1358,182898,17995,35264,17829,0,5915,33327,12440,43713,6941,1016,2936,4140,0,310,0,213817751,388.6,37930595,47.0,388.6,0.0
1210
  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
1211
  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