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

Add 2013-12-23 — 227.7K 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-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,14 +722,14 @@ duckdb.sql("""
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,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 37.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 | 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
 
 
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-23** (870 days), totaling **121,361,818 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.2 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 ██████████████████████████████ 73.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 | 336 | 73,008,833 | 217,288 | 22.2 GB | 6.9 GB | 3h23m | 10h40m | 4h23m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 37.3M
741
  ```
742
 
743
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 60,498,837 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,879,588 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,418,384 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,755,206 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 955,638 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,467,543 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,371,530 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,902,138 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,189,947 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 73,899 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,200,864 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,221,323 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 110,728 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bf0d06da33d92cb6583732855a6a85368d79b39a5bd043a12d8249376054e76
3
+ size 70318
data/creates/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86b941e10b72653af4cd81798f35d2db98df109aff5e6ac4f894650b9db58684
3
+ size 960639
data/deletes/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e8c25e7d3597a948fb6ae8a63fc5f164a8726f584b088229d29773dd04d2b9e
3
+ size 108570
data/forks/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cba3b8b081cb00238fe6f6f6daf1bba11ebdf27da40663f147b27c53063b170
3
+ size 247500
data/issue_comments/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51a7261bfeba6929c48280f038b1d8e6d35120ae2b0d4eb96ff48b87673a416d
3
+ size 468682
data/issues/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d974533b514bbfaffc2e8a4024e3591fe463b19cfc5874c0e837f955d08433c
3
+ size 292528
data/public_events/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b84ebb76dbe143ba211d053c2fda4c93898247e605c29caa5a04a1dd3590d37
3
+ size 8900
data/pull_requests/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14f62e1424af915605b4e04ca4ffa4fa2f2b412efd46dc13c690e32564941666
3
+ size 1633810
data/pushes/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a6ff043bc6a8c1ff62c896ca5fb50faaf9e9c931a07c2b107ee2305681239ce
3
+ size 17285724
data/stars/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4987e36c0fd2f10c0f14b55077df283fcbb9f13cf080af1bb50aef64eda5c60c
3
+ size 524175
data/wiki_pages/2013/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39839940b1d0ddf12cd7052979c4b0b54b1d1ba601a05ea726b951cc1f5c8707
3
+ size 161110
stats.csv CHANGED
@@ -867,4 +867,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
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,45.6
871
+ 2013-12-23,227712,833,115627,11618,19048,9174,0,2357,24121,9133,26055,4036,441,1963,3096,0,210,0,73120778,125.0,21761956,34.5,125.0,0.0