tamnd commited on
Commit
5302c17
·
verified ·
1 Parent(s): 4790469

Add 2013-11-26 — 326.4K 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-11-28** (843 days), totaling **114,063,318 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 32.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.8 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 ██████████████████████████████ 65.7M
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 | 309 | 65,710,333 | 212,654 | 20.0 GB | 6.2 GB | 3h06m | 9h31m | 4h01m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 33.6M
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 | 56,740,297 | 49.7% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,469,723 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 9,753,715 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,444,392 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 878,537 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 10,787,820 | 9.5% | Repository stars |
1157
- | `forks` | ForkEvent | 4,109,060 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,108,860 | 13.2% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,067,715 | 0.9% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 59,233 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,137,389 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,121,577 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 104,010 | 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-11-28** (844 days), totaling **114,389,736 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 32.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 10.8 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 ██████████████████████████████ 66.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 | 310 | 66,036,751 | 213,021 | 20.1 GB | 6.2 GB | 3h06m | 9h34m | 4h01m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 33.7M
741
  ```
742
 
743
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 56,907,020 | 49.7% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,491,465 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 9,782,598 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,458,233 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 882,444 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 10,817,198 | 9.5% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,120,609 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,143,775 | 13.2% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,072,765 | 0.9% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 59,951 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,140,352 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,126,117 | 1.9% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 104,271 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a72f34005b34e98384fd7536a50097327ef8e174f55df1636efe3d87d91f2cf0
3
+ size 100565
data/creates/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a4012d661050a41c9000663805e2c1bba9cd250aa4b5913f69949f4f3a637cf
3
+ size 1337381
data/deletes/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cb7a103e899be973643ede496c5c9e65a6e0a24d2b083eeda70fe31414132d3
3
+ size 148624
data/forks/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50a12db83bc39614567f32676bcf16b7e71eeb960fcbb0364756b626fcc391a9
3
+ size 304680
data/issue_comments/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9425b1fad0b0bdd692e9882ba859d87e3f13df574f24a2525dd2d939bafe1f99
3
+ size 657937
data/issues/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e39480ebac47d4ad32dfeecc9d3b7800a0dc993a1b6fb08ae633276a2a890cc
3
+ size 448736
data/public_events/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b08e30124d14e7f5ea4ba3aab3450af5cf2c4351682ee6ec1ac41e62b9b73857
3
+ size 11129
data/pull_requests/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c178119f8602d1f27a9be7d95bb4e5335de79de4238951bde15aebae7381c97
3
+ size 2361727
data/pushes/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b828b7b1001a5bae4e5df7f174e6b4a3f91a081d39204061813b6bc37ecc6fc
3
+ size 26024152
data/stars/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:292474d15c527c18ac2c8124486bc2825f6d6ea8ce976f1ef9e6bb03de516b37
3
+ size 641697
data/wiki_pages/2013/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6421e2ffebd63cf73da8b59c64ec7b85ff8affdd23c62a3c89b62140c6c41da
3
+ size 305766
stats.csv CHANGED
@@ -840,5 +840,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
840
  2013-11-19,341897,2014,163090,33194,34274,15015,0,3409,28433,12129,36346,6181,629,2659,4226,0,298,0,108248179,202.3,32515886,26.6,202.3,41.2
841
  2013-11-20,323456,2066,163553,19299,30388,14381,0,3354,29948,11739,35607,5270,549,2567,4414,0,321,0,106228083,201.3,32290731,38.0,201.3,59.5
842
  2013-11-21,319491,1920,160690,18877,29538,14689,0,3729,30274,11552,35008,5790,536,2475,4162,0,251,0,106512121,207.0,32125899,38.6,207.0,22.7
843
- 2013-11-25,313617,1793,159858,20062,27821,13426,0,3737,27980,11233,34750,5174,488,2706,4315,0,274,0,101968680,157.3,30587085,7.0,157.3,0.0
 
844
  2013-11-28,250415,1326,130289,12966,20356,10324,0,2419,23852,9356,28353,4814,447,1896,3809,0,208,0,80454441,122.8,24929667,29.9,122.8,0.0
 
840
  2013-11-19,341897,2014,163090,33194,34274,15015,0,3409,28433,12129,36346,6181,629,2659,4226,0,298,0,108248179,202.3,32515886,26.6,202.3,41.2
841
  2013-11-20,323456,2066,163553,19299,30388,14381,0,3354,29948,11739,35607,5270,549,2567,4414,0,321,0,106228083,201.3,32290731,38.0,201.3,59.5
842
  2013-11-21,319491,1920,160690,18877,29538,14689,0,3729,30274,11552,35008,5790,536,2475,4162,0,251,0,106512121,207.0,32125899,38.6,207.0,22.7
843
+ 2013-11-25,313617,1793,159858,20062,27821,13426,0,3737,27980,11233,34750,5174,488,2706,4315,0,274,0,101968680,157.3,30587085,7.0,157.3,43.4
844
+ 2013-11-26,326418,1948,166723,21742,28883,13841,0,3907,29378,11549,34915,5050,718,2963,4540,0,261,0,106037603,167.4,32342394,27.6,167.4,0.0
845
  2013-11-28,250415,1326,130289,12966,20356,10324,0,2419,23852,9356,28353,4814,447,1896,3809,0,208,0,80454441,122.8,24929667,29.9,122.8,0.0