tamnd commited on
Commit
311a085
·
verified ·
1 Parent(s): a1e61ae

Add 2014-01-02 — 250.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 **2014-01-01** (879 days), totaling **123,005,418 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.6 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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 169.0K
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -731,7 +731,7 @@ duckdb.sql("""
731
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
732
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
733
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
734
- | 2014 | 1 | 169,021 | 169,021 | 49.3 MB | 15.4 MB | 26s | 1m25s | |
735
 
736
 
737
  ### Pushes per year
@@ -740,7 +740,7 @@ duckdb.sql("""
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
- 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 89.3K
744
  ```
745
 
746
 
@@ -750,7 +750,7 @@ duckdb.sql("""
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
- 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.1K
754
  ```
755
 
756
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.1K
764
  ```
765
 
766
 
@@ -770,7 +770,7 @@ duckdb.sql("""
770
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
- 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 19.1K
774
  ```
775
 
776
 
@@ -1154,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 61,345,757 | 49.9% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 6,970,953 | 5.7% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 10,545,829 | 8.6% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 4,816,547 | 3.9% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 968,361 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 11,646,241 | 9.5% | Repository stars |
1163
- | `forks` | ForkEvent | 4,436,267 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 16,091,592 | 13.1% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,214,815 | 1.0% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 77,667 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,213,760 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,244,155 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 112,138 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
 
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 **2014-01-02** (880 days), totaling **123,256,119 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.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 11.6 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
 
 
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
+ 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 419.7K
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
731
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
732
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
733
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
734
+ | 2014 | 2 | 419,722 | 209,861 | 128.3 MB | 39.7 MB | 54s | 3m34s | 28s |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212.9K
744
  ```
745
 
746
 
 
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
+ 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25.4K
754
  ```
755
 
756
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 17.0K
764
  ```
765
 
766
 
 
770
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
+ 2014 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 44.9K
774
  ```
775
 
776
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 61,469,312 | 49.9% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 6,988,243 | 5.7% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 10,568,819 | 8.6% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 4,827,443 | 3.9% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 971,168 | 0.8% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 11,672,041 | 9.5% | Repository stars |
1163
+ | `forks` | ForkEvent | 4,445,550 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 16,118,536 | 13.1% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,219,139 | 1.0% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 78,142 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,215,905 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,247,273 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 112,386 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9289c924818d9ee44bde408b1e2d62f1ba1f2efd1a4e618bba2fedb10b424a8a
3
+ size 77439
data/creates/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73ad4f5d1dbcf74f820dbdebdfe21b4b12abd53fe385dd5882f8fc127119a14d
3
+ size 1038512
data/deletes/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c76c793c1cb171b2040f3ad5d7b51e0310a4f00013dae31722aa55fc4158e30
3
+ size 122430
data/forks/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf77bbfa46d52e13881fab4a9f37470089e524905cb963125e04942cbe6afc53
3
+ size 248561
data/issue_comments/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13f34c0c420c2a5bd1b89186c91f37058f2ebb2983c6b6f6a1fc7168514de9e4
3
+ size 536838
data/issues/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0064ab84126d1c34d36afcd8eb4f158f5c8548af290603a32dbe0839c563849b
3
+ size 392271
data/public_events/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:850694eb557d64e597ad3062b4f0a2178cb919b7b38cc028e0cd0650ef95b7a6
3
+ size 10499
data/pull_requests/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6c7860d03b505f94b296e782dfcfe398a4b04b88a0e660fa83b286fcf4ebc04e
3
+ size 1940546
data/pushes/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0407c0c96aa7c406ca81ac30f4aff9876210355f42de9ca37eb23131e797db1
3
+ size 20256068
data/stars/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91f5032050abad383c3cdc12661d03256ac02518b8cd6fa6a0530ec09c59b57b
3
+ size 580409
data/wiki_pages/2014/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0968e7a165b81c61236823df82bb490c272ba0f941eca10b59ed01e034aa5dde
3
+ size 224749
stats.csv CHANGED
@@ -877,4 +877,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
877
  2013-12-29,187654,584,97132,12508,13677,6339,0,1149,21063,6897,20816,2807,405,1306,2784,0,187,0,56444289,91.7,17551425,33.3,91.7,27.0
878
  2013-12-30,230387,787,117271,13306,19854,9358,0,2149,23970,9216,25010,3773,512,2139,2860,0,182,0,76137933,125.0,25049480,39.6,125.0,42.5
879
  2013-12-31,168644,433,87803,8847,13635,6851,0,1342,17011,6166,19861,2541,432,1454,2114,0,154,0,53436707,91.7,16153517,35.4,91.7,25.7
880
- 2014-01-01,169021,416,89318,8073,12023,6124,0,1059,19082,6472,19941,2421,390,1232,2318,0,152,0,51711890,85.7,16183122,26.3,85.7,0.0
 
 
877
  2013-12-29,187654,584,97132,12508,13677,6339,0,1149,21063,6897,20816,2807,405,1306,2784,0,187,0,56444289,91.7,17551425,33.3,91.7,27.0
878
  2013-12-30,230387,787,117271,13306,19854,9358,0,2149,23970,9216,25010,3773,512,2139,2860,0,182,0,76137933,125.0,25049480,39.6,125.0,42.5
879
  2013-12-31,168644,433,87803,8847,13635,6851,0,1342,17011,6166,19861,2541,432,1454,2114,0,154,0,53436707,91.7,16153517,35.4,91.7,25.7
880
+ 2014-01-01,169021,416,89318,8073,12023,6124,0,1059,19082,6472,19941,2421,390,1232,2318,0,152,0,51711890,85.7,16183122,26.3,85.7,28.1
881
+ 2014-01-02,250701,826,123555,17290,22990,10896,0,2807,25800,9283,26944,4324,475,2145,3118,0,248,0,82786576,128.9,25428322,27.2,128.9,0.0