tamnd commited on
Commit
c6cbccf
·
verified ·
1 Parent(s): 286a276

Add 2012-03-03 to 2012-03-09 — 7 days, 862.5K 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,178 days), totaling **195,467,638 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.9 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 ██████████████░░░░░░░░░░░░░░░░ 35.2M
138
  2013 ██████████████████████████████ 74.5M
139
- 2014 ███████████████████████████░░░ 67.2M
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 | 303 | 35,233,561 | 116,282 | 9.4 GB | 2.6 GB | 2h00m | 3h15m | 2h24m |
147
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
148
- | 2014 | 206 | 67,206,333 | 326,244 | 21.7 GB | 6.1 GB | 2h15m | 12h20m | 3h06m |
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 █████████████░░░░░░░░░░░░░░░░░ 16.9M
159
  2013 ██████████████████████████████ 38.1M
160
- 2014 ██████████████████████████░░░ 34.1M
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.5M
182
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
183
  ```
184
 
@@ -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,092,026 | 50.2% | Git pushes with commits |
641
- | `issues` | IssuesEvent | 10,829,010 | 5.5% | Issue lifecycle events |
642
- | `issue_comments` | IssueCommentEvent | 16,998,825 | 8.7% | Comments on issues/PRs |
643
- | `pull_requests` | PullRequestEvent | 7,922,368 | 4.1% | PR lifecycle events |
644
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,819,793 | 0.9% | Line-level PR comments |
645
- | `stars` | WatchEvent | 18,388,649 | 9.4% | Repository stars |
646
- | `forks` | ForkEvent | 6,996,488 | 3.6% | Repository forks |
647
- | `creates` | CreateEvent | 24,767,140 | 12.7% | Branch/tag/repo creation |
648
- | `deletes` | DeleteEvent | 2,530,041 | 1.3% | Branch/tag deletion |
649
- | `releases` | ReleaseEvent | 240,177 | 0.1% | Release publications |
650
- | `commit_comments` | CommitCommentEvent | 1,822,070 | 0.9% | Comments on commits |
651
- | `wiki_pages` | GollumEvent | 3,196,469 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
- | `public_events` | PublicEvent | 180,322 | 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,179 days), totaling **195,875,697 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.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.9 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 ██████████████░░░░░░░░░░░░░░░░ 35.2M
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 | 303 | 35,233,561 | 116,282 | 9.4 GB | 2.5 GB | 1h59m | 3h15m | 2h22m |
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 | 3h07m |
149
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
150
 
151
 
 
157
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
158
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.9M
159
  2013 ██████████████████████████████ 38.1M
160
+ 2014 ██████████████████████████░░░ 34.3M
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
 
 
637
 
638
  | Table | GitHub Event | Events | % | Description |
639
  |-------|-------------|-------:|---:|-------------|
640
+ | `pushes` | PushEvent | 98,295,930 | 50.2% | Git pushes with commits |
641
+ | `issues` | IssuesEvent | 10,849,506 | 5.5% | Issue lifecycle events |
642
+ | `issue_comments` | IssueCommentEvent | 17,038,224 | 8.7% | Comments on issues/PRs |
643
+ | `pull_requests` | PullRequestEvent | 7,942,562 | 4.1% | PR lifecycle events |
644
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,826,597 | 0.9% | Line-level PR comments |
645
+ | `stars` | WatchEvent | 18,425,787 | 9.4% | Repository stars |
646
+ | `forks` | ForkEvent | 7,010,538 | 3.6% | Repository forks |
647
+ | `creates` | CreateEvent | 24,813,773 | 12.7% | Branch/tag/repo creation |
648
+ | `deletes` | DeleteEvent | 2,538,875 | 1.3% | Branch/tag deletion |
649
+ | `releases` | ReleaseEvent | 241,311 | 0.1% | Release publications |
650
+ | `commit_comments` | CommitCommentEvent | 1,825,377 | 0.9% | Comments on commits |
651
+ | `wiki_pages` | GollumEvent | 3,200,716 | 1.6% | Wiki page edits |
652
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
653
+ | `public_events` | PublicEvent | 180,719 | 0.1% | Repo made public |
654
 
655
  ## How it's built
656
 
data/stars/2012/03/03.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2cc55f3be3f2d13f94b76c165a0c1139b273a9483b510c2a42f4cee27ad4968a
3
- size 236943
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:795177ba2ee4b8878920b5a44ff03018506e24576d92dff6b9941920aa35f899
3
+ size 340780
data/stars/2012/03/04.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6eecf2260ffab24e3b8f7b0cea51f7e5c3e805aec710823c6e4c857ab35b62c4
3
- size 186785
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba71ccc46b4762e1e45b0c5e795645bd9bc01e94f4d86617a1ad188ce2d3db2d
3
+ size 273033
data/stars/2012/03/05.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9cd74793e8318bb81f6c9372efc8864e23f7727b8737c9e1572284374cac2846
3
- size 307866
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac7246f4e4cbf0b8f95782486d33b9d97956591dcc9ac3ea04a9e98dcad670b5
3
+ size 453487
data/stars/2012/03/06.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f7742b16ad46a08bfe0079f943c4279e173d0536650d637b7264c36346b2187f
3
- size 372968
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:438e9f5c21378decf4ee2d3f359e019446a6a3b76f71c65bd83921a38271594f
3
+ size 540966
data/stars/2012/03/07.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:377efc36ce3f378c813c8957c1a7516ca1400b7906625bfc5d133f0659d3e1b8
3
- size 370278
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8b35040f4b4a5b22964b1d6243496d7289269934f84e0f0ece4831945f3cd4e
3
+ size 544689
data/stars/2012/03/08.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:1af3f8529aba155cb57de21eacdf233969e059fde5d7e350317f7a246d195c08
3
- size 402245
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a9e79834d609e98f02f9370a9ddd1463890fbd53e9e105880d5521c0926da50
3
+ size 568803
data/stars/2012/03/09.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:da9c9e8a90009eee46f26300100cb18c576d38a1b4c78803837936511a81ca69
3
- size 333091
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddc019d7d39c71d74b7522a34eecd15c1c3c75a8fa987eccc06ec3e1868f8823
3
+ size 484300
stats.csv CHANGED
@@ -390,7 +390,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
390
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,46.1,540966,8.5,46.1,0.0
391
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,46.1,544689,6.9,46.1,0.0
392
  2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,42.9,568803,22.5,42.9,0.0
393
- 2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,59.0,17071131,28.8,59.0,32.3
394
  2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,10.5,103667,9.3,10.5,0.0
395
  2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,18.3,296725,25.9,18.3,0.0
396
  2012-03-12,114006,3709,55342,5807,9308,3798,0,888,11595,3970,18749,605,0,1235,2068,0,116,0,31179652,17.5,10197119,42.2,17.5,27.8
@@ -1174,6 +1174,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1174
  2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,51.5
1175
  2014-08-04,401409,1718,195378,21869,43573,19363,0,6998,37373,14073,46148,6742,1101,2852,3806,0,415,0,232502272,466.5,40240092,53.6,466.5,57.6
1176
  2014-08-05,414882,1627,203619,23137,44254,20006,0,7240,37791,14130,47204,6917,1193,3102,4329,0,333,0,240654829,478.7,41706265,43.1,478.7,56.7
1177
- 2014-08-06,415193,1598,203604,23891,42531,20016,0,7275,37411,14471,48108,7632,1094,3372,3816,0,374,0,241173058,486.1,41950556,50.8,486.1,0.0
 
1178
  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
1179
  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
 
390
  2012-03-06,147820,0,56208,5812,9792,30079,0,750,12719,3797,22905,1076,0,1454,2418,703,107,0,48115290,46.1,540966,8.5,46.1,0.0
391
  2012-03-07,141627,0,54265,6227,9068,25996,0,698,12993,3767,22726,1011,0,1480,2574,695,127,0,45514169,46.1,544689,6.9,46.1,0.0
392
  2012-03-08,136260,0,53048,5293,8907,24478,0,906,12322,3764,22031,1121,0,1290,2355,622,123,0,43579009,42.9,568803,22.5,42.9,0.0
393
+ 2012-03-09,138754,0,51325,5075,8268,31240,0,827,11074,3567,22168,1063,0,1389,2098,571,89,0,45290060,44.9,484300,17.5,44.9,0.0
394
  2012-03-10,32077,3512,10595,920,1279,7782,0,107,2224,741,7317,223,0,252,515,107,15,0,10415548,10.5,103667,9.3,10.5,0.0
395
  2012-03-11,82907,2486,41670,3736,5346,2210,0,275,7936,2218,16346,407,0,788,1582,0,83,0,21558165,18.3,296725,25.9,18.3,0.0
396
  2012-03-12,114006,3709,55342,5807,9308,3798,0,888,11595,3970,18749,605,0,1235,2068,0,116,0,31179652,17.5,10197119,42.2,17.5,27.8
 
1174
  2014-08-03,264364,816,139153,12005,20039,10323,0,2289,28152,9216,32666,4024,800,1667,3011,0,203,0,144290418,265.3,25821455,38.1,265.3,51.5
1175
  2014-08-04,401409,1718,195378,21869,43573,19363,0,6998,37373,14073,46148,6742,1101,2852,3806,0,415,0,232502272,466.5,40240092,53.6,466.5,57.6
1176
  2014-08-05,414882,1627,203619,23137,44254,20006,0,7240,37791,14130,47204,6917,1193,3102,4329,0,333,0,240654829,478.7,41706265,43.1,478.7,56.7
1177
+ 2014-08-06,415193,1598,203604,23891,42531,20016,0,7275,37411,14471,48108,7632,1094,3372,3816,0,374,0,241173058,486.1,41950556,50.8,486.1,61.9
1178
+ 2014-08-07,408059,1522,203904,20496,39399,20194,0,6804,37138,14050,46633,8834,1134,3307,4247,0,397,0,238373344,489.9,41741573,45.7,489.9,0.0
1179
  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
1180
  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