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

Add 2013-12-10 — 332.2K 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-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,14 +722,14 @@ duckdb.sql("""
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
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 35.5M
741
  ```
742
 
743
 
@@ -764,7 +764,7 @@ duckdb.sql("""
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ███████████████░░░░░░░░░░░░░░░ 3.3M
767
- 2013 ██████████████████████████████ 6.4M
768
  ```
769
 
770
 
@@ -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,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
 
 
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-10** (857 days), totaling **117,992,116 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.2 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.6M
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 | 323 | 69,639,131 | 215,601 | 21.2 GB | 6.6 GB | 3h15m | 10h09m | 4h14m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 35.6M
741
  ```
742
 
743
 
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ███████████████░░░░░░░░░░░░░░░ 3.3M
767
+ 2013 ██████████████████████████████ 6.5M
768
  ```
769
 
770
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 58,787,818 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,686,170 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,098,369 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,613,084 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 920,179 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,148,571 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,251,446 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,529,977 | 13.2% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,131,272 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 66,970 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,171,483 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,177,840 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 107,396 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d673da9e7ea867003edaf1f5d083bbc6f5d31a8e6d16dfefaa6bc120b11f211
3
+ size 94778
data/creates/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0246630d3a5b6898cf504c92ffa804cb08f5eb9ac9f4f14b2bd352c10f709c48
3
+ size 1337801
data/deletes/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac1228317e5a06a3f70f799788213b92451c42287b5bfc3f9b75a3d54d3575d8
3
+ size 161891
data/forks/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21abdbde034724f4bbc5c92df53c590c792187f66f8cf98d656d721936c6825c
3
+ size 320687
data/issue_comments/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbe6b1223ffdb80d54d6db027f315aa7b74b639cd892048fd2a838e67394a702
3
+ size 712231
data/issues/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce0b3affbac5c3181f96e44dace2e8464ec26583af1d29531fb651efe4ddb275
3
+ size 430024
data/public_events/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7aa3d6c530adf6f54337d738715f2d402ad88fbe5b49db79c0b8245212a2db7
3
+ size 12472
data/pull_requests/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a8244b9d6294dcebbdc65b7b83c4236ac6c792f181df691d4b92b7a5aec7456
3
+ size 2653639
data/pushes/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f937d4efa577e7652fcf92f99af11b2272b1544f0ed2bc60fd0b48ef3b17e311
3
+ size 25830379
data/stars/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92892f9d885059d003647daab7706a7f70f76cbac213daa029bdadca78e6b11d
3
+ size 673158
data/wiki_pages/2013/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c409a23c868cc7041b746f9361ddd1e8ccf0fe9cdf55bea9270b2a5c24ddc97
3
+ size 319861
stats.csv CHANGED
@@ -854,4 +854,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
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,41.4
858
+ 2013-12-10,332206,1635,168586,18090,31876,15603,0,3975,31100,12028,35356,5974,596,2685,4398,0,304,0,110162187,206.5,32546921,31.0,206.5,0.0