tamnd commited on
Commit
8736531
·
verified ·
1 Parent(s): 230f7fd

Add 2014-12-02 — 539.6K events, 11 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-03** (1,362 days), totaling **249,736,377 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 83.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.9 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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ████████████████████░░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 112.5M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
@@ -147,7 +147,7 @@ duckdb.sql("""
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
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 | 318 | 112,500,264 | 353,774 | 45.4 GB | 10.5 GB | 3h47m | 19h46m | 4h41m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -159,7 +159,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ████████████████████░░░░░░░░░░ 38.9M
162
- 2014 ██████████████████████████████ 56.9M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -178,9 +178,9 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
178
 
179
  ```
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
- 2012 ██████████░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ███████████████████��░░░░░░░░░░ 4.4M
183
- 2014 ██████████████████████████████ 6.5M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
@@ -225,7 +225,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████░░░░░░░░░ 7.1M
228
- 2014 ██████████████████████████████ 10.1M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 125,419,815 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 14,357,772 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,822,504 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,247,084 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,535,518 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 23,150,112 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,786,757 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 31,364,637 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,370,217 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 360,813 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,238,643 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,868,208 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 231,021 | 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-03** (1,363 days), totaling **250,275,977 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 84.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.0 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
 
 
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ████████████████████░░░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 113.0M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
 
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
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 | 319 | 113,039,864 | 354,356 | 45.7 GB | 10.6 GB | 3h48m | 19h48m | 4h41m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ████████████████████░░░░░░░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 57.2M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
178
 
179
  ```
180
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 982.1K
181
+ 2012 ██████████░░░░░░░░░░░░░░░░░░░ 2.4M
182
  2013 ███████████████████��░░░░░░░░░░ 4.4M
183
+ 2014 ██████████████████████████████ 6.6M
184
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
185
  ```
186
 
 
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ███████████░░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████░░░░░░░░░ 7.1M
228
+ 2014 ██████████████████████████████ 10.2M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 125,684,635 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 14,403,284 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,874,700 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,272,931 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,543,016 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 23,193,723 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,803,765 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 31,425,532 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,379,444 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 362,227 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,242,469 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,872,743 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 231,586 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b081ba1328b49c20d76b64d9ee7a3596e1c0e1f3683a2c67a392d48b125b41d8
3
+ size 128533
data/creates/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80c5277f2d13d21a29a4911681f61b14cc6853f6286339c686a519a7c05fcca4
3
+ size 8923637
data/deletes/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fe9ab284d4015064e4303d54da54e0862f00a56d2169a1bf8002304488f62b7
3
+ size 272178
data/forks/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33c5cd76a7771a0dd5b06773acc88ec81c49bbd6b40a886185239a034a910a35
3
+ size 445963
data/issue_comments/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c56d67c57fee84f58f98ad95b87988d4bd75e9b2f63d055825e5c919d3e80c5
3
+ size 1163866
data/issues/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f77186bd20a70bb507d699f8b69fa11ea11270ac72fa19b6d8401cb35af52ae3
3
+ size 934141
data/public_events/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3656ee7c06e50ce0a6c6de0786936d76105e2019a06d2acdf72ef59205515713
3
+ size 19003
data/pull_requests/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0790d6e5a981ee20d4aef965ac2eaa8ad8900bf5aef3d0708af5d6e0630050c3
3
+ size 4405766
data/pushes/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da254f77dce4e9427211f41f5b30fb35e318f0e9d48f5523560640c0bc137713
3
+ size 40721213
data/stars/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c3251fbcb51325d1e4dbb6fa2ee65bdd86576d6fccea26e45a605bf26eddbf4
3
+ size 1939433
data/wiki_pages/2014/12/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af7bd7f2c3c606bd6bc0bec02951529bc218a5291a601bb9f1f3220d50c54cc0
3
+ size 310428
stats.csv CHANGED
@@ -1358,6 +1358,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1358
  2014-11-28,376288,1897,196769,22400,30661,16529,0,4787,31893,11696,46058,5975,1004,2454,3835,0,330,0,218647338,100.7,43512130,41.6,100.7,24.1
1359
  2014-11-29,311250,1384,166046,18948,20815,11824,0,5251,25951,9773,39609,6038,905,1754,2684,0,268,0,178164224,84.4,35771874,45.0,84.4,34.2
1360
  2014-11-30,376189,1631,202662,22782,25705,14081,0,3745,33377,11301,48109,5499,982,1982,3962,0,371,0,214851922,97.8,43804368,50.6,97.8,36.5
1361
- 2014-12-01,515239,2804,256549,35895,49345,24079,0,8482,44496,15821,59007,8335,1323,3359,5189,0,555,0,299076169,138.9,58146124,58.4,138.9,0.0
 
1362
  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
1363
  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
 
1358
  2014-11-28,376288,1897,196769,22400,30661,16529,0,4787,31893,11696,46058,5975,1004,2454,3835,0,330,0,218647338,100.7,43512130,41.6,100.7,24.1
1359
  2014-11-29,311250,1384,166046,18948,20815,11824,0,5251,25951,9773,39609,6038,905,1754,2684,0,268,0,178164224,84.4,35771874,45.0,84.4,34.2
1360
  2014-11-30,376189,1631,202662,22782,25705,14081,0,3745,33377,11301,48109,5499,982,1982,3962,0,371,0,214851922,97.8,43804368,50.6,97.8,36.5
1361
+ 2014-12-01,515239,2804,256549,35895,49345,24079,0,8482,44496,15821,59007,8335,1323,3359,5189,0,555,0,299076169,138.9,58146124,58.4,138.9,42.6
1362
+ 2014-12-02,539600,2646,264820,45512,52196,25847,0,7498,43611,17008,60895,9227,1414,3826,4535,0,565,0,307663570,147.6,59264161,47.8,147.6,0.0
1363
  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
1364
  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