tamnd commited on
Commit
1aa29ce
·
verified ·
1 Parent(s): 0df8bb6

Add 2014-03-02 — 268.4K 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-01** (938 days), totaling **140,841,632 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.2 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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.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 | 60 | 18,005,235 | 300,087 | 5.5 GB | 1.7 GB | 40m20s | 2h50m | 47m26s |
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.2M
744
  ```
745
 
746
 
@@ -750,7 +750,7 @@ duckdb.sql("""
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
- 2014 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 987.6K
754
  ```
755
 
756
 
@@ -760,7 +760,7 @@ duckdb.sql("""
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████��███████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
- 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 781.4K
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,428,047 | 50.0% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 7,950,517 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 12,186,316 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 5,591,850 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,166,574 | 0.8% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 13,305,319 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,068,669 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 18,090,686 | 12.8% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,527,442 | 1.1% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 117,017 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,365,606 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,496,506 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 129,465 | 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-02** (939 days), totaling **141,110,067 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 13.2 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 ███████░░░░░░░░░░░░░░░░░░░░░░░ 18.3M
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 | 61 | 18,273,670 | 299,568 | 5.5 GB | 1.7 GB | 41m03s | 2h53m | 48m06s |
735
 
736
 
737
  ### Pushes per year
 
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
+ 2014 ███████░░░░░░░░░░░░░░░░░░░░░░░ 9.3M
744
  ```
745
 
746
 
 
750
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
+ 2014 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 999.7K
754
  ```
755
 
756
 
 
760
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
761
  2012 ███████��███████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
+ 2014 ████████░░░░░░░░░░░░░░░░░░░░░░ 792.0K
764
  ```
765
 
766
 
 
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
+ | `pushes` | PushEvent | 70,570,491 | 50.0% | Git pushes with commits |
1158
+ | `issues` | IssuesEvent | 7,962,627 | 5.6% | Issue lifecycle events |
1159
+ | `issue_comments` | IssueCommentEvent | 12,207,336 | 8.7% | Comments on issues/PRs |
1160
+ | `pull_requests` | PullRequestEvent | 5,602,408 | 4.0% | PR lifecycle events |
1161
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,168,915 | 0.8% | Line-level PR comments |
1162
+ | `stars` | WatchEvent | 13,330,321 | 9.4% | Repository stars |
1163
+ | `forks` | ForkEvent | 5,078,197 | 3.6% | Repository forks |
1164
+ | `creates` | CreateEvent | 18,122,231 | 12.8% | Branch/tag/repo creation |
1165
+ | `deletes` | DeleteEvent | 1,532,768 | 1.1% | Branch/tag deletion |
1166
+ | `releases` | ReleaseEvent | 117,667 | 0.1% | Release publications |
1167
+ | `commit_comments` | CommitCommentEvent | 1,367,860 | 1.0% | Comments on commits |
1168
+ | `wiki_pages` | GollumEvent | 2,500,682 | 1.8% | Wiki page edits |
1169
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
+ | `public_events` | PublicEvent | 129,734 | 0.1% | Repo made public |
1171
 
1172
  ## How it's built
1173
 
data/commit_comments/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a1594d2fd9b518ac3a8aec22b6db1ba979213e979bd4b4463cbead98822da9c
3
+ size 78792
data/creates/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb81afd17a537f5dd6cf7e4624dc176243cadafb0662722917f36abae40b36bf
3
+ size 1089757
data/deletes/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4be4909b27ff19bccec8d14b49b418ed4a4d82134fc778c7799ffa27e628111
3
+ size 131770
data/forks/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28617bdcc51126d05709de108e58b3ca3c457b9a9bd2b7dcb96bbc2e85dab912
3
+ size 260095
data/issue_comments/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:765168eaf45d753a2851e5f441e7fe6f99a1e85ec6c524974dd5b15b1628114f
3
+ size 515511
data/issues/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e290e7f537dc8f4ee1560472b93aac46db96989358a6e57d3de11539a4c65a6a
3
+ size 313817
data/public_events/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dd7cc2ea9fd40b8102c1f422e57a11a38209e29b22f855c08fe4369563389b6
3
+ size 11068
data/pull_requests/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0078f70cf8066e506ad0e77e5b03c050df7aa9dc73896f925585e69079d56f5
3
+ size 1916748
data/pushes/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:423a46011944d8d88e7ba116a8fb0507e97232fd1490b5a2776c5ec2ef627ff9
3
+ size 20969072
data/stars/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abe383573226303c3c96fe71f4539c08a402613cf381dfc5b191843574faf1a9
3
+ size 571327
data/wiki_pages/2014/03/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aa9fdada4f6d6b1a50c2c397a471897c970b3da2d2ca3c10ec88ec3f4c632eb
3
+ size 275451
stats.csv CHANGED
@@ -936,4 +936,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
936
  2014-02-26,387963,2116,192209,20928,38772,18537,0,5146,34077,14678,43093,8950,863,3032,5244,0,318,0,129621281,254.6,37889672,43.7,254.6,49.5
937
  2014-02-27,378071,2089,188944,18878,35611,18775,0,4758,33964,14366,43820,7303,870,3170,5172,0,351,0,125854321,236.1,37649870,43.4,236.1,50.1
938
  2014-02-28,326197,1948,164442,16755,30774,16188,0,4135,27891,11794,37500,6696,720,2735,4308,0,311,0,109358746,219.7,32197931,35.3,219.7,40.1
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,0.0
 
 
936
  2014-02-26,387963,2116,192209,20928,38772,18537,0,5146,34077,14678,43093,8950,863,3032,5244,0,318,0,129621281,254.6,37889672,43.7,254.6,49.5
937
  2014-02-27,378071,2089,188944,18878,35611,18775,0,4758,33964,14366,43820,7303,870,3170,5172,0,351,0,125854321,236.1,37649870,43.4,236.1,50.1
938
  2014-02-28,326197,1948,164442,16755,30774,16188,0,4135,27891,11794,37500,6696,720,2735,4308,0,311,0,109358746,219.7,32197931,35.3,219.7,40.1
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,0.0