tamnd commited on
Commit
18b06d0
·
verified ·
1 Parent(s): 3a94dd9

Add 2014-10-25 — 312.2K 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,324 days), totaling **232,994,016 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 75.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
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 ██████████████████████████████ 95.8M
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 | 280 | 95,757,903 | 341,992 | 36.7 GB | 8.8 GB | 3h13m | 18h34m | 4h14m |
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 ██████████████████████████████ 48.4M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -203,7 +203,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
203
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
204
  2012 ████████████░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████████░░░░░░░░░░ 3.0M
206
- 2014 ████████████████████████���█████ 4.2M
207
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
208
  ```
209
 
@@ -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,873,107 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,187,073 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 20,389,282 | 8.8% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,510,226 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,299,569 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 21,736,779 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,249,341 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 29,415,831 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,086,883 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 316,817 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,126,903 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,696,101 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 214,760 | 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,325 days), totaling **233,306,184 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 75.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.3 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 ██████████████████████████████ 96.1M
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 | 281 | 96,070,071 | 341,886 | 36.9 GB | 8.9 GB | 3h14m | 18h35m | 4h14m |
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.6M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
203
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475.6K
204
  2012 ████████████░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████████░░░░░░░░░░ 3.0M
206
+ 2014 █████████████████████████████ 4.3M
207
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
208
  ```
209
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 117,037,591 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,203,146 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 20,409,943 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,522,059 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,301,566 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 21,761,529 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,260,159 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 29,464,106 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,092,061 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 317,589 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,129,115 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,698,978 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 215,087 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c00e49bd30ed9ceff4536af03f2cfd594644c52f0d7cf223e762476f879933e
3
+ size 69081
data/creates/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac93e85957408a0f8148c2b6254069535d4b5d50d749754111e85ad0b5d5a7d6
3
+ size 5205593
data/deletes/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aac7f88605658486d24f9147988e150259ecfc6fe77858458b53fc55dc04f48
3
+ size 127498
data/forks/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ebe34d4e47ed6a12e3200a995c54ae5f936720e80400a3674410fe9bb3a8ddc
3
+ size 283173
data/issue_comments/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8c99e5e409e65aacf9d7627bcc6133138dd849d40c01e3f14985fb5f291fac6
3
+ size 493392
data/issues/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:551dcf553a6be070638739cafdef85052528daa5eb960a8ce696a712fca8099c
3
+ size 420056
data/public_events/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d466922e5cfeec279ca85c05f86d06b31b8bcfb575ebec844b56e56d4e5cb6cf
3
+ size 13086
data/pull_requests/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c0d7773cac4412666c6209d312327be47af70c0b763e1b426966f58e9bf0743
3
+ size 1887908
data/pushes/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbeec713f8543977d348be6f3da7eb156b2d07a0927248f601178d4b9226eca0
3
+ size 23860098
data/stars/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b25b3efb5ca5754f9ca3c672df4fec0727a63f2a4ce8f18fa5ac3cb04d39fef
3
+ size 1148045
data/wiki_pages/2014/10/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35f75102410a9bfdb7d805e82de2a9d99b33b8c83f26223b19465af787611839
3
+ size 206449
stats.csv CHANGED
@@ -1320,6 +1320,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,43.0
1322
  2014-10-23,472917,2781,235639,24346,43416,22302,0,7329,40012,16128,62380,8480,1285,3250,5066,0,503,0,268315246,128.1,49517018,48.9,128.1,55.8
1323
- 2014-10-24,420690,2535,211427,22376,37679,20026,0,5825,33303,13858,57591,7587,1175,2743,4094,0,471,0,245899246,114.1,52700332,60.3,114.1,0.0
 
1324
  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
1325
  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
 
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,43.0
1322
  2014-10-23,472917,2781,235639,24346,43416,22302,0,7329,40012,16128,62380,8480,1285,3250,5066,0,503,0,268315246,128.1,49517018,48.9,128.1,55.8
1323
+ 2014-10-24,420690,2535,211427,22376,37679,20026,0,5825,33303,13858,57591,7587,1175,2743,4094,0,471,0,245899246,114.1,52700332,60.3,114.1,52.1
1324
+ 2014-10-25,312168,1911,164484,16073,20661,11833,0,1997,24750,10818,48275,5178,772,2212,2877,0,327,0,169171872,77.4,33714379,50.4,77.4,0.0
1325
  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
1326
  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