tamnd commited on
Commit
cda1563
·
verified ·
1 Parent(s): 860bbcd

Add 2015-02-19 — 555.6K events, 14 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-02-18** (1,436 days), totaling **282,862,273 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 97.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 19.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** — 2,215,796 events in 113 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 216.2K
@@ -83,7 +83,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
83
  06:00 ████████████████████████████░░ 246.3K
84
  07:00 ███████████████████████████░░░ 240.5K
85
  08:00 ████████████████████████████░░ 246.9K
86
- 09:00 █████████░░░░░░░░░░░░░░░░░░░░░ 78.0K
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12: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) — **8,205,798 events** in 4,104 blocks.
104
 
105
 
106
  ### Live event schema
@@ -139,7 +139,7 @@ duckdb.sql("""
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
- 2015 █████░░░░░░░░░░░░░��░░░░░░░░░░░ 21.6M
143
  ```
144
 
145
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -148,7 +148,7 @@ duckdb.sql("""
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 | 348 | 124,581,314 | 357,992 | 51.9 GB | 11.8 GB | 4h13m | 20h37m | 5h05m |
151
- | 2015 | 46 | 21,556,595 | 468,621 | 7.5 GB | 3.6 GB | 33m43s | 1h16m | 54m02s |
152
 
153
 
154
  ### Pushes per year
@@ -160,7 +160,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
- 2015 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 10.8M
164
  ```
165
 
166
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 142,084,307 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 16,147,276 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 24,880,029 | 8.8% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 11,824,179 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 3,035,806 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 26,140,621 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 9,898,479 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 35,317,888 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,984,565 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 461,158 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,462,973 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,218,903 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 244,359 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 264,653 | 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-02-19** (1,437 days), totaling **283,417,856 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 97.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 19.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
 
 
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** — 2,237,824 events in 114 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 216.2K
 
83
  06:00 ████████████████████████████░░ 246.3K
84
  07:00 ███████████████████████████░░░ 240.5K
85
  08:00 ████████████████████████████░░ 246.9K
86
+ 09:00 ███████████░░░░░░░░░░░░░░░░░░░ 100.0K
87
  10:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
88
  11:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
89
  12:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
103
+ Live capture spans **2 days** (2026-03-28 → 2026-03-29) — **8,227,826 events** in 4,105 blocks.
104
 
105
 
106
  ### Live event schema
 
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
+ 2015 █████░░░░░░░░░░░░░░░░░░░░░░░░ 22.1M
143
  ```
144
 
145
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
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 | 348 | 124,581,314 | 357,992 | 51.9 GB | 11.8 GB | 4h13m | 20h37m | 5h05m |
151
+ | 2015 | 47 | 22,112,178 | 470,471 | 7.7 GB | 3.7 GB | 34m45s | 1h18m | 54m57s |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 11.1M
164
  ```
165
 
166
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 142,361,845 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 16,176,901 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 24,939,851 | 8.8% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 11,853,485 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,046,560 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 26,183,172 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 9,915,045 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 35,381,117 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,995,616 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 462,967 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,467,281 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,224,400 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 247,325 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 265,214 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5ea5f8485a969b17dcb60a7bfba5fccaf549505da793ad5dcb22beb179d346d
3
+ size 529963
data/creates/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57aa00c69d3dadb279d977c7902523f9f30cda8acd07ce9193d23973001fe567
3
+ size 2644818
data/deletes/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54ea8e2708b0b9bd6c18705f81feac3d02df0980cfe28cf6c1f14be5cc1de3a8
3
+ size 393030
data/forks/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63f97a3d0840aee1c588d7d05e9a32ddf9ccf0c4c33732495695b906f18c920c
3
+ size 1843498
data/issue_comments/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51739f498287aa71faa442d594ad25bd51414c1c0c31b75d0d617fa93f02be2d
3
+ size 10739543
data/issues/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f5dc473449cf5424689c7c7ca59fd714ee6ce60233b693a6e33b54e598378cb
3
+ size 6978515
data/members/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efca8c1d19e43580874ae0374267912a9bb9f8c2f3deff8690f4af41bec829dd
3
+ size 116275
data/pr_review_comments/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ce6c02df6e1e28ee2ebf306809e2b627656334ad8b98842b102a033c38b21c9
3
+ size 3528726
data/public_events/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfb95a8bcd22832abca45419982b93173df2237b31e65e9f9597929c1bbafa19
3
+ size 25782
data/pull_requests/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5754b3394f52ff96d0ba873f45bb301318824bd9798a417280872eb93ee45f51
3
+ size 5272930
data/pushes/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4dc8e2c7425e3f534cfb7c3fc4583afa75ce20f447c08594d1307cf8590d08a
3
+ size 67708820
data/releases/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ff9befef447663cd21daa8aca9f70f09d56244691a579f8bbb45cc01d849431
3
+ size 269058
data/stars/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d06b874258dbca2d483e42bc2170f4e2734f26a6c92a523cab7d5542cbac6a85
3
+ size 1447796
data/wiki_pages/2015/02/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c851fbdefc8e2b9e162f9606aef63cb52838b80fe301808552cde194d3d976b
3
+ size 315777
stats.csv CHANGED
@@ -1434,4 +1434,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1434
  2015-02-15,369544,0,199780,16960,28597,15265,0,3459,34191,11804,43884,6666,1291,2032,3641,1627,347,0,123581094,55.8,62855744,33.8,55.8,116.2
1435
  2015-02-16,529458,0,270456,25382,52229,26612,0,7923,45391,15892,60235,11249,1756,3417,5543,2802,571,0,196980033,93.0,93725400,39.0,93.0,82.2
1436
  2015-02-17,539245,0,271405,28130,58678,27349,0,9598,42420,15549,61247,11214,1720,3505,5210,2669,551,0,208488601,106.6,97876719,68.1,106.6,34.5
1437
- 2015-02-18,466173,0,237542,22718,46033,24857,0,8781,34339,13308,54463,10904,1685,3452,5189,2435,467,0,181564100,96.9,85123681,41.3,96.9,0.0
 
 
1434
  2015-02-15,369544,0,199780,16960,28597,15265,0,3459,34191,11804,43884,6666,1291,2032,3641,1627,347,0,123581094,55.8,62855744,33.8,55.8,116.2
1435
  2015-02-16,529458,0,270456,25382,52229,26612,0,7923,45391,15892,60235,11249,1756,3417,5543,2802,571,0,196980033,93.0,93725400,39.0,93.0,82.2
1436
  2015-02-17,539245,0,271405,28130,58678,27349,0,9598,42420,15549,61247,11214,1720,3505,5210,2669,551,0,208488601,106.6,97876719,68.1,106.6,34.5
1437
+ 2015-02-18,466173,0,237542,22718,46033,24857,0,8781,34339,13308,54463,10904,1685,3452,5189,2435,467,0,181564100,96.9,85123681,41.3,96.9,55.1
1438
+ 2015-02-19,555583,0,277538,29625,59822,29306,0,10754,42551,16566,63229,11051,1809,4308,5497,2966,561,0,219128078,123.0,101814531,61.9,123.0,0.0