tamnd commited on
Commit
4b653c3
·
verified ·
1 Parent(s): 638b7ae

Add 2012-03-31 to 2012-04-06 — 7 days, 783.9K 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,189 days), totaling **196,895,295 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 57.9 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
 
@@ -136,16 +136,16 @@ duckdb.sql("""
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 36.3M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ███████████████████████████░░░ 67.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 | 313 | 36,253,159 | 115,824 | 9.7 GB | 2.5 GB | 2h00m | 3h17m | 2h19m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 207 | 67,614,392 | 326,639 | 21.9 GB | 6.2 GB | 2h16m | 12h28m | 3h08m |
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 █████████████░░░░░░░░░░░░░░░░░ 17.4M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ███████████████████████████░░░ 34.3M
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.0M
180
  2013 ██████████████████████████████ 4.3M
181
- 2014 ████████████████████████░░░░░ 3.6M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -223,7 +223,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.5M
225
  2013 ██████████████████████████████ 7.0M
226
- 2014 ██████████████████████████░░░ 6.2M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 98,787,401 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,897,333 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,113,278 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,974,178 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,832,050 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,527,634 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,045,090 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 25,002,996 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,544,829 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 241,311 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,836,847 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,220,256 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 181,856 | 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,190 days), totaling **197,138,410 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.1 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
 
 
136
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
137
  2012 ██████████████░░░░░░░░░░░░░░░░ 36.3M
138
  2013 ██████████████████████████████ 74.5M
139
+ 2014 ███████████████████████████░░░ 67.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 | 313 | 36,260,134 | 115,847 | 9.7 GB | 2.4 GB | 1h58m | 3h13m | 2h14m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 208 | 67,850,532 | 326,204 | 22.0 GB | 6.2 GB | 2h16m | 12h32m | 3h08m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 █████████████░░░░░░░░░░░░░░░░░ 17.4M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ███████████████████████████░░░ 34.4M
161
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
162
  ```
163
 
 
178
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
179
  2012 ██████████████░░���░░░░░░░░░░░░░ 2.0M
180
  2013 ██████████████████████████████ 4.3M
181
+ 2014 ████████████████████████░░░░░ 3.6M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
 
223
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
224
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.5M
225
  2013 ██████████████████████████████ 7.0M
226
+ 2014 ██████████████████████████░░░ 6.3M
227
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
228
  ```
229
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 98,919,599 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,909,234 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,130,985 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,982,984 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,833,941 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,549,692 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,054,010 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 25,033,247 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,548,130 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 242,134 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,838,333 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,222,924 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 182,040 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/03/31.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a9e9f7a0a310f8f3b838d92bc00aff6f8d39553231723999d0b71c07ef11a64a
3
- size 128957
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9c7e41a0ede004586ffc60dbb964992a34e33a1b5c1e6b9ad8c0d9ff7c1eca5
3
+ size 291063
data/stars/2012/04/01.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cdcf30ce73403fae878db23c94f5ee6cead23d288b10a9c16fe212683bcd5d17
3
- size 130878
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d77475a16c5005a9353eb54523c9c8c17f69aca686c0852c200f65abb4e48ba7
3
+ size 314814
data/stars/2012/04/02.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7b6e5fafaa53778c842c4dbc5b98478f1bcc98a1501b7a7ce9af819c8db0f8b0
3
- size 183852
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3a91414c536ec0affc7ff543f52d26489749211e8d630112ee206a3cd81309d
3
+ size 420715
data/stars/2012/04/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:a4d9476b74d7c911cba30414811328a69686b5371f243d31a0e22effd117eaa1
3
- size 184760
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d930785a8ca7c1d429323f439e7afda174f730d5be9cb7f0963d77e535a4d9d4
3
+ size 435113
data/stars/2012/04/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4c84889afcfcfc3ba23bcab2cf389ea391e9646feb76d3cd7c7fa9fa57a7d087
3
- size 405107
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eabc5d66655ec6aac14286b215b8aa11755cb90c1ac82946193b85f9a36b2ca0
3
+ size 1119272
data/stars/2012/04/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9e46b06535d4307dab0d9cc888250ca0b21af33cc48a0ba544b29fd321c35348
3
- size 173112
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ece6d25b85364895b7d7a1e1d5d0e862d39f33eb22c72ab9cfd07e88ac068847
3
+ size 403222
data/stars/2012/04/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b3b5526a5a1ff7f2fc255b38e9c7bbd4320906258d58521e1c5d5a0138a1b417
3
- size 145181
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8276fca790541601df775605e695bb24f1006402c4bfff580d0679f0a4ef7604
3
+ size 354030
stats.csv CHANGED
@@ -405,21 +405,21 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
405
  2012-03-21,117974,3790,56088,5738,9469,3887,0,643,11867,3854,20992,712,0,1529,2502,0,116,0,32460165,24.1,422898,5.9,24.1,5.6
406
  2012-03-22,116394,3464,56849,5190,8949,3913,0,735,11374,3866,20776,671,0,1377,2061,0,111,0,32152569,17.3,463553,23.8,17.3,5.6
407
  2012-03-23,105219,3308,50946,5021,7893,3596,0,644,10313,3531,18834,660,0,1266,1962,0,120,0,29019636,15.9,377047,5.4,15.9,5.6
408
- 2012-03-24,79961,2392,38651,3622,5240,2117,0,303,7107,2652,17070,428,0,834,1465,0,85,0,20856269,12.1,276372,18.5,12.1,0.0
409
- 2012-03-25,84926,2331,42286,3481,5403,2271,0,358,8525,2654,16429,433,0,875,1778,0,91,0,22408713,11.3,316663,0.3,11.3,0.0
410
- 2012-03-26,118555,3564,57222,6228,9278,3942,0,809,12209,3829,19826,750,0,1496,2366,0,125,0,32379457,16.0,440530,0.0,16.0,0.0
411
- 2012-03-27,139100,3781,55126,13672,24672,3975,0,793,12392,4083,19449,708,0,1462,2074,0,160,0,32670152,27.6,432301,19.6,27.6,0.0
412
- 2012-03-28,154896,3872,58047,14491,35205,3959,0,925,12945,4054,20021,796,0,1624,2241,0,123,0,34371402,30.4,451201,15.3,30.4,0.0
413
- 2012-03-29,139841,3690,57679,11646,26244,3823,0,891,11780,3780,19472,680,0,1387,1873,0,91,0,33368396,28.9,426403,10.8,29.0,0.0
414
- 2012-03-30,110007,3400,50862,6895,9351,3554,0,867,11332,3496,19385,616,0,1168,1927,0,98,0,29371581,26.6,400489,8.5,26.6,0.0
415
- 2012-03-31,80027,2534,39031,4213,5528,2097,0,291,7720,2371,15727,445,0,800,1381,0,78,0,21120212,40.5,6567689,26.9,40.5,115.0
416
- 2012-04-01,83839,2519,42564,3520,5128,2162,0,410,8282,2481,16043,432,0,867,1593,0,83,0,22320218,42.4,7206752,21.8,42.4,38.9
417
- 2012-04-02,120592,3844,54425,5642,9112,3659,0,981,11989,8772,21053,703,0,1382,2227,0,120,0,32010536,59.3,9850325,24.3,59.3,44.6
418
- 2012-04-03,154268,6937,56253,15535,36310,3952,0,925,11831,3623,20751,821,0,1406,2246,0,112,0,33445353,69.3,10232409,24.4,69.3,31.6
419
- 2012-04-04,136906,4982,56281,5456,8589,3721,0,736,33317,3708,20192,734,0,1371,2148,0,134,0,34061673,61.0,10399507,22.1,61.0,36.7
420
- 2012-04-05,111265,3372,52946,5089,10250,3760,0,614,11141,3629,19048,633,0,1218,2367,0,114,0,30435424,51.3,9731862,24.2,51.3,24.9
421
- 2012-04-06,92300,2729,44840,4669,6685,2947,0,506,8740,2853,17092,519,0,897,2082,0,84,0,24852902,40.3,8058399,18.7,40.3,32.8
422
- 2012-04-07,76285,2185,37329,4272,4916,1944,0,284,7477,2222,14845,380,0,776,1529,0,56,0,19994056,33.3,6499580,19.9,33.3,21.2
423
  2012-04-08,75330,2166,39447,3451,4774,2117,0,374,7765,2060,12188,405,0,850,1588,0,63,0,20243849,37.0,6757988,25.0,37.0,29.0
424
  2012-04-09,105801,3312,51978,4973,7703,3387,0,733,10580,3240,18895,545,0,1334,1913,0,107,0,28700543,50.8,9262666,28.2,50.8,36.0
425
  2012-04-10,121885,2172,58417,5976,9667,4097,0,783,12711,3947,21237,692,0,1412,2314,0,107,0,33434876,61.8,10827333,22.2,61.8,21.9
 
405
  2012-03-21,117974,3790,56088,5738,9469,3887,0,643,11867,3854,20992,712,0,1529,2502,0,116,0,32460165,24.1,422898,5.9,24.1,5.6
406
  2012-03-22,116394,3464,56849,5190,8949,3913,0,735,11374,3866,20776,671,0,1377,2061,0,111,0,32152569,17.3,463553,23.8,17.3,5.6
407
  2012-03-23,105219,3308,50946,5021,7893,3596,0,644,10313,3531,18834,660,0,1266,1962,0,120,0,29019636,15.9,377047,5.4,15.9,5.6
408
+ 2012-03-24,79961,2392,38651,3622,5240,2117,0,303,7107,2652,17070,428,0,834,1465,0,85,0,20856269,12.1,276372,18.5,12.1,6.0
409
+ 2012-03-25,84926,2331,42286,3481,5403,2271,0,358,8525,2654,16429,433,0,875,1778,0,91,0,22408713,11.3,316663,0.3,11.3,6.0
410
+ 2012-03-26,118555,3564,57222,6228,9278,3942,0,809,12209,3829,19826,750,0,1496,2366,0,125,0,32379457,16.0,440530,0.0,16.0,6.0
411
+ 2012-03-27,139100,3781,55126,13672,24672,3975,0,793,12392,4083,19449,708,0,1462,2074,0,160,0,32670152,27.6,432301,19.6,27.6,6.0
412
+ 2012-03-28,154896,3872,58047,14491,35205,3959,0,925,12945,4054,20021,796,0,1624,2241,0,123,0,34371402,30.4,451201,15.3,30.4,6.0
413
+ 2012-03-29,139841,3690,57679,11646,26244,3823,0,891,11780,3780,19472,680,0,1387,1873,0,91,0,33368396,28.9,426403,10.8,29.0,6.0
414
+ 2012-03-30,110007,3400,50862,6895,9351,3554,0,867,11332,3496,19385,616,0,1168,1927,0,98,0,29371581,26.6,400489,8.5,26.6,6.0
415
+ 2012-03-31,80027,2534,39031,4213,5528,2097,0,291,7720,2371,15727,445,0,800,1381,0,78,0,21120212,16.5,291063,8.8,16.5,0.0
416
+ 2012-04-01,83839,2519,42564,3520,5128,2162,0,410,8282,2481,16043,432,0,867,1593,0,83,0,22320218,18.8,314814,6.9,18.8,0.0
417
+ 2012-04-02,120592,3844,54425,5642,9112,3659,0,981,11989,8772,21053,703,0,1382,2227,0,120,0,32010536,28.8,420715,9.5,28.8,0.0
418
+ 2012-04-03,154268,6937,56253,15535,36310,3952,0,925,11831,3623,20751,821,0,1406,2246,0,112,0,33445353,30.7,435113,7.8,30.7,0.0
419
+ 2012-04-04,136906,4982,56281,5456,8589,3721,0,736,33317,3708,20192,734,0,1371,2148,0,134,0,34061673,30.5,1119272,5.8,30.5,0.0
420
+ 2012-04-05,111265,3372,52946,5089,10250,3760,0,614,11141,3629,19048,633,0,1218,2367,0,114,0,30435424,25.9,403222,7.7,25.9,0.0
421
+ 2012-04-06,96989,3239,47222,4851,6968,3063,0,508,9580,3013,17675,538,0,931,2152,0,91,0,26146645,20.1,354030,9.0,20.1,0.0
422
+ 2012-04-07,78571,2314,38614,4357,5022,2004,0,284,7712,2299,15177,393,0,795,1594,0,57,0,20635607,16.3,287840,7.8,16.3,0.0
423
  2012-04-08,75330,2166,39447,3451,4774,2117,0,374,7765,2060,12188,405,0,850,1588,0,63,0,20243849,37.0,6757988,25.0,37.0,29.0
424
  2012-04-09,105801,3312,51978,4973,7703,3387,0,733,10580,3240,18895,545,0,1334,1913,0,107,0,28700543,50.8,9262666,28.2,50.8,36.0
425
  2012-04-10,121885,2172,58417,5976,9667,4097,0,783,12711,3947,21237,692,0,1412,2314,0,107,0,33434876,61.8,10827333,22.2,61.8,21.9