tamnd commited on
Commit
e4357c7
·
verified ·
1 Parent(s): 0c044c1

Add 2013-12-17 — 311.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-16** (863 days), totaling **119,620,954 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.3 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 ██████████████████████████████ 71.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 | 329 | 71,267,969 | 216,619 | 21.7 GB | 6.7 GB | 3h18m | 10h25m | 4h18m |
733
 
734
 
735
  ### Pushes per year
@@ -737,7 +737,7 @@ duckdb.sql("""
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
- 2013 ██████████████████████████████ 36.5M
741
  ```
742
 
743
 
@@ -753,7 +753,7 @@ duckdb.sql("""
753
  ### Pull requests per year
754
 
755
  ```
756
- 2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
757
  2012 ████████████████░░░░░░░░░░░░░░ 1.5M
758
  2013 ██████████████████████████████ 2.8M
759
  ```
@@ -764,7 +764,7 @@ duckdb.sql("""
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
767
- 2013 ██████████████████████████████ 6.6M
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 | 59,620,696 | 49.8% | Git pushes with commits |
1152
- | `issues` | IssuesEvent | 6,778,941 | 5.7% | Issue lifecycle events |
1153
- | `issue_comments` | IssueCommentEvent | 10,269,583 | 8.6% | Comments on issues/PRs |
1154
- | `pull_requests` | PullRequestEvent | 4,680,739 | 3.9% | PR lifecycle events |
1155
- | `pr_review_comments` | PullRequestReviewCommentEvent | 937,209 | 0.8% | Line-level PR comments |
1156
- | `stars` | WatchEvent | 11,294,637 | 9.4% | Repository stars |
1157
- | `forks` | ForkEvent | 4,307,424 | 3.6% | Repository forks |
1158
- | `creates` | CreateEvent | 15,702,187 | 13.1% | Branch/tag/repo creation |
1159
- | `deletes` | DeleteEvent | 1,157,154 | 1.0% | Branch/tag deletion |
1160
- | `releases` | ReleaseEvent | 70,076 | 0.1% | Release publications |
1161
- | `commit_comments` | CommitCommentEvent | 1,185,175 | 1.0% | Comments on commits |
1162
- | `wiki_pages` | GollumEvent | 2,198,933 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
- | `public_events` | PublicEvent | 108,966 | 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-17** (864 days), totaling **119,932,178 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.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.3 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 ██████████████████████████████ 71.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 | 330 | 71,579,193 | 216,906 | 21.8 GB | 6.7 GB | 3h19m | 10h28m | 4h19m |
733
 
734
 
735
  ### Pushes per year
 
737
  ```
738
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
739
  2012 █████████████░░░░░░░░░░░░░░░░░ 16.5M
740
+ 2013 ██████████████████████████████ 36.6M
741
  ```
742
 
743
 
 
753
  ### Pull requests per year
754
 
755
  ```
756
+ 2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
757
  2012 ████████████████░░░░░░░░░░░░░░ 1.5M
758
  2013 ██████████████████████████████ 2.8M
759
  ```
 
764
  ```
765
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
766
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
767
+ 2013 ██████████████████████████████ 6.7M
768
  ```
769
 
770
 
 
1148
 
1149
  | Table | GitHub Event | Events | % | Description |
1150
  |-------|-------------|-------:|---:|-------------|
1151
+ | `pushes` | PushEvent | 59,776,624 | 49.8% | Git pushes with commits |
1152
+ | `issues` | IssuesEvent | 6,796,359 | 5.7% | Issue lifecycle events |
1153
+ | `issue_comments` | IssueCommentEvent | 10,298,657 | 8.6% | Comments on issues/PRs |
1154
+ | `pull_requests` | PullRequestEvent | 4,694,760 | 3.9% | PR lifecycle events |
1155
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 941,058 | 0.8% | Line-level PR comments |
1156
+ | `stars` | WatchEvent | 11,325,997 | 9.4% | Repository stars |
1157
+ | `forks` | ForkEvent | 4,318,603 | 3.6% | Repository forks |
1158
+ | `creates` | CreateEvent | 15,735,627 | 13.1% | Branch/tag/repo creation |
1159
+ | `deletes` | DeleteEvent | 1,162,834 | 1.0% | Branch/tag deletion |
1160
+ | `releases` | ReleaseEvent | 70,734 | 0.1% | Release publications |
1161
+ | `commit_comments` | CommitCommentEvent | 1,188,007 | 1.0% | Comments on commits |
1162
+ | `wiki_pages` | GollumEvent | 2,203,117 | 1.8% | Wiki page edits |
1163
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1164
+ | `public_events` | PublicEvent | 109,259 | 0.1% | Repo made public |
1165
 
1166
  ## How it's built
1167
 
data/commit_comments/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58b942fe1becca0c6b747f571efca950a83afba1c08137e80896ef8bceca2e7d
3
+ size 96350
data/creates/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd321d8e1c792f4bd48ef5fd12e5dd542360663f15f81e1b0005d2ef984f8839
3
+ size 1323114
data/deletes/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0896a08377d321c24a27a14f1f48b2e930d9a2cca17a98ec880dfd40c2e3a09
3
+ size 158374
data/forks/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c9ffccbb5f0bfe9cc2a3888f808d49478b216ac3f7c333c61bda861afccc17b
3
+ size 293958
data/issue_comments/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e72b0d05b9afec7d14b60fafdb5153c56e5fce547dfedc1bbc79a0e3ed3962b
3
+ size 679421
data/issues/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9df3730864dab5570031f54a54afc935e7cde8b6477eacfec330cb26d774d6da
3
+ size 421494
data/public_events/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b6a3903e64ebc8a7ff1c5ebb8fe0abd7f576a4c5f6fe05aa9af377366136477
3
+ size 12332
data/pull_requests/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:117e2dc223799729ac9c488fe8a9e6ad90a2689abe20481430539ad8b17373a6
3
+ size 2575116
data/pushes/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d822725743d8df8fe38e379f1c23851edf421ee009e727823d4199a6c88b3bf
3
+ size 24534042
data/stars/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:880b0a2997c6415d1a78ee40dfd86d4b4a801956ae42507d5bdd8ef33f9a3011
3
+ size 660580
data/wiki_pages/2013/12/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53e29f2f825293981c8c4fd6b00a03df152d23ff490f26a2d2b4b9eeee73b0ac
3
+ size 219176
stats.csv CHANGED
@@ -861,4 +861,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
861
  2013-12-13,265250,1400,137605,13805,23322,11908,0,2932,24661,9047,29514,4333,552,2343,3577,0,251,0,88271772,156.0,26972798,32.9,156.1,36.9
862
  2013-12-14,206570,924,103414,12675,28621,6584,0,1289,17848,6673,21347,2805,322,1447,2474,0,147,0,58356651,108.9,18818094,26.4,108.9,47.7
863
  2013-12-15,224013,852,119342,11979,23174,7417,0,1618,20710,7667,23228,2991,412,1592,2851,0,180,0,66913255,124.6,21300633,46.8,124.6,42.3
864
- 2013-12-16,305938,1402,156264,18044,28012,14083,0,3961,27529,10822,32662,5368,622,2790,4039,0,340,0,106549619,178.3,34595169,38.1,178.3,0.0
 
 
861
  2013-12-13,265250,1400,137605,13805,23322,11908,0,2932,24661,9047,29514,4333,552,2343,3577,0,251,0,88271772,156.0,26972798,32.9,156.1,36.9
862
  2013-12-14,206570,924,103414,12675,28621,6584,0,1289,17848,6673,21347,2805,322,1447,2474,0,147,0,58356651,108.9,18818094,26.4,108.9,47.7
863
  2013-12-15,224013,852,119342,11979,23174,7417,0,1618,20710,7667,23228,2991,412,1592,2851,0,180,0,66913255,124.6,21300633,46.8,124.6,42.3
864
+ 2013-12-16,305938,1402,156264,18044,28012,14083,0,3961,27529,10822,32662,5368,622,2790,4039,0,340,0,106549619,178.3,34595169,38.1,178.3,44.0
865
+ 2013-12-17,311224,1308,155928,17418,29074,14021,0,3849,31360,11179,33440,5680,658,2832,4184,0,293,0,103443645,163.3,30973957,35.4,163.3,0.0