tamnd commited on
Commit
d18fa8b
·
verified ·
1 Parent(s): e1094a0

Add 2013-12-22 — 186.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-12-21** (868 days), totaling **120,947,731 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 34.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.4 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 ██████████████████████████████ 72.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 | 334 | 72,594,746 | 217,349 | 22.1 GB | 6.8 GB | 3h22m | 10h36m | 4h22m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 37.1M
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 | 60,285,875 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,856,398 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,385,825 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,739,572 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 952,091 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,423,679 | 9.4% | Repository stars |
1157
- | `forks` | ForkEvent | 4,355,205 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,855,034 | 13.1% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,182,788 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 73,045 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,197,333 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,215,817 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 110,317 | 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-22** (869 days), totaling **121,134,106 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 34.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.4 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 ██████████████████████████████ 72.8M
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 | 335 | 72,781,121 | 217,257 | 22.2 GB | 6.9 GB | 3h22m | 10h38m | 4h22m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 37.2M
741
  ```
742
 
743
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 60,383,210 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,867,970 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,399,336 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,746,032 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 953,281 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,443,422 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,362,397 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,876,083 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,185,911 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 73,458 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,198,901 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,218,227 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 110,518 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9c4f6af36a178c3de89d6ef7131be5aa00119e506dcc5451ad7462bca32cec3
3
+ size 57071
data/creates/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e53c3ecea0d3858483cebc2c2ca7707abc83eacf940a26b6c9979d377eec3bf
3
+ size 735072
data/deletes/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d19fdf70777a42b4e0ea4329e04a19c9e36d883c5c3acbce4ac8dac35473199
3
+ size 80021
data/forks/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0871dd73d32828d23f8d4bf8172b147f3ae078c29c326c36479464afd038679f
3
+ size 198046
data/issue_comments/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:019a978d544c1e686432baeb0d1817ed257b73e1bcc73b5474e01a49be28d75c
3
+ size 334091
data/issues/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:921308b37f50987c244228e5311274b617a8f0409d1a28933593c9e27c535283
3
+ size 248991
data/public_events/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37060dc315d256d93c26267cf9bbdefebe1621c9ae900caed46cb96370410dfe
3
+ size 8573
data/pull_requests/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7d4a2416950750bbe858f5a4d5296c654bcb5b70010573a0e9b46012bb87a1e
3
+ size 1140210
data/pushes/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db444ec90e6985cf1a5ddef7a99a760f2635e3b7cd1365b0e22b4f53f9229c04
3
+ size 14486448
data/stars/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5b243c9cb1a579849f1d36ac8890566af5612c4b4f77c1eb05bf2eba59468ad
3
+ size 497339
data/wiki_pages/2013/12/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd2313df99360beea7c5da5e74154a3e479c82273bfddcac2d8f27d4f44225f6
3
+ size 173044
stats.csv CHANGED
@@ -866,4 +866,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
866
  2013-12-18,311133,1285,152828,16087,27452,13609,0,3938,29532,10968,42148,5502,665,2974,3826,0,319,0,101028559,157.9,30384287,38.5,157.9,40.6
867
  2013-12-19,293642,1343,145351,20493,25726,13377,0,3396,28949,10831,31751,5174,611,2715,3565,0,360,0,96217080,145.1,28518791,38.5,145.1,44.0
868
  2013-12-20,248097,947,124783,15002,21841,11882,0,2706,22641,8611,26540,6980,649,2257,3017,0,241,0,82288389,137.0,24651433,40.7,137.0,36.5
869
- 2013-12-21,162681,635,86289,8457,12149,5944,0,993,16560,6192,18968,2298,386,1380,2292,0,138,0,50313766,85.9,15690906,48.7,85.9,0.0
 
 
866
  2013-12-18,311133,1285,152828,16087,27452,13609,0,3938,29532,10968,42148,5502,665,2974,3826,0,319,0,101028559,157.9,30384287,38.5,157.9,40.6
867
  2013-12-19,293642,1343,145351,20493,25726,13377,0,3396,28949,10831,31751,5174,611,2715,3565,0,360,0,96217080,145.1,28518791,38.5,145.1,44.0
868
  2013-12-20,248097,947,124783,15002,21841,11882,0,2706,22641,8611,26540,6980,649,2257,3017,0,241,0,82288389,137.0,24651433,40.7,137.0,36.5
869
+ 2013-12-21,162681,635,86289,8457,12149,5944,0,993,16560,6192,18968,2298,386,1380,2292,0,138,0,50313766,85.9,15690906,48.7,85.9,33.3
870
+ 2013-12-22,186375,608,97335,11572,13511,6460,0,1190,19743,7192,21049,3123,413,1568,2410,0,201,0,56702092,99.7,17958906,28.0,99.7,0.0