tamnd commited on
Commit
1d63f25
·
verified ·
1 Parent(s): ee4ca87

Add 2015-01-10 — 319.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-01-09** (1,397 days), totaling **264,100,136 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 91.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 2.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 | 7 | 2,794,458 | 399,208 | 1007.7 MB | 478.1 MB | 3m17s | 11m14s | 4m54s |
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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140.5K
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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134.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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 273.8K
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 | 132,639,201 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 15,220,005 | 5.8% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 23,105,506 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,904,124 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,746,940 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 24,441,508 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 9,260,220 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 33,108,000 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,626,607 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 403,007 | 0.2% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,337,863 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 4,020,091 | 1.5% | Wiki page edits |
654
- | `members` | MemberEvent | 144,864 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 245,123 | 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-10** (1,398 days), totaling **264,419,271 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 91.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 3.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 | 8 | 3,113,593 | 389,199 | 1.1 GB | 531.2 MB | 3m53s | 12m17s | 6m08s |
152
 
153
 
154
  ### Pushes per year
 
160
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
  2014 ██████████████████████████████ 63.1M
163
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.6M
164
  ```
165
 
166
 
 
181
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ██████████████████░░░░░░░░░░░░ 4.4M
183
  2014 ██████████████████████████████ 7.3M
184
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155.7K
185
  ```
186
 
187
 
 
204
  2012 █████████░░░░░░░░░░░░░░░░░░░░░ 1.8M
205
  2013 ████████████████░░░░░░░░░░░░░░ 3.0M
206
  2014 ██████████████████████████████ 5.5M
207
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148.4K
208
  ```
209
 
210
 
 
226
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 ███████████████████░░░░░░░░░░░ 7.1M
228
  2014 ██████████████████████████████ 11.2M
229
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 303.1K
230
  ```
231
 
232
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 132,807,572 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 15,235,165 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 23,131,580 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,918,157 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,750,199 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 24,470,828 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 9,271,612 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 33,145,613 | 12.5% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,631,930 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 404,119 | 0.2% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,339,880 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 4,023,557 | 1.5% | Wiki page edits |
654
+ | `members` | MemberEvent | 146,528 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 245,454 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0a95bb7fe998ce8b665b1860447e35149cd7b6b36991a91f5de9ab5db3e6cae
3
+ size 266012
data/creates/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9d28157b3f382894f1d80aaadb9c459fc0df3d289e3b70f70a9eff3c7dd20d3
3
+ size 1610082
data/deletes/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9ce5bc5607ccab0a7ba56463020f6ef4886076fcad9b2930071e6894bc346c3
3
+ size 177139
data/forks/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcd76f47c99dcb0a2d43ac7b04c2417c7eaf50020d2b2449997c0e1e6ee45cca
3
+ size 1299428
data/issue_comments/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce623c9e8801f7c98435dc23c41c0ef998dd030c80adc2937191ce8c9238fe14
3
+ size 4883411
data/issues/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cce46cb7ff39c0c947b0d780265e1c9dd4fd692fc1123e8f615cd4357988cdb
3
+ size 3611308
data/members/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18152419150267c749e1a050061747215c24ed933f3667086261e444a6132eee
3
+ size 66026
data/pr_review_comments/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:758e631ed2498f6f5b61f02f849fbba9a0aeecc198d50180917f5c431c0dae72
3
+ size 1094962
data/public_events/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75b2831e8d24f03d203d830495404963cbca683c999acc98ef82d6d0d5e1c8fc
3
+ size 15606
data/pull_requests/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ca3f11ba8a4d48378bbfb8461f8bb652f89931ba962e01089bc253220a063ce
3
+ size 2479327
data/pushes/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf380ef85bf388b56b3a3887de2c9c36e2232561883c91bb4a553affdb7fece6
3
+ size 38767428
data/releases/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc6cf2ea9978e9c4efe2968db1130653def737fbcd07125b3c13017c31b023a6
3
+ size 165261
data/stars/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59261b3b3733a340dad0b661ef4ed60d0b535f494e1935246dbfbe2a921055ba
3
+ size 1010910
data/wiki_pages/2015/01/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:812d0b0bcaa81d812f0704359f7490939b248c3ffa27ea388fe88bb205664e0b
3
+ size 201678
stats.csv CHANGED
@@ -1395,4 +1395,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,75.6
1397
  2015-01-08,484469,0,236752,23572,48998,24199,0,8402,46094,17662,55883,9942,1511,3849,4917,2249,439,0,187180965,106.6,88139233,32.8,106.6,96.1
1398
- 2015-01-09,435155,0,215848,21394,44137,22267,0,7482,40728,15825,48461,7642,1319,3273,4411,1924,444,0,169420959,95.8,79617760,35.8,95.8,0.0
 
 
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,75.6
1397
  2015-01-08,484469,0,236752,23572,48998,24199,0,8402,46094,17662,55883,9942,1511,3849,4917,2249,439,0,187180965,106.6,88139233,32.8,106.6,96.1
1398
+ 2015-01-09,435155,0,215848,21394,44137,22267,0,7482,40728,15825,48461,7642,1319,3273,4411,1924,444,0,169420959,95.8,79617760,35.8,95.8,73.9
1399
+ 2015-01-10,319135,0,168371,15160,26074,14033,0,3259,29320,11392,37613,5323,1112,2017,3466,1664,331,0,110885233,62.9,55648578,35.6,62.9,0.0