tamnd commited on
Commit
b95b3d6
·
verified ·
1 Parent(s): f569c4a

Add 2015-02-13 — 552.1K 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-12** (1,430 days), totaling **280,075,512 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 19.2 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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.8M
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 | 40 | 18,769,834 | 469,245 | 6.6 GB | 3.1 GB | 29m44s | 1h08m | 47m13s |
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.4M
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 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 932.0K
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 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 917.3K
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.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 | 140,652,771 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 16,011,504 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 24,613,627 | 8.8% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 11,687,062 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,992,463 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 25,908,139 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 9,813,403 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 34,993,881 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,927,001 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 451,871 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,444,951 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,189,779 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 230,079 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 261,904 | 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-13** (1,431 days), totaling **280,627,565 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.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 19.3 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 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 19.3M
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 | 41 | 19,321,887 | 471,265 | 6.8 GB | 3.2 GB | 30m13s | 1h10m | 49m05s |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.7M
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 959.9K
185
  ```
186
 
187
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 946.0K
208
  ```
209
 
210
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 140,928,707 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 16,039,405 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 24,668,072 | 8.8% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 11,715,711 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,002,391 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 25,954,353 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 9,831,106 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 35,058,924 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,938,550 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 453,634 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,448,690 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,195,500 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 233,051 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 262,394 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9dffa77b8dbf0c752d9f9c546a0ecc4d11c7b75793c36b5e865980655a96dd2e
3
+ size 483477
data/creates/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce53cc7299960fc638b2a768cea6258544a14dcb662b008494f6938335d44805
3
+ size 2667072
data/deletes/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc78bc3affe1074f9428f219c064c341ce5734573c108386cfc094ef300feb5f
3
+ size 395614
data/forks/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54a725ce45c04031858a2c116b80573b22beca9ae75ddf791a627fd9acd7ccc9
3
+ size 1855344
data/issue_comments/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d6069c04ff274e10c1c3ddfd21ec3d86285702d6ec491c72556af1ac388873e
3
+ size 10003283
data/issues/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9dc6770ced98abd2e50d9ef7319202c74332f7b40a69477befd6c5396502bb8
3
+ size 6441065
data/members/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:997655a3434e3dc444b44882a48a8db7eec1e60250976ae69a17961d91f118f5
3
+ size 117158
data/pr_review_comments/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bebe82523011e80fc1ddd6c594ae78fc58ebe977c93589d089e2f5cb6aa1657
3
+ size 3387634
data/public_events/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d73d3cc385fb3ed5eea745e269f694c4c2e79a3dd943a0a1e3b34ba331725ba0
3
+ size 21828
data/pull_requests/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b9c8f45159f7b1c02d612a9180e622516463c63210ec20fb62e75ae878a9e83
3
+ size 5114034
data/pushes/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0e349bee8f78fcf6d2d8d0e22fb3ba2504535424098e37c6f1c6523e56a6d01
3
+ size 66266544
data/releases/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b25ef4ab2c29b8c0c571407b9f4d7cacf0f0bfa12265797e2207f51c2dffb268
3
+ size 255711
data/stars/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97a2242effe4e0c66651c13c9061c697844902e6853f8081528bc766d2f99d04
3
+ size 1561761
data/wiki_pages/2015/02/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55a7271a242c2acadbda0dedb7c04cc58d74862e56f1f570136b1da0c1d931e6
3
+ size 398652
stats.csv CHANGED
@@ -1428,4 +1428,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1428
  2015-02-09,539269,0,269003,26412,52333,26368,0,8683,49288,18505,63497,11255,1588,3551,5150,3000,636,0,202638128,137.1,95815780,41.9,137.1,137.1
1429
  2015-02-10,566990,0,280970,28747,56838,28845,0,9756,52663,18757,64368,10890,1805,3872,5514,3436,529,0,218763245,139.9,101265013,44.8,139.9,84.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,0.0
 
 
1428
  2015-02-09,539269,0,269003,26412,52333,26368,0,8683,49288,18505,63497,11255,1588,3551,5150,3000,636,0,202638128,137.1,95815780,41.9,137.1,137.1
1429
  2015-02-10,566990,0,280970,28747,56838,28845,0,9756,52663,18757,64368,10890,1805,3872,5514,3436,529,0,218763245,139.9,101265013,44.8,139.9,84.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,0.0