tamnd commited on
Commit
d9ba2fa
·
verified ·
1 Parent(s): 06d83de

Add 2015-04-09 — 231.8K 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-08** (1,475 days), totaling **302,598,519 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 103.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 22.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
 
@@ -139,7 +139,7 @@ duckdb.sql("""
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
- 2015 █████████░░░░░░░░░░░░░░░░░░░░ 41.3M
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 | 85 | 41,292,841 | 485,798 | 13.3 GB | 6.8 GB | 56m43s | 2h11m | 2h02m |
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 █████████░░░░░░░░░░░░░░░░░░░░░ 20.3M
164
  ```
165
 
166
 
@@ -204,7 +204,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
- 2015 ███████████░░░░░░░░░░░░░░░░░░░ 2.0M
208
  ```
209
 
210
 
@@ -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.7M
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 | 151,595,551 | 50.1% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 17,177,706 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 26,805,765 | 8.9% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 12,800,308 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 3,339,338 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 27,891,335 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 10,569,564 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 37,936,198 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 4,389,395 | 1.5% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 523,195 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,602,745 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,428,481 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 357,099 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 284,762 | 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-11** (1,478 days), totaling **303,426,450 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 103.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 23.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
 
 
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
+ 2015 █████████░░░░░░░░░░░░░░░░░░░░ 42.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 | 88 | 42,120,772 | 478,645 | 13.5 GB | 6.9 GB | 57m18s | 2h12m | 2h04m |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
164
  ```
165
 
166
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 ███████████░░░░░░░░░░░░░░░░░░░ 2.1M
208
  ```
209
 
210
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 █████████░░░░░░░░░░░░░░░░░░░░ 3.8M
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 151,876,246 | 50.1% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 17,229,387 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 26,902,315 | 8.9% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 12,851,671 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,354,968 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 27,987,262 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 10,604,874 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 38,091,525 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 4,408,242 | 1.5% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 526,219 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,608,559 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,439,322 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 363,064 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 285,719 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3b6eeb62aebce9053139f74f17c7f9a14a3dc7acf467d6555cb48b742a03f32
3
+ size 363104
data/creates/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8916411e2f0ac59f10d1b014fdcbcad7cbbb69685e0491d623ce27cc9df1ba7
3
+ size 2298684
data/deletes/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a6480fb976f7fab96a835a1c74926556c563207cad537805554fcb4bf3b6707
3
+ size 298061
data/forks/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef898a7aea73d1a4f845a0c1fb0ff023b699b8185c387ba2a6b5b5a169b5d6f8
3
+ size 1724086
data/issue_comments/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b2537a186805a12ec172b3af6d4420ad68b8fb059b2248ea205c98a9e4b37ec
3
+ size 7712001
data/issues/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e64fbae2d6409cffdd48860f147e8fea8762c89a29b271f81004064a9ffccba8
3
+ size 5325658
data/members/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66284173e53c8f0cfbd3ed5a25dceb4f6b827598cf3803d542e27ecc8bb51a9e
3
+ size 99268
data/pr_review_comments/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88439d2c839b08e99e4b40c18637539963a3923df72b6df9efd2263e3c3b7c08
3
+ size 2546926
data/public_events/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5ff0f6eb1fd8c375a37f7b99d33f5abdaa0dad9ee65161758ecbc5054150344
3
+ size 20055
data/pull_requests/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f3c0243bd2660fb711e85f3f3331e7cc3c37f8ab10b815b9c63a7ec6fe47bc9
3
+ size 4181174
data/pushes/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3cf43f7eada3581eb6a424b7eba1dac959e6d657f13e6b1893fe190aa4a6206
3
+ size 9363456
data/releases/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63c85f80abb5c3ec4521a38484d1b02ee88b70d39cec6d8f7d5d87408d167b76
3
+ size 215393
data/stars/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:199a83045d2989292b3509ff45e0abf1fde6152fdc61772715194372d3438e9d
3
+ size 1465524
data/wiki_pages/2015/04/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9498e1e4d3300d4cc4f69d47987e9500b663e168f099e59aeceefc8ccd4b8e49
3
+ size 278662
stats.csv CHANGED
@@ -1473,4 +1473,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1473
  2015-04-05,348600,0,183361,15287,24564,13968,0,3072,31719,10521,50458,6685,1036,1964,4184,1439,342,0,111492835,41.0,56998785,70.7,41.0,40.5
1474
  2015-04-06,449814,0,224484,21021,39585,21373,0,6858,39055,13856,62605,8857,1384,2735,4975,2535,491,0,161409612,74.2,78964033,105.8,74.2,74.9
1475
  2015-04-07,649106,0,313256,31015,61404,33488,0,11601,57058,21157,90438,12744,1903,3914,6743,3757,628,0,243972345,132.8,113537629,54.5,132.8,172.5
1476
- 2015-04-08,613270,0,300831,28663,57253,31501,0,10782,55294,21196,80339,11631,1702,4246,5996,3297,539,0,228865964,112.2,107297291,49.4,112.2,0.0
 
 
 
 
1473
  2015-04-05,348600,0,183361,15287,24564,13968,0,3072,31719,10521,50458,6685,1036,1964,4184,1439,342,0,111492835,41.0,56998785,70.7,41.0,40.5
1474
  2015-04-06,449814,0,224484,21021,39585,21373,0,6858,39055,13856,62605,8857,1384,2735,4975,2535,491,0,161409612,74.2,78964033,105.8,74.2,74.9
1475
  2015-04-07,649106,0,313256,31015,61404,33488,0,11601,57058,21157,90438,12744,1903,3914,6743,3757,628,0,243972345,132.8,113537629,54.5,132.8,172.5
1476
+ 2015-04-08,613270,0,300831,28663,57253,31501,0,10782,55294,21196,80339,11631,1702,4246,5996,3297,539,0,228865964,112.2,107297291,49.4,112.2,158.6
1477
+ 2015-04-09,231792,0,0,21526,42294,22649,0,7272,43763,15731,58541,8174,1348,2579,5025,2464,426,0,0,0.0,26528596,0.0,0.0,0.0
1478
+ 2015-04-10,533261,0,252148,25984,50090,26187,0,7872,47145,17632,83207,9739,1547,3014,5168,3064,464,0,193813257,64.5,91219706,35.4,64.5,0.0
1479
+ 2015-04-11,62878,0,28547,4171,4166,2527,0,486,5019,1947,13579,934,129,221,648,437,67,0,0,0.0,9797097,0.0,0.0,0.0