tamnd commited on
Commit
cb92715
·
verified ·
1 Parent(s): 835f4d2

Add 2014-10-08 — 463.9K 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,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
 
@@ -71,7 +71,7 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-29** — 1,426,680 events in 74 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 216.2K
@@ -80,7 +80,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
80
  03:00 ██████████████████████████░░░░ 230.2K
81
  04:00 ███████████████████████████░░░ 237.8K
82
  05:00 ██████████████████████████████ 258.6K
83
- 06:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22.6K
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
86
  09:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -100,7 +100,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
103
- Live capture spans **2 days** (2026-03-28 → 2026-03-29) — **7,416,682 events** in 4,065 blocks.
104
 
105
 
106
  ### Live event schema
@@ -135,10 +135,10 @@ duckdb.sql("""
135
  ## Events per year
136
 
137
  ```
138
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████���██████████████░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 90.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 | 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,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.6M
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.1M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
@@ -224,7 +224,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
224
  ```
225
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ██████████████░░░░░░░░░░░░░░░░ 4.0M
227
- 2013 █████████████████████████░░░░ 7.1M
228
  2014 ██████████████████████████████ 8.2M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
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
 
 
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,312 days), totaling **227,837,968 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.3 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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-29** — 1,447,001 events in 75 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 216.2K
 
80
  03:00 ██████████████████████████░░░░ 230.2K
81
  04:00 ███████████████████████████░░░ 237.8K
82
  05:00 ██████████████████████████████ 258.6K
83
+ 06:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 43.0K
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
86
  09:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
103
+ Live capture spans **2 days** (2026-03-28 → 2026-03-29) — **7,437,003 events** in 4,066 blocks.
104
 
105
 
106
  ### Live event schema
 
135
  ## Events per year
136
 
137
  ```
138
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████���██████████████░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 90.6M
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 | 268 | 90,601,855 | 338,066 | 34.0 GB | 8.3 GB | 3h03m | 18h13m | 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.8M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
179
  ```
180
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
  2012 ██████████████░░░░░░░░░░░░░░░░ 2.4M
182
+ 2013 █████████████████████████░░░░ 4.4M
183
  2014 ██████████████████████████████ 5.1M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
 
224
  ```
225
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ██████████████░░░░░░░░░░░░░░░░ 4.0M
227
+ 2013 █████████████████████████░░░░ 7.1M
228
  2014 ██████████████████████████████ 8.2M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 114,302,385 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 12,924,962 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 19,911,138 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,278,109 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,231,237 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 21,277,798 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,077,110 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 28,725,841 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,001,811 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 303,441 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,090,386 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,640,854 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 209,676 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:374af7a18b9a5a4872d5c676290075f35c362e358372105e8b1e5a2f729fa5d2
3
+ size 112528
data/creates/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a61fd864f10eadc95392238d5796cbacd191097f94e6f947a41efa3d32a632d
3
+ size 2673185
data/deletes/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1922f6eb98e5fea22a2aa6e2bed3ad173025a70447052fc2f7c818b6c377ea65
3
+ size 238156
data/forks/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffef01d761a1257f4d7313e5cb719828ae32c2f85241d99b0485d12ee9bd58f3
3
+ size 424206
data/issue_comments/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb8aba95b1b989d90b463a06bfdcda83b80f521bb45b9e3036aa0da44a77e281
3
+ size 1139198
data/issues/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bc31614d87922fe7368f180d0e4006f3cb6d69d5867be6d1b5216a027936328
3
+ size 607696
data/public_events/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7b4ccd6d075c514e56dbc718a07328afe7411cdb410b0dbd3fe9f88f3534945
3
+ size 18619
data/pull_requests/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8c92f5d34cd99a31bc0914927d9753513947d57bfeafa785972e84af739b887
3
+ size 3950366
data/pushes/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfe0d0c223da27bc8a1acac8d82f820861567a8e293ad860d7f58de11c5957d9
3
+ size 36895878
data/stars/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f99599f8de1374ea97f40fa399f2ca4ceee85207cbf0a6b0fd3b10fac315078b
3
+ size 1822904
data/wiki_pages/2014/10/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db775468f962b335e7f1293267b920f8e28bbc678e95407bf5ead523a12600ac
3
+ size 353224
stats.csv CHANGED
@@ -1307,6 +1307,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
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,45.3
1311
+ 2014-10-08,463901,2354,236116,23251,43485,22433,0,7179,39897,16160,55118,8118,1261,3166,4869,0,494,0,259255403,123.8,48235960,65.6,123.8,0.0
1312
  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
1313
  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