tamnd commited on
Commit
63a3221
·
verified ·
1 Parent(s): 2d345b6

Add 2014-10-07 — 469.0K 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,310 days), totaling **226,905,072 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 71.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.7 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 ██████████████████████████████ 89.7M
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 | 266 | 89,668,959 | 337,101 | 33.6 GB | 8.2 GB | 3h01m | 18h09m | 4h04m |
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 ██████████████████████████████ 45.4M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -180,7 +180,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
180
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ██████████████░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████████████░░░░ 4.4M
183
- 2014 ██████████████████████████████ 5.0M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 113,836,634 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 12,869,579 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 19,823,541 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,233,933 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,216,558 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 21,194,867 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,045,652 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 28,615,548 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 2,986,500 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 300,976 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,083,963 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,630,362 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 208,647 | 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,311 days), totaling **227,374,067 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 72.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.7 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 ██████████████████████████████ 90.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 | 267 | 90,137,954 | 337,595 | 33.8 GB | 8.3 GB | 3h02m | 18h11m | 4h05m |
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 ██████████████████████████████ 45.6M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
180
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ██████████████░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████████████░░░░ 4.4M
183
+ 2014 ██████████████████████████████ 5.1M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 114,066,269 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 12,901,711 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 19,867,653 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,255,676 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,224,058 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 21,237,901 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,060,950 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 28,670,723 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 2,993,693 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 302,180 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,087,220 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,635,985 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 209,182 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5210b4b5c2bdd33d7edff0b0c4a796b8dbd5327fecadd12ae08f9a22cd517e8a
3
+ size 113694
data/creates/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7d7a1b741003cc7fb49b6050a8d59f8210a90f576b4be6a3c58d612f1af40e5
3
+ size 2744704
data/deletes/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01259a38dd5cd1f2f23a525fd063bedb461f92b75a046f5fdc7fe73e9f695231
3
+ size 217245
data/forks/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:329b1eef6a67cd2f1d6a90b8966ae6c1e952fc420d6831c44649fe73f9ad9700
3
+ size 397989
data/issue_comments/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02f48b6c61a1cd66c345a5422a8760e2a1bbb8991ac199d7fcf127412b2798d5
3
+ size 1098782
data/issues/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd5bec2f1e21134422ec2de37038c8f7442f46e6fad37587ac66f4c510624e31
3
+ size 685954
data/public_events/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6409e2ea2c80a44a4db2f29193864fc60fb5192e31da25d5d57e927194cb8b9f
3
+ size 19744
data/pull_requests/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab2d1a9bbad92781a5f5beb16378336a095adc38751b7446ab4d951a664a7272
3
+ size 3749653
data/pushes/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e6eed80b7e07d5f8afa30d68e4a7ef31ace84a72240572a641f3c390285a606
3
+ size 36007943
data/stars/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d2c43c765deb00379019bf4749feaa50f9cfcc20d96b479b167e04b1698e432
3
+ size 1851927
data/wiki_pages/2014/10/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab7f3f90d46dc3d8b40b7fcaa5523a48e6fe33a0da12792e16f7934e8722894c
3
+ size 289739
stats.csv CHANGED
@@ -1306,6 +1306,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1306
  2014-10-03,375645,2259,195286,21559,33040,17907,0,6152,31017,11264,42511,6369,1013,2771,4165,0,332,0,211168329,97.1,39423524,79.1,97.1,46.7
1307
  2014-10-04,270384,1952,148780,14176,18845,10358,0,2433,22455,8471,33370,3620,797,1565,3314,0,248,0,140816619,65.9,26625145,34.0,65.9,60.4
1308
  2014-10-05,292293,1315,162849,13406,21830,11392,0,2632,24499,8272,34285,4878,924,1935,3792,0,284,0,157624973,72.8,32969698,60.1,72.8,69.5
1309
- 2014-10-06,441525,2376,222963,23238,44023,21852,0,7047,35701,13817,52166,7719,1176,3449,5602,0,396,0,247692434,119.5,45104774,53.2,119.5,0.0
 
1310
  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
1311
  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
 
1306
  2014-10-03,375645,2259,195286,21559,33040,17907,0,6152,31017,11264,42511,6369,1013,2771,4165,0,332,0,211168329,97.1,39423524,79.1,97.1,46.7
1307
  2014-10-04,270384,1952,148780,14176,18845,10358,0,2433,22455,8471,33370,3620,797,1565,3314,0,248,0,140816619,65.9,26625145,34.0,65.9,60.4
1308
  2014-10-05,292293,1315,162849,13406,21830,11392,0,2632,24499,8272,34285,4878,924,1935,3792,0,284,0,157624973,72.8,32969698,60.1,72.8,69.5
1309
+ 2014-10-06,441525,2376,222963,23238,44023,21852,0,7047,35701,13817,52166,7719,1176,3449,5602,0,396,0,247692434,119.5,45104774,53.2,119.5,44.9
1310
+ 2014-10-07,468995,2554,229635,32132,44112,21743,0,7500,43034,15298,55175,7193,1204,3257,5623,0,535,0,259490412,123.4,47177374,56.2,123.4,0.0
1311
  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
1312
  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