tamnd commited on
Commit
dba836f
·
verified ·
1 Parent(s): 2177f88

Add 2014-03-06 — 376.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 **2014-03-05** (942 days), totaling **142,258,672 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 40.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 19.4M
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 | 64 | 19,422,275 | 303,473 | 5.9 GB | 1.8 GB | 42m52s | 3h05m | 50m32s |
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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 9.9M
744
  ```
745
 
746
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 846.1K
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 | 71,135,516 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,024,920 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 12,321,636 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 5,656,520 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,183,919 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 13,435,894 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,118,935 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 18,253,783 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,556,407 | 1.1% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 120,216 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,377,721 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,517,145 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 130,821 | 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-06** (943 days), totaling **142,634,864 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 40.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
 
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 19.8M
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 | 65 | 19,798,467 | 304,591 | 6.0 GB | 1.8 GB | 43m27s | 3h09m | 51m24s |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 10.1M
744
  ```
745
 
746
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 863.1K
764
  ```
765
 
766
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 71,325,593 | 50.0% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 8,043,922 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 12,355,955 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 5,673,525 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,188,805 | 0.8% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 13,470,871 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,133,002 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 18,296,849 | 12.8% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,563,584 | 1.1% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 121,038 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,380,569 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,522,720 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 131,169 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ed29e1e2bf00eb5683206b48158efe4226963abc38218de960d9f80feac555a
3
+ size 99042
data/creates/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49e295338cfc4effe23a19262e643b9d756801a035e644b05b4b6fe216b852b0
3
+ size 1548355
data/deletes/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e52852fb1567e2f66eea6498a086cb6afef529dd7b546c257463aaec12e61f09
3
+ size 193766
data/forks/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c918868e48b8203c43076c0d2b79e663edd0dc895ecd0f83275f6b4e5c121cd
3
+ size 371972
data/issue_comments/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89694439e96eccafcc59dade669f1de02953a5f5fcd36a1db3918a66caf99670
3
+ size 872392
data/issues/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ad3b906dd3caf820d8a3b4a56697a5ef08be7e3dfc036f70854ee2319427c4f
3
+ size 481641
data/public_events/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbd90839d43cbba43b47b480c25485bc3b927047a157f4e30d0b64df5fce46f6
3
+ size 13843
data/pull_requests/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8e2aaca0b281807f58c9781596306707f6b209ea4ed9a73efde33e123788d31
3
+ size 2961836
data/pushes/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9705ef8c41deb91dff1dfe0c8d81a71b368d77a1d386a03c6152c10fb0b29d81
3
+ size 29953191
data/stars/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8af0514f73c16b2795f14005db641a4fa6efc61de335120c7a18500b2096ee1
3
+ size 755571
data/wiki_pages/2014/03/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee10656b5e10f31fc9a40883e9cc85a96127feab65e1dde7ac2fc3d0fab25832
3
+ size 405533
stats.csv CHANGED
@@ -940,4 +940,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
940
  2014-03-02,268435,1212,142444,12110,21020,10558,0,2341,25002,9528,31545,5326,650,2254,4176,0,269,0,84394355,159.5,26133408,43.0,159.5,62.6
941
  2014-03-03,377237,2097,186284,21495,37777,17915,0,5042,35412,12641,41560,6762,826,3249,5765,0,412,0,125747286,232.7,36966479,37.2,232.7,38.3
942
  2014-03-04,388308,2154,188111,21432,40025,18280,0,4959,36337,14296,44284,8901,883,3267,5044,0,335,0,128196910,240.2,37668035,36.3,240.2,45.8
943
- 2014-03-05,383060,2158,190630,19366,36498,17917,0,5003,33824,13801,45708,7976,840,3345,5654,0,340,0,128029537,235.8,37613757,35.5,235.8,0.0
 
 
940
  2014-03-02,268435,1212,142444,12110,21020,10558,0,2341,25002,9528,31545,5326,650,2254,4176,0,269,0,84394355,159.5,26133408,43.0,159.5,62.6
941
  2014-03-03,377237,2097,186284,21495,37777,17915,0,5042,35412,12641,41560,6762,826,3249,5765,0,412,0,125747286,232.7,36966479,37.2,232.7,38.3
942
  2014-03-04,388308,2154,188111,21432,40025,18280,0,4959,36337,14296,44284,8901,883,3267,5044,0,335,0,128196910,240.2,37668035,36.3,240.2,45.8
943
+ 2014-03-05,383060,2158,190630,19366,36498,17917,0,5003,33824,13801,45708,7976,840,3345,5654,0,340,0,128029537,235.8,37613757,35.5,235.8,51.1
944
+ 2014-03-06,376192,2023,190077,19002,34319,17005,0,4886,34977,14067,43066,7177,822,2848,5575,0,348,0,126967155,231.2,37657142,35.5,231.2,0.0