tamnd commited on
Commit
6155839
·
verified ·
1 Parent(s): 05e54aa

Add 2014-10-22 — 469.7K events, 11 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,321 days), totaling **231,630,709 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 74.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.1 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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 █████████████░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ████████████████████████░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 94.4M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
@@ -147,7 +147,7 @@ duckdb.sql("""
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
- | 2014 | 277 | 94,394,596 | 340,774 | 36.0 GB | 8.7 GB | 3h10m | 18h28m | 4h11m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -159,7 +159,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
159
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ████████████░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ████████████████████████░░░░░░ 38.9M
162
- 2014 ██████████████████████████████ 47.7M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -179,7 +179,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
179
  ```
180
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 █████████████░░░░░░░░░░░░░░░░░ 2.4M
182
- 2013 █████████████████████████░░░░░ 4.4M
183
  2014 ██████████████████████████████ 5.3M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 116,195,116 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,117,205 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 20,266,842 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,445,923 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,279,452 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 21,623,265 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,203,253 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 29,228,104 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,061,916 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 313,151 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,117,723 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,681,815 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 213,354 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
 
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,322 days), totaling **232,100,409 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 74.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.1 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
 
 
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 █████████████░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ████████████████████████░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 94.9M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
 
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
+ | 2014 | 278 | 94,864,296 | 341,238 | 36.2 GB | 8.7 GB | 3h11m | 18h30m | 4h12m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
159
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ████████████░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ████████████████████████░░░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 48.0M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
179
  ```
180
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 █████████████░░░░░░░░░░░░░░░░░ 2.4M
182
+ 2013 ██████████████████████���█░░░░░ 4.4M
183
  2014 ██████████████████████████████ 5.3M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 116,426,041 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,140,351 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 20,308,187 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,467,898 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,286,415 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 21,663,464 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,219,355 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 29,295,860 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,070,816 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 314,357 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,120,910 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,686,941 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 213,786 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5780590a3044c12e927da01878d13d8371b5ced3f1b128ca2fb1be0d18d6f801
3
+ size 113038
data/creates/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d43581fd637ccd958b146bda8642610d3d0980fa698462106686e791f5c6c2a
3
+ size 5360894
data/deletes/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:480d734664b07edf7157fadce44807c0fefa12d87b9eeab7c0a020764944140f
3
+ size 237518
data/forks/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6aa8abedb1e49f842326f38621423ce3408574054522ee31fa5d8d9adfad8a3f
3
+ size 423722
data/issue_comments/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f305cceead5fbf30aad259aaae87902ce0e0acb987168e2da5975a47b94e0ac0
3
+ size 1039205
data/issues/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6bc94c91c71e2624bdf61d962814b155173c4195ef48ea63223bb1d47c3da70
3
+ size 646899
data/public_events/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56dda4a79c76615dae38c62d61eb48bee72b5a1f2b9b0b7a26e99902376f24e5
3
+ size 16982
data/pull_requests/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7528d4a0d5158700315f9eb5355dadaf40fa9cb3da9bdd010c55011eb824fffc
3
+ size 3726004
data/pushes/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89ebce8bd0862353b00065bb84e3c2b97291663f20b922fbac9d55b2be723eae
3
+ size 35609945
data/stars/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9de1017f0570360ee832c5b932c86d2c9dd0ee003b25a29ba6c3e935c8fa248a
3
+ size 1812146
data/wiki_pages/2014/10/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b29b14d7a71fb6aa5e328d83dd3a1f9d8abe7c69df5df1579379d1417b72fef
3
+ size 266362
stats.csv CHANGED
@@ -1317,6 +1317,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1317
  2014-10-14,458693,2577,232622,21487,40438,22133,0,7065,45386,15227,53212,8214,1230,3699,4936,0,467,0,253328219,95.9,46857083,44.2,95.9,21.6
1318
  2014-10-19,320199,1582,173961,14813,22717,12618,0,2716,29653,11044,39819,4890,832,1908,3294,0,352,0,174260801,72.8,35571125,9.6,72.8,45.9
1319
  2014-10-20,489518,2945,237683,23651,45543,23081,0,7062,42821,16279,71036,8249,1274,4229,5144,0,521,0,273118295,122.6,50384698,48.0,122.6,28.8
1320
- 2014-10-21,494652,2659,241790,24214,43277,22952,0,7036,43382,16771,73643,8025,1289,3845,5326,0,443,0,280307986,128.3,52507815,75.4,128.3,0.0
 
1321
  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
1322
  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
 
1317
  2014-10-14,458693,2577,232622,21487,40438,22133,0,7065,45386,15227,53212,8214,1230,3699,4936,0,467,0,253328219,95.9,46857083,44.2,95.9,21.6
1318
  2014-10-19,320199,1582,173961,14813,22717,12618,0,2716,29653,11044,39819,4890,832,1908,3294,0,352,0,174260801,72.8,35571125,9.6,72.8,45.9
1319
  2014-10-20,489518,2945,237683,23651,45543,23081,0,7062,42821,16279,71036,8249,1274,4229,5144,0,521,0,273118295,122.6,50384698,48.0,122.6,28.8
1320
+ 2014-10-21,494652,2659,241790,24214,43277,22952,0,7036,43382,16771,73643,8025,1289,3845,5326,0,443,0,280307986,128.3,52507815,75.4,128.3,30.9
1321
+ 2014-10-22,469700,2438,230925,23146,41345,21975,0,6963,40199,16102,67756,8900,1206,3187,5126,0,432,0,264473847,119.9,49252715,56.6,119.9,0.0
1322
  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
1323
  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