tamnd commited on
Commit
39f4618
·
verified ·
1 Parent(s): 3748a2c

Add 2014-11-09 — 367.3K 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,339 days), totaling **239,352,777 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 78.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ████████████░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████████░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 102.1M
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 | 295 | 102,116,664 | 346,158 | 40.0 GB | 9.5 GB | 3h26m | 19h01m | 4h24m |
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.7M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -225,7 +225,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 █████████████░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████████░░░░░░░ 7.1M
228
- 2014 ███████████████████████���██████ 9.2M
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 | 120,208,099 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,519,704 | 5.6% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 20,937,715 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,791,793 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,384,276 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,272,974 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,458,602 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,172,893 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,193,378 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 333,135 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,169,597 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,762,487 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 221,194 | 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,340 days), totaling **239,720,079 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 78.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
 
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ████████████░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████████░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 102.5M
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 | 296 | 102,483,966 | 346,229 | 40.2 GB | 9.5 GB | 3h27m | 19h02m | 4h25m |
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.9M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 █████████████░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████████░░░░░░░ 7.1M
228
+ 2014 █████████████████████████████ 9.3M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 120,407,751 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,537,860 | 5.6% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 20,963,121 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,805,750 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,387,132 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,308,333 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,471,350 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,217,209 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,198,366 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 334,256 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,171,692 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,766,962 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 221,551 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01e41f5b2655ca60c3e5a54f44fe05a7bc8690435fe3fc7f17d1f1f6392ca1d4
3
+ size 79489
data/creates/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a6a70f883120fb0d7b1164196a7c10ccaef32091c0b78f1b503f28f67d3fe34
3
+ size 4543276
data/deletes/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da86be60a87ac15cd18af2b5a8e3c6e7bce6e8579d7e8c9f2a0be1f92d3f91ae
3
+ size 148026
data/forks/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdd1c7cfc0fc838514bf0cc283979ab08a3c3feef965c02c94793090570a1945
3
+ size 333527
data/issue_comments/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7aa18880d62e958527a18195369529f4b798fd89a1b96c91c6ba4624cd7a5d11
3
+ size 625767
data/issues/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:820435eac5a5a0651d6c76885e299a21a55083f764e608e881c01069a752d60d
3
+ size 478260
data/public_events/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d69c6541653c170b4ed1497546925dd5a7c15e48cb8391010984fcd223ad3859
3
+ size 13183
data/pull_requests/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f3ede7a0f4a922d5c5682e7c6d6febb8e86d631b77d37b64f7a7fa8b389bc1f
3
+ size 2324567
data/pushes/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ade102cf7fa52a4c27f7fb0eb7dd98d2e0897e02e06e183fd0e13d37d3ddff12
3
+ size 29377942
data/stars/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:956d06e3f6eb5a562778b2178bc22f3376879ced8ed606ebea80c1a4498aed0f
3
+ size 1624725
data/wiki_pages/2014/11/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37cf3977adbe06fedb26fde615fa89469a7cb314c9c1aa19eed5dc4c51d67202
3
+ size 327661
stats.csv CHANGED
@@ -1335,6 +1335,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,31.0
1337
  2014-11-07,435971,2852,216227,24929,45325,20576,0,6780,35554,13690,52125,8852,1161,2911,4580,0,409,0,247135737,106.0,47466768,57.7,106.0,32.2
1338
- 2014-11-08,325603,2374,176094,16659,21774,12302,0,2435,27826,11874,42325,5221,890,1852,3659,0,318,0,178040933,81.2,35255454,67.4,81.2,0.0
 
1339
  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
1340
  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
 
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,31.0
1337
  2014-11-07,435971,2852,216227,24929,45325,20576,0,6780,35554,13690,52125,8852,1161,2911,4580,0,409,0,247135737,106.0,47466768,57.7,106.0,32.2
1338
+ 2014-11-08,325603,2374,176094,16659,21774,12302,0,2435,27826,11874,42325,5221,890,1852,3659,0,318,0,178040933,81.2,35255454,67.4,81.2,24.8
1339
+ 2014-11-09,367302,1816,199652,18156,25406,13957,0,2856,35359,12748,44316,4988,1121,2095,4475,0,357,0,200099370,95.4,39876423,45.3,95.4,0.0
1340
  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
1341
  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