tamnd commited on
Commit
465c16a
·
verified ·
1 Parent(s): 52c4a46

Add 2015-01-07 — 470.4K 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-01-06** (1,394 days), totaling **262,710,070 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 90.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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,7 +139,7 @@ duckdb.sql("""
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
  2014 ██████████████████████████████ 124.6M
142
- 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
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 | 4 | 1,404,392 | 351,098 | 492.9 MB | 237.8 MB | 1m31s | 6m11s | 1m37s |
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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 708.4K
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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 71.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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 64.0K
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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142.2K
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 | 131,956,315 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 15,151,119 | 5.8% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 22,964,350 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,833,765 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,722,554 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 24,309,959 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 9,209,941 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 32,950,693 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,599,993 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 398,606 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,327,387 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,005,956 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 138,644 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 243,711 | 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-01-07** (1,395 days), totaling **263,180,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 90.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.9M
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 | 5 | 1,874,834 | 374,966 | 667.6 MB | 318.2 MB | 2m08s | 7m52s | 2m02s |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 938.6K
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95.5K
185
  ```
186
 
187
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 87.9K
208
  ```
209
 
210
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186.9K
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 132,186,601 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 15,175,039 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 23,012,371 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,857,658 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,731,056 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 24,354,686 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 9,226,733 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 33,003,656 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,609,023 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 400,177 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,330,741 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,010,763 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 140,691 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 244,240 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ff67b690211b4c0c6a8a6ebdd5cf4a19d95a180bdf82d6a69526e793691bd61
3
+ size 435836
data/creates/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9515ecf9264b243a45637845fc36b3078218920c89063ef546ead5609974a5f
3
+ size 2352570
data/deletes/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:021a132f2ddbcf81e3fb498a4f3b86e6e2f8e9795ae1d2113cbbdef8a40c5114
3
+ size 314033
data/forks/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:945a5fdcbfd498fcd85b098f4c703a5a71022e179e49900b62087740930d988d
3
+ size 1732787
data/issue_comments/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8ce504c76e9e22b19d0b21cb6841c54ff9e55627d3b0834aaa9a52b90f15ace
3
+ size 8734658
data/issues/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d72c9772293899897a6518e67711fa62a9839717e7648b858169c2ad8a24349
3
+ size 5786477
data/members/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a72ad48f3df9a54de5322afa32ff6e05db7c53c0cafa386ac302fdcb98fdc0ba
3
+ size 82985
data/pr_review_comments/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12831e416a5a4da488c20aa17cde1250c5a108d38e272fac7ba11b6819c35c85
3
+ size 2847135
data/public_events/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4976f03a18221c17b5f254b338e0bba4c703bd874336ee5814bdc4d729f4fa0f
3
+ size 23949
data/pull_requests/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23695a6f079d877de738c6ef7e07c1ddca39fcd1b4679dbd346143bef01a4883
3
+ size 4409450
data/pushes/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39ea1191e2e83a6d2a7e5a330fee4c0425df44c958fadcf3c290245149cc5179
3
+ size 55525817
data/releases/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2ccaeae43d6296939e5b7715ebb2e654db0c9ccd809eb11c502ef4c014b6072
3
+ size 238338
data/stars/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd14ed63e1170c5778730706658d406ac489f2f91fec873224795a20d4c75228
3
+ size 1490332
data/wiki_pages/2015/01/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc5fbc77d79ad0bd904edbdbb812f0ba989b0810004e80b615afffa869628e07
3
+ size 286812
stats.csv CHANGED
@@ -1392,4 +1392,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1392
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1393
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
1394
  2015-01-05,451564,0,221202,23615,46073,21865,0,7247,47402,15810,48404,8514,1429,3439,4085,1984,495,0,172072316,97.1,80978386,22.7,97.1,49.5
1395
- 2015-01-06,441079,0,212605,23127,45085,21462,0,7951,44451,16984,49248,8007,1381,3503,4640,2134,501,0,170164721,94.9,79170739,48.3,94.9,0.0
 
 
1392
  2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0
1393
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
1394
  2015-01-05,451564,0,221202,23615,46073,21865,0,7247,47402,15810,48404,8514,1429,3439,4085,1984,495,0,172072316,97.1,80978386,22.7,97.1,49.5
1395
+ 2015-01-06,441079,0,212605,23127,45085,21462,0,7951,44451,16984,49248,8007,1381,3503,4640,2134,501,0,170164721,94.9,79170739,48.3,94.9,25.1
1396
+ 2015-01-07,470442,0,230286,23920,48021,23893,0,8502,44727,16792,52963,9030,1571,3354,4807,2047,529,0,183110740,100.4,84261179,37.3,100.4,0.0