tamnd commited on
Commit
3f9ec93
·
verified ·
1 Parent(s): 5af9462

Add 2015-02-15 — 369.5K 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-14** (1,432 days), totaling **280,957,853 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 96.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 19.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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 19.7M
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 | 42 | 19,652,175 | 467,908 | 6.9 GB | 3.3 GB | 30m40s | 1h11m | 49m41s |
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 974.6K
185
  ```
186
 
187
 
@@ -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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 960.4K
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
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 | 141,105,124 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 16,054,086 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 24,694,492 | 8.8% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 11,730,096 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 3,006,045 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 25,984,280 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 9,841,926 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 35,098,059 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,944,532 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 454,706 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,450,567 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,199,320 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 234,826 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 262,717 | 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-15** (1,433 days), totaling **281,327,397 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 19.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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.0M
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 | 43 | 20,021,719 | 465,621 | 7.0 GB | 3.3 GB | 31m14s | 1h11m | 50m09s |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 10.1M
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 991.5K
185
  ```
186
 
187
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 975.6K
208
  ```
209
 
210
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.9M
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 141,304,904 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 16,071,046 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 24,723,089 | 8.8% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 11,745,361 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,009,504 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 26,018,471 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 9,853,730 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 35,141,943 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,951,198 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 455,997 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,452,599 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,202,961 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 236,453 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 263,064 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4552006f9b4bacd6ef333299beda5edb6a58d7f14980d056fb196d58b00bfb34
3
+ size 287977
data/creates/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82bb181f6411a4deff195df2f62e938b34a8a375c70c9f2eee7b41709d41b3e2
3
+ size 1804068
data/deletes/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8248e7e14cb665675be3c91800f632c76ab10644828fa390e5230c2df593f647
3
+ size 222700
data/forks/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb5a52c6a9d98b92c79f395b17967d962fe4f8f0f45a357b6d4c073df1345465
3
+ size 1252865
data/issue_comments/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c802bbc3698923d954baf6df201d1832582f39ae4b9eb41682dd6dd079711bcb
3
+ size 5284935
data/issues/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6113facb65f8666f00874821e110738ad5a954ad1ac46f69482fb92e667d83b
3
+ size 3882145
data/members/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1d5b0bcc5ec5422f1490adf5a5622e6ac52ce78a551248adc4ffda74a3406d5
3
+ size 64574
data/pr_review_comments/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f63b9c0f772c362b124d6a5698fb657d88617ce10c61cdbcaec933334606e038
3
+ size 1053221
data/public_events/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:765a0b214c3e10e7309deb00ecbd3e0a48f9a3e409e7c8ee5f4498f0d0b84262
3
+ size 16295
data/pull_requests/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f2a652ced43f4fc4bf3d1aecfa7abbd0fd5aef6b060e318cf1d291f43b1ad68
3
+ size 2780087
data/pushes/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7f4825d79648d5e3b680fd286437dd85dc962cabb923bc0c280358004db9d0f
3
+ size 44651812
data/releases/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:367768eaf438574967dd15c4546aeb62ad47f9e765746e19242e5b88a2844f57
3
+ size 204871
data/stars/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b14e82f9cdef9776431fb5e28a4e051991bc1c574c40df3720c8cac730f05e3
3
+ size 1143509
data/wiki_pages/2015/02/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87a97c8d4edc4490a7a169c4a38f857d58b0901cb65c7f6862e665f29e4032a5
3
+ size 206685
stats.csv CHANGED
@@ -1430,4 +1430,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1430
  2015-02-11,562266,0,279259,28160,55233,29204,0,10504,49503,18482,64659,12821,1730,3818,5299,3022,572,0,217673282,125.6,101944191,30.0,125.6,81.8
1431
  2015-02-12,584187,0,289487,28324,58414,30666,0,10998,49903,19736,67545,12848,1737,4111,6668,3208,542,0,226282561,133.7,105067325,54.5,133.7,112.1
1432
  2015-02-13,552053,0,275936,27901,54445,28649,0,9928,46214,17703,65043,11549,1763,3739,5721,2972,490,0,212094099,123.1,98969177,29.7,123.1,36.0
1433
- 2015-02-14,330288,0,176417,14681,26420,14385,0,3654,29927,10820,39135,5982,1072,1877,3820,1775,323,0,114486279,53.8,57717741,27.2,53.8,0.0
 
 
1430
  2015-02-11,562266,0,279259,28160,55233,29204,0,10504,49503,18482,64659,12821,1730,3818,5299,3022,572,0,217673282,125.6,101944191,30.0,125.6,81.8
1431
  2015-02-12,584187,0,289487,28324,58414,30666,0,10998,49903,19736,67545,12848,1737,4111,6668,3208,542,0,226282561,133.7,105067325,54.5,133.7,112.1
1432
  2015-02-13,552053,0,275936,27901,54445,28649,0,9928,46214,17703,65043,11549,1763,3739,5721,2972,490,0,212094099,123.1,98969177,29.7,123.1,36.0
1433
+ 2015-02-14,330288,0,176417,14681,26420,14385,0,3654,29927,10820,39135,5982,1072,1877,3820,1775,323,0,114486279,53.8,57717741,27.2,53.8,28.6
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,0.0