tamnd commited on
Commit
8ea0c09
·
verified ·
1 Parent(s): 308298d

Add 2014-11-06 — 494.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,336 days), totaling **238,097,197 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 77.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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 ██████████████████████████████ 100.9M
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 | 292 | 100,861,084 | 345,414 | 39.3 GB | 9.3 GB | 3h24m | 18h55m | 4h23m |
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 ██████████████████████████████ 51.1M
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.6M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
@@ -222,10 +222,10 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
222
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
223
 
224
  ```
225
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 █████████████░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████████░░░░░░░ 7.1M
228
- 2014 ██████████████████████████████ 9.1M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 119,570,048 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,450,439 | 5.6% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 20,820,951 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,734,989 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,367,655 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,167,759 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,416,182 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,020,447 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,170,524 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 329,772 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,161,355 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,748,391 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 219,910 | 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,337 days), totaling **238,591,203 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 77.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.8 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 ██████████████████████████████ 101.4M
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 | 293 | 101,355,090 | 345,921 | 39.6 GB | 9.4 GB | 3h24m | 18h57m | 4h23m |
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 ██████████████████████████████ 51.3M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
180
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ████████████░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ███████████████████████░░░░░░░ 4.4M
183
+ 2014 █████████████████████████████ 5.7M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
 
222
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
223
 
224
  ```
225
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 █████████████░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████████░░░░░░░ 7.1M
228
+ 2014 ██████████████████████████████ 9.2M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 119,815,778 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,478,116 | 5.6% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 20,870,616 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,758,915 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,375,061 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,209,594 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,433,038 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,078,443 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,179,305 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 331,084 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,164,834 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,754,248 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 220,467 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ac82f41d3ed322d43f1aedf2efbc9b657b21cf55b66e2d8b5327b5c3b532079
3
+ size 120279
data/creates/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56051ff04d2fc7a9535d7a71a0ea8243fc93344bc9b09ba5c0f451fece58fcf2
3
+ size 5339231
data/deletes/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:778a7704535a00b1cec4c721a40d416584151146292c4d16238e2f89ddd07c43
3
+ size 250206
data/forks/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bf31abd91f26ad17d6d2e719727f43ffb5136804304d98fa1ae95e5d9e1b1b6
3
+ size 456749
data/issue_comments/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:177bdccb5fd52069b96691dd2543e587b8863b48e9c3fecfae84cb2c0a8d9d7a
3
+ size 1079214
data/issues/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c24869da3d45ff9071bd3a821c01f93e5f9093a81c5a7541cb3b4d8827c988e
3
+ size 691334
data/public_events/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea3c043f6b379e954081d4ad275b22104e89c81e553d917daf8b7856c6a67dcb
3
+ size 18117
data/pull_requests/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94526190c9c11c057e352fedcd9c272c73c129c557a5b08c0bc3e3ac5a59bbd9
3
+ size 3984268
data/pushes/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc32150b140d860131f6eace89907780983b451716c09dbe3a918a4ef756c9dc
3
+ size 38845298
data/stars/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38556d05d035fb1d0cc58b92a9c9bbd91e7c7cf508df9608a34e2a9dc67aa982
3
+ size 1927058
data/wiki_pages/2014/11/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:084e4ab02db937085c8077fa53d002f9ad7f87479e1481dc16d394408b03199d
3
+ size 302782
stats.csv CHANGED
@@ -1332,6 +1332,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1332
  2014-11-02,347558,1519,189061,18353,26261,13352,0,3212,31605,11700,40194,4967,994,2142,3843,0,355,0,187644119,94.1,36237975,47.1,94.1,87.1
1333
  2014-11-03,467851,2827,235811,24524,43962,22807,0,8559,40930,15888,54053,8501,1194,3293,4993,0,509,0,265276053,118.7,49526280,55.1,118.7,28.0
1334
  2014-11-04,495701,2642,249445,27384,46952,23460,0,8042,42957,16919,58609,8821,1353,3439,5178,0,500,0,277072004,109.5,50959628,58.8,109.5,24.9
1335
- 2014-11-05,481983,2827,241706,25426,46232,22923,0,7654,41518,15987,58818,8340,1160,3593,5305,0,494,0,270917924,111.7,50334159,43.9,111.7,0.0
 
1336
  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
1337
  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
 
1332
  2014-11-02,347558,1519,189061,18353,26261,13352,0,3212,31605,11700,40194,4967,994,2142,3843,0,355,0,187644119,94.1,36237975,47.1,94.1,87.1
1333
  2014-11-03,467851,2827,235811,24524,43962,22807,0,8559,40930,15888,54053,8501,1194,3293,4993,0,509,0,265276053,118.7,49526280,55.1,118.7,28.0
1334
  2014-11-04,495701,2642,249445,27384,46952,23460,0,8042,42957,16919,58609,8821,1353,3439,5178,0,500,0,277072004,109.5,50959628,58.8,109.5,24.9
1335
+ 2014-11-05,481983,2827,241706,25426,46232,22923,0,7654,41518,15987,58818,8340,1160,3593,5305,0,494,0,270917924,111.7,50334159,43.9,111.7,36.8
1336
+ 2014-11-06,494006,2929,245730,27677,49665,23926,0,7406,41835,16856,57996,8781,1312,3479,5857,0,557,0,279731809,120.0,53014536,40.5,120.0,0.0
1337
  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
1338
  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