tamnd commited on
Commit
6cb354a
·
verified ·
1 Parent(s): f5bdd95

Add 2014-03-14 — 301.1K 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-03-13** (950 days), totaling **144,981,720 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 41.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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 ████████░░░░░░░░░░░░░░░░░░░░░ 22.1M
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 | 72 | 22,145,323 | 307,573 | 6.7 GB | 2.0 GB | 47m52s | 3h32m | 57m34s |
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 ████████░░░░░░░░░░░░░░░░░░░░░░ 11.2M
744
  ```
745
 
746
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 █████████░░░░░░░░░░░░░░░░░░░░ 965.7K
764
  ```
765
 
766
 
@@ -1154,20 +1154,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 72,500,168 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,173,272 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 12,570,742 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 5,776,097 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,217,415 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 13,685,925 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,215,601 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 18,578,145 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,610,810 | 1.1% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 126,322 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,399,120 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,554,694 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 133,482 | 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-03-14** (951 days), totaling **145,282,835 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 41.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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 ████████░░░░░░░░░░░░░░░░░░░░░ 22.4M
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 | 73 | 22,446,438 | 307,485 | 6.8 GB | 2.1 GB | 48m43s | 3h35m | 58m15s |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 11.4M
744
  ```
745
 
746
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 █████████░░░░░░░░░░░░░░░░░░░░ 979.5K
764
  ```
765
 
766
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 72,648,227 | 50.0% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 8,191,470 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 12,602,311 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 5,789,912 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,221,507 | 0.8% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 13,712,117 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,226,995 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 18,611,132 | 12.8% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,616,642 | 1.1% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 126,988 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,401,243 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,559,037 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 133,734 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:366afa575eb16184c8e7e556f0ee4c66465973fdee7b1f0775e4387ebfedb576
3
+ size 80463
data/creates/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:365b4a91314c3fa46d44cf0981fa7bc3d3f44bb77434125c51b1a5739d0bd0d2
3
+ size 1236222
data/deletes/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32974fc4963f9d3f2c7de31cf70011234a9a3ded9baf870882d87c5e356a1b83
3
+ size 155059
data/forks/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34e9daef6041ad7246cae111d522ca728cd5f9f6383e6e1c1845745cbadaadd4
3
+ size 299185
data/issue_comments/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7703cd7c9eb3cad0ea454660d9ed8d03a0663ba4ea4e9820bad5e20490a5f246
3
+ size 667342
data/issues/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e95074517555ed26512b9d5471b6f3a7747c11cb32a36c005b1ad05a598f82f
3
+ size 400972
data/public_events/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cfd923be969f692b014c89be97429e31795c54ce3fd13878cfe80289078af6d
3
+ size 10993
data/pull_requests/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:781109f45c7fc97061bc5b40b5b12a81a9e553e4c2eb596c4284b02cfcfefed0
3
+ size 2408907
data/pushes/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c6cf7a0d31c200e39bc67007333854a38db02c41d428d404920710bb5354ef3
3
+ size 23689603
data/stars/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99e781df82be42297bb6a97997e98087b2ceaaaed3200f9d30c287c191ef9262
3
+ size 577352
data/wiki_pages/2014/03/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9d769c04556b229f8631803240e995bf8b6b941bed07bf91ae1b1d8aebdcbcb
3
+ size 237663
stats.csv CHANGED
@@ -948,4 +948,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
948
  2014-03-10,371759,2079,187261,18104,34555,17542,0,4992,34357,13559,42505,6999,840,3270,5327,0,369,0,125419617,233.2,37080469,37.6,233.2,41.8
949
  2014-03-11,375609,2214,187002,19332,34958,17830,0,4717,36317,13634,43296,7060,816,3060,4983,0,390,0,125245636,228.9,36578459,34.1,228.9,102.5
950
  2014-03-12,400641,2115,192731,22192,41409,18067,0,5781,35347,14246,51326,7685,931,3168,5268,0,375,0,131809923,240.4,38433108,42.8,240.4,39.3
951
- 2014-03-13,371971,1835,182316,19410,36642,16556,0,5215,32033,12580,49508,6578,796,3107,5005,0,390,0,121381072,223.5,35719460,32.3,223.5,0.0
 
 
948
  2014-03-10,371759,2079,187261,18104,34555,17542,0,4992,34357,13559,42505,6999,840,3270,5327,0,369,0,125419617,233.2,37080469,37.6,233.2,41.8
949
  2014-03-11,375609,2214,187002,19332,34958,17830,0,4717,36317,13634,43296,7060,816,3060,4983,0,390,0,125245636,228.9,36578459,34.1,228.9,102.5
950
  2014-03-12,400641,2115,192731,22192,41409,18067,0,5781,35347,14246,51326,7685,931,3168,5268,0,375,0,131809923,240.4,38433108,42.8,240.4,39.3
951
+ 2014-03-13,371971,1835,182316,19410,36642,16556,0,5215,32033,12580,49508,6578,796,3107,5005,0,390,0,121381072,223.5,35719460,32.3,223.5,41.3
952
+ 2014-03-14,301115,1593,148059,18198,31569,13815,0,4092,26192,11394,32987,5832,666,2123,4343,0,252,0,99196977,181.5,29763761,51.5,181.5,0.0