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

Add 2014-03-05 — 383.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-04** (941 days), totaling **141,875,612 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.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
 
@@ -723,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 19.0M
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 | 63 | 19,039,215 | 302,209 | 5.8 GB | 1.7 GB | 42m16s | 3h01m | 49m47s |
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.7M
744
  ```
745
 
746
 
@@ -750,7 +750,7 @@ duckdb.sql("""
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
- 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.0M
754
  ```
755
 
756
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 828.2K
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 | 70,944,886 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,005,554 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 12,285,138 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 5,638,603 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,178,916 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 13,402,070 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,105,134 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 18,208,075 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,548,431 | 1.1% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 119,376 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,374,376 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,511,491 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 130,481 | 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-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
  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
  | 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
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 9.9M
744
  ```
745
 
746
 
 
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 1.1M
754
  ```
755
 
756
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 846.1K
764
  ```
765
 
766
 
 
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
 
data/commit_comments/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00479bd643eeab526f41ff0387760291b7e8112a5e6457862bcc4329a9a9ac4f
3
+ size 125478
data/creates/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f75270a46a260f10d9059f048f9fc0d52fca1a32acc9c5e2a8703a0e8cdebb2
3
+ size 1568252
data/deletes/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee02b6b7839df74ba2c3ec75a2f5a0f6cbceda23b20883b51247ee733da9ee20
3
+ size 217163
data/forks/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c30cabcf9c2e8221dfdfb5331abeacbf7c86ebd7a15f46d476a43ee1dfb09eaa
3
+ size 365841
data/issue_comments/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84e4854bfb23ce86e0dddec24568767fd63b88d61b9ba89e820d6bb9e456d39a
3
+ size 838143
data/issues/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae8d62cbe9358b37b7167de0627dbbe65557a3736bf85f41f6931f9fad820632
3
+ size 504714
data/public_events/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c5c8bce6152a5afb9abfc27d5b939220e22cd7dce978cb9597f87500bcf1294
3
+ size 13912
data/pull_requests/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1b5ba95063a192b403158e836c8752bf01ecaf6939be0611837fb8604d39b7d
3
+ size 3105338
data/pushes/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:151b08da4b59cf134a1d09b95b0aaadfe28f09b8ea06c75387853b975a0ecc77
3
+ size 29772565
data/stars/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2e4f6bf3e4699c118e5f7ccac353a8a59e7d84c85c77c3e0134fba8ccd0c2ed
3
+ size 738929
data/wiki_pages/2014/03/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3928aa4cbeb5fb4b2108f38547eae6b3e14aa4395474d1f6d39d0a51d74fd780
3
+ size 363422
stats.csv CHANGED
@@ -939,4 +939,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
939
  2014-03-01,237142,1345,126069,11508,18422,9120,0,1840,21385,8693,28418,4616,534,1613,3339,0,240,0,73230034,141.4,22614144,39.8,141.4,39.8
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,0.0
 
 
939
  2014-03-01,237142,1345,126069,11508,18422,9120,0,1840,21385,8693,28418,4616,534,1613,3339,0,240,0,73230034,141.4,22614144,39.8,141.4,39.8
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