tamnd commited on
Commit
9f84d08
·
verified ·
1 Parent(s): 70e84e8

Add 2012-08-04 to 2012-08-10 — 7 days, 791.8K 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,224 days), totaling **203,092,625 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 60.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.2 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
 
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-28** — 2,678,257 events in 3845 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
@@ -85,7 +85,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
- 11:00 ███████████████████░░░░░░░░░░░ 183.9K
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -143,9 +143,9 @@ duckdb.sql("""
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 | 337 | 38,799,237 | 115,131 | 10.4 GB | 1.6 GB | 1h46m | 2h49m | 1h32m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 218 | 71,265,644 | 326,906 | 23.8 GB | 6.5 GB | 2h24m | 13h34m | 3h19m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
@@ -637,20 +637,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
- | `pushes` | PushEvent | 101,879,539 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 11,206,344 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 17,638,296 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 8,215,583 | 4.0% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,897,724 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 19,121,626 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 7,248,861 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 25,886,214 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,628,032 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 251,656 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,891,615 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,306,139 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 187,385 | 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,224 days), totaling **203,106,135 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 60.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.2 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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-28** — 2,698,864 events in 3846 blocks
75
 
76
  ```
77
  00:00 ████████████████████████░░░░░░ 235.4K
 
85
  08:00 ███████████████████████████░░░ 262.4K
86
  09:00 ██████████████████████████████ 284.7K
87
  10:00 ███████████████████████████░░░ 257.5K
88
+ 11:00 █████████████████████░░░░░░░░░ 204.5K
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
90
  13:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
91
  14:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
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 | 337 | 38,812,747 | 115,171 | 10.4 GB | 1.5 GB | 1h44m | 2h50m | 1h29m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
+ | 2014 | 218 | 71,265,644 | 326,906 | 23.8 GB | 6.5 GB | 2h24m | 13h34m | 3h20m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 101,886,057 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 11,208,053 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,639,434 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 8,216,047 | 4.0% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,897,847 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 19,122,903 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,249,242 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 25,887,506 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,628,122 | 1.3% | Branch/tag deletion |
649
  | `releases` | ReleaseEvent | 251,656 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,891,806 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,306,372 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 187,401 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/08/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6d298681649c29b41ee2d61a8988f0102677519408e7069ac345c3e967cc99b6
3
- size 161995
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb830a3766e7283d9cc79e3572da93cf897b7af147478484a9ce232d9d408618
3
+ size 350327
data/stars/2012/08/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1b6868eafeb5024eb4c49b38ebbc80769ad7bf15ad462c9ea300f83daff282fc
3
- size 189163
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:236961a2bfb8fdebd139bf98a3de653cfbcdec9feaf490745d0c25b32ee22961
3
+ size 421258
data/stars/2012/08/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:408a50168edd79313bc8406d593895ee64ab3ac61fe64c34c1eb78b8f3696c8f
3
- size 277669
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b11013cd0be227b1b78f632c90ffc19258f9d70a22e1bb00cf7fa35136e1198
3
+ size 590900
data/stars/2012/08/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:605de4bf8dc4584c17afaed08d26a3e5647770d94e479a64d9804e3391857cc7
3
- size 218335
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da58e7b6ef2af6b70d27fa4ed4ead3612a77912194653c314c933f38b69b2c13
3
+ size 468009
data/stars/2012/08/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5733b58b794234180cee980259c37df021917a142399f1298b0c6c3429883aca
3
- size 222078
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:703591edb93f860f6d1240ab9da625fbb3ff9cb7ad6314e99c215cac4faa9230
3
+ size 477010
data/stars/2012/08/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:209742c818a1d8f4caafc155c94f48fbed894c20a2ccc4f79fa3b618d7de26b6
3
- size 252375
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed5a9106ab69306e2270af20ee1a35c1306a37d61b844bb77468aaa1595429a2
3
+ size 540509
data/stars/2012/08/10.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c4231e8987adc1728dedd32e1f5e7f2015e3417db84449f37280bc60a38bf6ca
3
- size 225740
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d08284735cf404bb1499154fc6550a7ad52242ff9def7a039d3c91fac4290388
3
+ size 469220
stats.csv CHANGED
@@ -531,20 +531,20 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
531
  2012-07-25,125264,862,61933,6559,10595,4762,0,1033,12944,4531,17001,828,0,1527,2551,0,138,0,36874949,31.7,568983,6.9,31.7,6.2
532
  2012-07-26,120394,713,60764,6377,10220,4321,0,1080,13955,4590,13740,737,0,1269,2519,0,109,0,36634946,29.6,538477,10.1,29.6,6.2
533
  2012-07-27,105281,684,53208,5591,8912,3857,0,1017,11407,3835,12704,669,0,1205,2096,0,96,0,31678839,23.8,454383,11.2,23.8,6.2
534
- 2012-07-28,72498,516,37635,3755,5157,2238,0,339,8192,2690,9343,396,0,703,1481,0,53,0,21095451,15.0,338416,23.6,15.1,0.0
535
- 2012-07-29,81199,486,42938,3895,5737,2308,0,493,9272,3034,9574,443,0,888,2071,0,60,0,23630526,16.5,379980,20.2,16.5,0.0
536
- 2012-07-30,123700,896,61435,6744,10765,4531,0,1265,13560,4600,15068,772,0,1423,2521,0,120,0,37103312,30.6,524414,24.2,30.6,0.0
537
- 2012-07-31,121852,699,60106,6544,10352,4451,0,1332,14298,4636,14812,776,0,1399,2353,0,94,0,36440246,29.1,549128,9.4,29.1,0.0
538
- 2012-08-01,123867,956,61863,7067,10376,4641,0,1122,14095,4631,14394,789,0,1286,2536,0,111,0,37256393,29.7,553378,10.7,29.7,0.0
539
- 2012-08-02,127408,843,67355,6009,9929,4368,0,1144,13613,4423,15012,745,0,1350,2468,0,149,0,37480292,29.3,553417,7.7,29.3,0.0
540
- 2012-08-03,113698,656,59934,5656,9518,3928,0,955,12251,4012,12420,673,0,1311,2306,0,78,0,33209197,21.5,510043,8.3,21.5,0.0
541
- 2012-08-04,79548,417,45148,3970,5473,2201,0,299,8058,2601,8698,341,0,703,1567,0,72,0,22212992,13.8,7610791,20.9,13.8,26.9
542
- 2012-08-05,89031,477,49691,4527,5379,2312,0,528,9434,3485,9903,441,0,895,1882,0,77,0,24764306,14.2,8376774,27.1,14.2,26.4
543
- 2012-08-06,115218,708,59189,5840,9283,3756,0,1063,13208,4171,13635,686,0,1416,2157,0,106,0,33847410,16.9,11481943,20.3,16.9,38.9
544
- 2012-08-07,119479,697,61907,7152,10451,4229,0,1154,11309,4541,13384,758,0,1287,2484,0,126,0,35681463,13.1,11630443,21.1,13.1,35.8
545
- 2012-08-08,128521,766,68686,6577,10661,4477,0,1088,11479,5237,14501,807,0,1528,2591,0,123,0,38779040,24.4,12909106,33.4,24.4,28.8
546
- 2012-08-09,130001,739,68446,6512,10996,4449,0,1067,13419,5257,14118,816,0,1315,2772,0,95,0,39164550,23.6,13173076,36.0,23.6,31.4
547
- 2012-08-10,116492,645,61954,5950,9833,3946,0,811,11635,4535,12860,707,0,1347,2138,0,131,0,35120011,21.1,11924862,24.7,21.1,25.8
548
  2012-08-11,79688,431,44295,3927,5588,1955,0,378,7334,3099,9746,514,0,687,1681,0,53,0,22228492,8.4,7874105,22.1,8.4,43.5
549
  2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
550
  2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,56.8
@@ -1220,6 +1220,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1220
  2014-08-15,346228,1297,171111,19495,35158,16458,0,5219,30425,10999,41224,6681,1056,3084,3718,0,303,0,198626039,378.3,35205278,42.8,378.3,70.4
1221
  2014-08-16,241046,816,126225,11714,17976,8706,0,1631,22383,8058,33881,4622,696,1655,2484,0,199,0,127618138,244.4,23092121,34.5,244.4,64.0
1222
  2014-08-17,283711,1022,149934,13812,23055,10458,0,2571,27395,9696,35696,4419,821,1815,2780,0,237,0,154592166,290.3,28121162,35.4,290.3,50.6
1223
- 2014-08-18,414329,1638,203421,23165,42902,20382,0,7035,39432,13739,46949,7235,1101,3227,3749,0,354,0,240741995,464.9,41845792,48.1,464.9,0.0
1224
  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
1225
  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
 
531
  2012-07-25,125264,862,61933,6559,10595,4762,0,1033,12944,4531,17001,828,0,1527,2551,0,138,0,36874949,31.7,568983,6.9,31.7,6.2
532
  2012-07-26,120394,713,60764,6377,10220,4321,0,1080,13955,4590,13740,737,0,1269,2519,0,109,0,36634946,29.6,538477,10.1,29.6,6.2
533
  2012-07-27,105281,684,53208,5591,8912,3857,0,1017,11407,3835,12704,669,0,1205,2096,0,96,0,31678839,23.8,454383,11.2,23.8,6.2
534
+ 2012-07-28,72498,516,37635,3755,5157,2238,0,339,8192,2690,9343,396,0,703,1481,0,53,0,21095451,15.0,338416,23.6,15.1,4.4
535
+ 2012-07-29,81199,486,42938,3895,5737,2308,0,493,9272,3034,9574,443,0,888,2071,0,60,0,23630526,16.5,379980,20.2,16.5,4.4
536
+ 2012-07-30,123700,896,61435,6744,10765,4531,0,1265,13560,4600,15068,772,0,1423,2521,0,120,0,37103312,30.6,524414,24.2,30.6,4.4
537
+ 2012-07-31,121852,699,60106,6544,10352,4451,0,1332,14298,4636,14812,776,0,1399,2353,0,94,0,36440246,29.1,549128,9.4,29.1,4.4
538
+ 2012-08-01,123867,956,61863,7067,10376,4641,0,1122,14095,4631,14394,789,0,1286,2536,0,111,0,37256393,29.7,553378,10.7,29.7,4.4
539
+ 2012-08-02,127408,843,67355,6009,9929,4368,0,1144,13613,4423,15012,745,0,1350,2468,0,149,0,37480292,29.3,553417,7.7,29.3,4.4
540
+ 2012-08-03,113698,656,59934,5656,9518,3928,0,955,12251,4012,12420,673,0,1311,2306,0,78,0,33209197,21.5,510043,8.3,21.5,4.4
541
+ 2012-08-04,79548,417,45148,3970,5473,2201,0,299,8058,2601,8698,341,0,703,1567,0,72,0,22212992,14.0,350327,17.5,14.0,0.0
542
+ 2012-08-05,89031,477,49691,4527,5379,2312,0,528,9434,3485,9903,441,0,895,1882,0,77,0,24764306,15.1,421258,5.4,15.1,0.0
543
+ 2012-08-06,128728,786,65707,7549,10421,4220,0,1186,14485,4552,14927,776,0,1607,2390,0,122,0,37800584,21.0,590900,14.2,21.0,0.0
544
+ 2012-08-07,119479,697,61907,7152,10451,4229,0,1154,11309,4541,13384,758,0,1287,2484,0,126,0,35681463,24.3,468009,21.2,24.4,0.0
545
+ 2012-08-08,128521,766,68686,6577,10661,4477,0,1088,11479,5237,14501,807,0,1528,2591,0,123,0,38779040,24.4,477010,25.9,24.4,0.0
546
+ 2012-08-09,130001,739,68446,6512,10996,4449,0,1067,13419,5257,14118,816,0,1315,2772,0,95,0,39164550,26.0,540509,21.0,26.0,0.0
547
+ 2012-08-10,116492,645,61954,5950,9833,3946,0,811,11635,4535,12860,707,0,1347,2138,0,131,0,35120011,24.3,469220,7.7,24.3,0.0
548
  2012-08-11,79688,431,44295,3927,5588,1955,0,378,7334,3099,9746,514,0,687,1681,0,53,0,22228492,8.4,7874105,22.1,8.4,43.5
549
  2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
550
  2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,56.8
 
1220
  2014-08-15,346228,1297,171111,19495,35158,16458,0,5219,30425,10999,41224,6681,1056,3084,3718,0,303,0,198626039,378.3,35205278,42.8,378.3,70.4
1221
  2014-08-16,241046,816,126225,11714,17976,8706,0,1631,22383,8058,33881,4622,696,1655,2484,0,199,0,127618138,244.4,23092121,34.5,244.4,64.0
1222
  2014-08-17,283711,1022,149934,13812,23055,10458,0,2571,27395,9696,35696,4419,821,1815,2780,0,237,0,154592166,290.3,28121162,35.4,290.3,50.6
1223
+ 2014-08-18,414329,1638,203421,23165,42902,20382,0,7035,39432,13739,46949,7235,1101,3227,3749,0,354,0,240741995,464.9,41845792,48.1,464.9,44.0
1224
  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
1225
  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