tamnd commited on
Commit
2a36677
·
verified ·
1 Parent(s): 9087bf4

Add 2014-11-12 — 478.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,342 days), totaling **240,710,054 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 79.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.0 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,650,362 events in 85 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 216.2K
@@ -81,7 +81,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
81
  04:00 ███████████████████████████░░░ 237.8K
82
  05:00 ██████████████████████████████ 258.6K
83
  06:00 ████████████████████████████░░ 246.3K
84
- 07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
85
  08:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
86
  09:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
87
  10: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,640,364 events** in 4,076 blocks.
104
 
105
 
106
  ### Live event schema
@@ -137,8 +137,8 @@ duckdb.sql("""
137
  ```
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ████████████░░░░░░░░░░░░░░░░░░ 42.5M
140
- 2013 █████████████████████░░░░░░░░ 76.2M
141
- 2014 ███████████████████��██████████ 103.5M
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 | 298 | 103,473,941 | 347,227 | 40.7 GB | 9.6 GB | 3h29m | 19h07m | 4h26m |
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 ██████████████████████████████ 52.4M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -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,904,986 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,591,880 | 5.6% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,059,636 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,853,052 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,403,521 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,391,803 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,503,688 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,332,481 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,218,742 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 337,036 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,178,673 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,777,484 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 222,545 | 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,343 days), totaling **241,188,014 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 79.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.1 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,670,912 events in 86 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 216.2K
 
81
  04:00 ███████████████████████████░░░ 237.8K
82
  05:00 ██████████████████████████████ 258.6K
83
  06:00 ████████████████████████████░░ 246.3K
84
+ 07:00 ██░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.6K
85
  08:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
86
  09:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
103
+ Live capture spans **2 days** (2026-03-28 → 2026-03-29) — **7,660,914 events** in 4,077 blocks.
104
 
105
 
106
  ### Live event schema
 
137
  ```
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ████████████░░░░░░░░░░░░░░░░░░ 42.5M
140
+ 2013 █████████████████████░░░░░░░░ 76.2M
141
+ 2014 █████████████████████████████ 104.0M
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 | 299 | 103,951,901 | 347,665 | 40.9 GB | 9.6 GB | 3h30m | 19h09m | 4h27m |
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 ██████████████████████████████ 52.7M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 121,140,710 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,616,609 | 5.6% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,105,898 | 8.8% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,875,945 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,411,699 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,439,232 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,519,847 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,387,444 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,226,900 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 338,379 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,182,057 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,783,044 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 223,055 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:196c4ae88e3ca51d46a911a3d217d9b71df60a011e27bd96873e35c2251e325d
3
+ size 117145
data/creates/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3e27d3ee6c79a6198608dc088164ee8ee1174c2261969329e095548bb3670e2
3
+ size 5350788
data/deletes/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f5e88b76227c3b07a76874d1324227037d5335c7661613607e02eefab62134a
3
+ size 239720
data/forks/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae3e2c887d0c92c6d569ad71c6b0a2d114a26d077fa8defe8045ec63a07a6e85
3
+ size 434799
data/issue_comments/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c74ea85ca70862f481da8d07f61d341b905e60d4d3caa13af9103ae4dc2674ce
3
+ size 1130634
data/issues/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2356317aaaadbb0d5688774c26ded54ba32dd579783c9a416b83a4a41680fcb
3
+ size 647578
data/public_events/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea1d05176ebe6dd80ba17ed016e36a1a2fc62ed2df6bd08def6dfd06b5907cd0
3
+ size 18003
data/pull_requests/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fa79ff46bd11aa40680c107b901bc48edb3305648c253b12f7012cae52bcb96
3
+ size 3934611
data/pushes/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d71c631c6b9a4432ed5c1545932dbeb793836488823a4d08dd22350a3845587
3
+ size 36672200
data/stars/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afd50ac0a2f7745a2147847721c8475dc554bff781332eea973c9e5a6a9c038f
3
+ size 1974737
data/wiki_pages/2014/11/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d5fe38daf3359b139e6a3799bafa69d72a2270def3f39301212e8279c6227f6
3
+ size 294785
stats.csv CHANGED
@@ -1338,6 +1338,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,52.9
1340
  2014-11-10,487220,2896,247164,24827,45830,24030,0,8301,41109,15703,56989,9427,1451,3387,5615,0,491,0,277823493,129.5,51906986,55.6,129.5,53.9
1341
- 2014-11-11,502755,2885,250071,29193,50685,23272,0,8088,42361,16635,58283,10949,1329,3594,4907,0,503,0,282512454,136.0,54252927,57.7,136.0,0.0
 
1342
  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
1343
  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
 
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,52.9
1340
  2014-11-10,487220,2896,247164,24827,45830,24030,0,8301,41109,15703,56989,9427,1451,3387,5615,0,491,0,277823493,129.5,51906986,55.6,129.5,53.9
1341
+ 2014-11-11,502755,2885,250071,29193,50685,23272,0,8088,42361,16635,58283,10949,1329,3594,4907,0,503,0,282512454,136.0,54252927,57.7,136.0,33.4
1342
+ 2014-11-12,477960,2668,235724,24729,46262,22893,0,8178,47429,16159,54963,8158,1343,3384,5560,0,510,0,272938545,129.9,50815000,55.8,129.9,0.0
1343
  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
1344
  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