tamnd commited on
Commit
9860186
·
verified ·
1 Parent(s): a3a5eb5

Add 2015-04-02 — 457.7K 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-04-01** (1,468 days), totaling **299,529,888 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 102.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 22.4 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
 
@@ -139,7 +139,7 @@ duckdb.sql("""
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
- 2015 █████████░░░░░░░░░░░░░░░░░░░░░ 38.2M
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 | 78 | 38,224,210 | 490,053 | 12.3 GB | 6.3 GB | 50m01s | 2h03m | 1h50m |
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 ████████░░░░░░░░░░░░░░░░░░░░░ 18.9M
164
  ```
165
 
166
 
@@ -181,7 +181,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
- 2015 ████████░░░░░░░░░░░░░░░░░░░░░░ 1.9M
185
  ```
186
 
187
 
@@ -226,7 +226,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
- 2015 █████████░░░░░░░░░░░░░░░░░░░░░ 3.4M
230
  ```
231
 
232
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 150,161,633 | 50.1% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 17,024,735 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 26,518,951 | 8.9% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 12,643,092 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 3,290,364 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 27,600,391 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 10,462,161 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 37,493,801 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 4,326,741 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 513,551 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,582,650 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,394,376 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 338,663 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 281,702 | 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-04-02** (1,469 days), totaling **299,987,593 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 102.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 22.4 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
 
 
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
+ 2015 █████████░░░░░░░░░░░░░░░░░░░░░ 38.7M
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 | 79 | 38,681,915 | 489,644 | 12.5 GB | 6.4 GB | 51m22s | 2h04m | 1h53m |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 ████████░░░░░░░░░░░░░░░░░░░░░ 19.1M
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 ████████░░░░░░░░░░░░░░░░░░░░░░ 2.0M
185
  ```
186
 
187
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 █████████░░░░░░░░░░░░░░░░░░░░░ 3.5M
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 150,386,564 | 50.1% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 17,046,657 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 26,561,926 | 8.9% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 12,667,075 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,298,437 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 27,640,916 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 10,477,422 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 37,553,076 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 4,335,412 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 514,945 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,585,728 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,398,442 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 341,782 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 282,134 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abf40368cad23f3c2f3e57149300e0506f0ac35cf50d39fed07a2f7a22cd3ca0
3
+ size 400763
data/creates/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f07268d3210aa0ebb255ced7c05906d6e6cfcc32db300f7959bfd428d93982d
3
+ size 2343669
data/deletes/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c7fa449c1b49eb1b1ce841a8390b035871c1415d8b70788ea584b84f51d82bc
3
+ size 314314
data/forks/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff23b3ec5955a40ab6b2c1ea4db59f0bc1ae601e387db5f39f4718d5d13891fb
3
+ size 1631845
data/issue_comments/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8298169d8aa051bef7ad4ccdce01c85265e0f737bba2691cd087b048e569c904
3
+ size 8216352
data/issues/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76e2475b1eefcadc36bc1ec9073fc4e84b3fccc8dbb0b2220553bbd6a47fd0ba
3
+ size 5167600
data/members/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfa2be9df207afd04bf27e16dbdc1ae65c7e0b789d5653ffea876328e780a377
3
+ size 105402
data/pr_review_comments/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33cfc40759e7fa363082cafc94dc763d16bd5991eee870628758717d47af3203
3
+ size 2849520
data/public_events/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aef1ba3abde2b817b1846b39adae70cdf159ec937c4abd9c3d9a277534b46f35
3
+ size 18986
data/pull_requests/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4dc5570f2ae66124f63787800debc390b1b96f1d008f5c6cbb9baed4eff1fe6
3
+ size 4431963
data/pushes/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76df790cf5813c5859bd4744e1d1b44e8ca068c38dc11850e3cc356ec268ca13
3
+ size 54550899
data/releases/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b33905a7a92ecc290e7ce4a5d55e69d8255f809a40264c133bf838e041979800
3
+ size 219083
data/stars/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f406d00cba3cb4f60145f631fa07af97091caee089734665312fdf374d2bd22
3
+ size 1378066
data/wiki_pages/2015/04/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:131f1db77f893bc2e50908817aee2bb970ef477e6e2055b0ede3bbd2e5d13233
3
+ size 313116
stats.csv CHANGED
@@ -1466,4 +1466,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1466
  2015-03-29,134440,0,70740,5614,8903,5297,0,1180,13576,4812,18787,2224,399,608,1563,616,121,0,0,0.0,22037894,0.0,0.0,81.0
1467
  2015-03-30,421650,0,202806,20804,40209,20531,0,0,40675,14253,59371,8721,1298,2784,7445,2318,435,0,0,0.0,72473605,0.0,0.0,0.0
1468
  2015-03-31,505124,0,238496,23519,47085,26212,0,9070,49435,17881,68781,10725,1494,3401,5449,3139,437,0,0,0.0,88785073,0.0,0.0,89.4
1469
- 2015-04-01,576968,0,276062,29323,56020,30164,0,9814,50543,19879,77356,12954,1810,3650,5471,3366,556,0,220274489,80.9,102510026,39.2,80.9,0.0
 
 
1466
  2015-03-29,134440,0,70740,5614,8903,5297,0,1180,13576,4812,18787,2224,399,608,1563,616,121,0,0,0.0,22037894,0.0,0.0,81.0
1467
  2015-03-30,421650,0,202806,20804,40209,20531,0,0,40675,14253,59371,8721,1298,2784,7445,2318,435,0,0,0.0,72473605,0.0,0.0,0.0
1468
  2015-03-31,505124,0,238496,23519,47085,26212,0,9070,49435,17881,68781,10725,1494,3401,5449,3139,437,0,0,0.0,88785073,0.0,0.0,89.4
1469
+ 2015-04-01,576968,0,276062,29323,56020,30164,0,9814,50543,19879,77356,12954,1810,3650,5471,3366,556,0,220274489,80.9,102510026,39.2,80.9,165.8
1470
+ 2015-04-02,457705,0,224931,21922,42975,23983,0,8073,40525,15261,59275,8671,1394,3078,4066,3119,432,0,171592317,69.4,81941578,80.8,69.4,0.0