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

Add 2013-12-08 — 232.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 **2013-12-07** (854 days), totaling **117,102,510 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.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
 
@@ -722,14 +722,14 @@ duckdb.sql("""
722
  ```
723
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 ██████████████░░░░░░░░░░░░░░░░ 34.3M
725
- 2013 ██████████████████████████████ 68.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 | 320 | 68,749,525 | 214,842 | 21.0 GB | 6.5 GB | 3h13m | 10h01m | 4h12m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 35.2M
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,323,717 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,637,590 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,018,681 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,574,485 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 910,625 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,065,766 | 9.4% | Repository stars |
1157
- | `forks` | ForkEvent | 4,220,003 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,436,359 | 13.2% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,116,972 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 65,257 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,164,170 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,164,841 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 106,587 | 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-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
  ```
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
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 ██████████████░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 35.3M
741
  ```
742
 
743
 
 
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
 
data/commit_comments/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4aaf063c2acb10075aeee9582bcde8a969624d110e01fc2fe24612fa085fc50b
3
+ size 71294
data/creates/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c89718b1ab1cf0dca31a68a946ea3a7f72f9871f94936c4a306a28e340886ca1
3
+ size 887511
data/deletes/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74061c0b0562258dfe9036fc05dc90a05391350150e777ce2c8c51f6c8ecc48a
3
+ size 86744
data/forks/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aed9d658ba4da070eff2695c1b282aaada89716e0b31472d87a7a1eaa43f9131
3
+ size 217297
data/issue_comments/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b3f495305fded686c91e0e803fccc98d01654ecab8b6681e6d3c2afd61ac448
3
+ size 430687
data/issues/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1638cf92786aacf52a19837c8fce19715cda99c417cbf6c6ce730f53c6df6f21
3
+ size 288949
data/public_events/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b62e2267df333ada55864f0749cfaf79e174902238bb523613e1ea8315f1e98a
3
+ size 8327
data/pull_requests/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d32d54d83f8117ab4e50fd3b93c3c4658f8ffe8145d039897165b7c279c0499
3
+ size 1469329
data/pushes/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9e6356abd0456897a0240308e8670cfa8771490ae74ba5dab4e0422f4f2bd44
3
+ size 18999206
data/stars/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e01a26d67996059e0d07fcc3bf77e0b3005153b46e61660abdb0a0299f9740b
3
+ size 463539
data/wiki_pages/2013/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddc2a19888ba46fcee02bded53f688f8d425a7a21fb79428f4cc11f501964940
3
+ size 265079
stats.csv CHANGED
@@ -852,4 +852,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
852
  2013-12-04,327805,1795,172308,17248,29567,14863,0,3737,28081,11695,33864,6136,624,3042,4555,0,290,0,108519496,194.4,32768488,36.3,194.4,47.2
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,0.0
 
 
852
  2013-12-04,327805,1795,172308,17248,29567,14863,0,3737,28081,11695,33864,6136,624,3042,4555,0,290,0,108519496,194.4,32768488,36.3,194.4,47.2
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