tamnd commited on
Commit
ef63c7c
·
verified ·
1 Parent(s): 00ff933

Add 2013-12-09 — 324.8K 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 **2013-12-08** (855 days), totaling **117,335,148 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 33.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.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
 
@@ -722,22 +722,22 @@ duckdb.sql("""
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 69.0M
726
  ```
727
 
728
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
729
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
730
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
731
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
732
- | 2013 | 321 | 68,982,163 | 214,897 | 21.0 GB | 6.5 GB | 3h13m | 10h03m | 4h12m |
733
 
734
 
735
  ### Pushes per year
736
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
- 2012 █████████████░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 35.3M
741
  ```
742
 
743
 
@@ -1148,20 +1148,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
- | `pushes` | PushEvent | 58,451,230 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,649,909 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,037,334 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,582,830 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 912,098 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,086,747 | 9.4% | Repository stars |
1157
- | `forks` | ForkEvent | 4,228,022 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,461,424 | 13.2% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,120,101 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 65,774 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,165,938 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,168,606 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 106,782 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
 
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 **2013-12-09** (856 days), totaling **117,659,910 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 33.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.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
 
 
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
+ 2013 ██████████████████████████████ 69.3M
726
  ```
727
 
728
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
729
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
730
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
731
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
732
+ | 2013 | 322 | 69,306,925 | 215,238 | 21.1 GB | 6.5 GB | 3h14m | 10h06m | 4h13m |
733
 
734
 
735
  ### Pushes per year
736
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
+ 2012 █████████████░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 35.5M
741
  ```
742
 
743
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 58,619,232 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,668,080 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,066,493 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,597,481 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 916,204 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,117,471 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,239,418 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,494,621 | 13.2% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,125,298 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 66,374 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,168,798 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,173,442 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 107,092 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:280e927653c1b5a25b23ecc2e23f18367b546917be22fd8add21559555408a74
3
+ size 100470
data/creates/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89b0785cc46ff7a0c99d25c467010ac01adeff4dd81e8dc06eee3f6fe79bbe6d
3
+ size 1264196
data/deletes/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:405de8014ccaf2e4011ef83b6052070dc05da7b2107e8e6cfb0201c98b6a80d2
3
+ size 149663
data/forks/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffcfe6075ed6e148ec9548c9e916a908ccff97f76ba80c6f47999a46e4b2c4c1
3
+ size 308169
data/issue_comments/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c485b6c1c35118b8acea256b0440cf8950be78f5c33ab36ab4934376d0a867ba
3
+ size 741848
data/issues/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99e41cd105cbcf11dac9ed13f613e00e49792ceda1e2560ccc3fce007537c650
3
+ size 431543
data/public_events/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78d56b996999826680ddb124f16b92c8e1ef1c1f1c7b74f554beb95987d67fd9
3
+ size 12448
data/pull_requests/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fff41bb4d628dec5609b7ad890c58d2b2d42e5120d50e7c94f94c65d555bdb9e
3
+ size 2522104
data/pushes/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c385aabb3bb1ab9c3a9f6be0230bad8e29241f0a9b4d25bdc8db9a3d3b98dd3
3
+ size 27101726
data/stars/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98e472ce9b657da134f032d70a5ac78f76ba89b28e9a34ee7f610f7cf0d4a1ec
3
+ size 677589
data/wiki_pages/2013/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e18b9b07096ddc026da75d175b218fda0010a3a933ed19901e73d5d842b0733
3
+ size 315610
stats.csv CHANGED
@@ -853,4 +853,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
853
  2013-12-05,319052,1912,163118,18177,29522,14794,0,4102,29120,12136,33068,5441,621,2765,3980,0,296,0,107847615,198.0,32944800,44.0,198.0,34.7
854
  2013-12-06,283315,1607,144737,17081,28499,12564,0,3591,24301,9896,29029,4938,563,2545,3700,0,264,0,94074039,164.6,28384413,33.8,164.6,57.6
855
  2013-12-07,198426,933,109996,10521,14264,7249,0,1164,17479,6852,21587,3181,410,1532,3107,0,151,0,62261337,112.4,19738526,40.6,112.4,41.4
856
- 2013-12-08,232638,896,127513,12319,18653,8345,0,1473,20981,8019,25065,3129,517,1768,3765,0,195,0,71808461,129.7,23187962,27.4,129.7,0.0
 
 
853
  2013-12-05,319052,1912,163118,18177,29522,14794,0,4102,29120,12136,33068,5441,621,2765,3980,0,296,0,107847615,198.0,32944800,44.0,198.0,34.7
854
  2013-12-06,283315,1607,144737,17081,28499,12564,0,3591,24301,9896,29029,4938,563,2545,3700,0,264,0,94074039,164.6,28384413,33.8,164.6,57.6
855
  2013-12-07,198426,933,109996,10521,14264,7249,0,1164,17479,6852,21587,3181,410,1532,3107,0,151,0,62261337,112.4,19738526,40.6,112.4,41.4
856
+ 2013-12-08,232638,896,127513,12319,18653,8345,0,1473,20981,8019,25065,3129,517,1768,3765,0,195,0,71808461,129.7,23187962,27.4,129.7,36.5
857
+ 2013-12-09,324762,1553,168002,18171,29159,14651,0,4106,30724,11396,33197,5197,600,2860,4836,0,310,0,109413889,199.7,33625366,48.3,199.7,0.0