tamnd commited on
Commit
2116d8d
·
verified ·
1 Parent(s): 2f6e47c

Add 2015-03-12 — 632.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-03-11** (1,452 days), totaling **291,326,254 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 100.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 21.1 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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 30.0M
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 | 62 | 30,020,576 | 484,202 | 10.4 GB | 5.0 GB | 44m15s | 1h46m | 1h13m |
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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 15.1M
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.5M
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 ███████░░░░░░░░░░░░░░░░░░░░░░ 1.5M
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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 2.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 | 146,308,678 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 16,629,457 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 25,754,611 | 8.8% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 12,229,802 | 4.2% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 3,164,003 | 1.1% | Line-level PR comments |
647
- | `stars` | WatchEvent | 26,841,362 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 10,178,803 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 36,301,398 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 4,151,458 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 486,964 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,519,248 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,299,213 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 291,099 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 273,081 | 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-03-13** (1,454 days), totaling **292,593,884 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 100.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 21.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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 31.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 | 64 | 31,288,206 | 488,878 | 10.9 GB | 5.2 GB | 44m26s | 1h50m | 1h13m |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 ███████░░░░░░░░░░░░░░░░░░░░░░░ 15.7M
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.6M
185
  ```
186
 
187
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 ███████░░░░░░░░░░░░░░░░░░░░░░ 1.5M
208
  ```
209
 
210
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 ███████░░░░░░░░░░░░░░░░░░░░░░░ 2.8M
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 146,913,731 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 16,691,126 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 25,873,051 | 8.8% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 12,292,593 | 4.2% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 3,184,968 | 1.1% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 26,951,364 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 10,219,803 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 36,488,557 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 4,177,700 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 490,795 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,527,446 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,313,170 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 298,117 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 274,386 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d2326243b2319e9343b8ae496f502a2f108672aaea0898053ee3eef62ed62d0
3
+ size 652341
data/creates/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cffb2ab82a9f90ab880cca988ea51eedabb025c56fcbc54575872297cadc6f5f
3
+ size 3149904
data/deletes/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f12d10bae195443f0e3f73604733f4c2dc415a8af8c31310f8991e4658126e17
3
+ size 465392
data/forks/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eae716fa2d05c2539a89a71514631d329636447cc4d9e7cf42d9bfd75bd84453
3
+ size 2294984
data/issue_comments/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bf837bd22ef4431b30b113cb23cf9368de7239c863d1774781e06fbe470c07c
3
+ size 10605926
data/issues/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:721565a730491e1b19183da506b34a1b6ead2ed78e72f753f40f4bfc63450925
3
+ size 7765726
data/members/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d9d9f8c6583e2e32df582f616672b8ebc77d8808f780aff7fc1d65e2ed54190
3
+ size 141934
data/pr_review_comments/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e8c458339b5cc44f88d28fe3b7fb818f56f0b4f2e6e93fc45bdb24dda3750bb
3
+ size 3714484
data/public_events/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1254d19337ccff1e8006bf3af99259f39325f68f6b2b70788bf3bdf8f46d1e1
3
+ size 27399
data/pull_requests/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d947237f42c06e9f4c8bc70bec1fc56c72c6a71583bb266dd97b329ee26baf8d
3
+ size 5708724
data/pushes/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93edefb156766a2130eb11a466e01f11955b926b19c5eca5acb4ee4832ef390b
3
+ size 76380126
data/releases/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6809a860725a492850b0e827b61ae1160922ea1ad3aebe403e1f525f3fa39fc
3
+ size 264012
data/stars/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27c49d0377f32a63393304aeee41f3e8fd3d9a24deaa62acc7e4d91479b10b91
3
+ size 1852504
data/wiki_pages/2015/03/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:814696edfa172e9e1e8eb0380bb964bc9b4ec0deeabf889803f4d8fa5a9d6519
3
+ size 448953
stats.csv CHANGED
@@ -1451,3 +1451,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1451
  2015-03-09,602057,0,301873,28411,55517,30475,0,10130,51939,19566,75916,12390,1777,4174,5862,3396,631,0,225563835,110.2,106997015,0.0,110.2,102.9
1452
  2015-03-10,606881,0,306839,28593,57646,31549,0,11312,51146,19474,70639,13338,1792,4037,6300,3590,626,0,233470594,138.7,110789510,63.2,138.7,111.7
1453
  2015-03-11,630539,0,318026,30560,61531,32199,0,11546,53786,20696,71872,13449,1873,4750,6129,3484,638,0,241363601,115.7,113335334,59.5,115.7,0.0
 
 
 
1451
  2015-03-09,602057,0,301873,28411,55517,30475,0,10130,51939,19566,75916,12390,1777,4174,5862,3396,631,0,225563835,110.2,106997015,0.0,110.2,102.9
1452
  2015-03-10,606881,0,306839,28593,57646,31549,0,11312,51146,19474,70639,13338,1792,4037,6300,3590,626,0,233470594,138.7,110789510,63.2,138.7,111.7
1453
  2015-03-11,630539,0,318026,30560,61531,32199,0,11546,53786,20696,71872,13449,1873,4750,6129,3484,638,0,241363601,115.7,113335334,59.5,115.7,0.0
1454
+ 2015-03-12,632066,0,313601,29973,58965,32295,0,10969,56108,20930,77865,14001,2017,4338,6639,3694,671,0,238978417,119.1,113472409,5.6,119.1,0.0
1455
+ 2015-03-13,635564,0,291452,31696,59475,30496,0,9996,53894,20070,109294,12241,1814,3860,7318,3324,634,0,230858974,115.2,107960583,5.5,115.2,0.0