tamnd commited on
Commit
4a6b528
·
verified ·
1 Parent(s): 2cd61bc

Add 2015-01-01 — 218.9K events, 14 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-04-17** (985 days), totaling **156,345,831 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 44.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.7 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,8 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 █████████████░░░░░░░░░░░░░░░░░ 33.5M
 
727
  ```
728
 
729
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
@@ -731,7 +732,8 @@ 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 | 107 | 33,509,434 | 313,172 | 10.2 GB | 3.1 GB | 1h11m | 5h44m | 1h38m |
 
735
 
736
 
737
  ### Pushes per year
@@ -740,7 +742,8 @@ duckdb.sql("""
740
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
741
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
742
  2013 ██████████████████████████████ 38.1M
743
- 2014 █████████████░░░░░░░░░░░░░░░░░ 17.0M
 
744
  ```
745
 
746
 
@@ -751,6 +754,7 @@ duckdb.sql("""
751
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
752
  2013 ██████████████████████████████ 4.3M
753
  2014 ████████████░░░░░░░░░░░░░░░░░░ 1.8M
 
754
  ```
755
 
756
 
@@ -761,6 +765,7 @@ duckdb.sql("""
761
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
762
  2013 ██████████████████████████████ 2.9M
763
  2014 ███████████████░░░░░░░░░░░░░░░ 1.5M
 
764
  ```
765
 
766
 
@@ -771,6 +776,7 @@ duckdb.sql("""
771
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
772
  2013 ██████████████████████████████ 7.0M
773
  2014 █████████████░░░░░░░░░░░░░░░░░ 3.1M
 
774
  ```
775
 
776
 
@@ -1154,20 +1160,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
1154
 
1155
  | Table | GitHub Event | Events | % | Description |
1156
  |-------|-------------|-------:|---:|-------------|
1157
- | `pushes` | PushEvent | 78,300,942 | 50.1% | Git pushes with commits |
1158
- | `issues` | IssuesEvent | 8,766,879 | 5.6% | Issue lifecycle events |
1159
- | `issue_comments` | IssueCommentEvent | 13,590,471 | 8.7% | Comments on issues/PRs |
1160
- | `pull_requests` | PullRequestEvent | 6,275,026 | 4.0% | PR lifecycle events |
1161
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,358,801 | 0.9% | Line-level PR comments |
1162
- | `stars` | WatchEvent | 14,705,782 | 9.4% | Repository stars |
1163
- | `forks` | ForkEvent | 5,617,390 | 3.6% | Repository forks |
1164
- | `creates` | CreateEvent | 19,887,046 | 12.7% | Branch/tag/repo creation |
1165
- | `deletes` | DeleteEvent | 1,840,618 | 1.2% | Branch/tag deletion |
1166
- | `releases` | ReleaseEvent | 151,944 | 0.1% | Release publications |
1167
- | `commit_comments` | CommitCommentEvent | 1,490,363 | 1.0% | Comments on commits |
1168
- | `wiki_pages` | GollumEvent | 2,711,339 | 1.7% | Wiki page edits |
1169
- | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
1170
- | `public_events` | PublicEvent | 144,599 | 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 **2015-01-01** (987 days), totaling **156,833,531 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 44.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.7 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 █████████████░░░░░░░░░░░░░░░░░ 33.8M
727
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218.9K
728
  ```
729
 
730
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
 
732
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
733
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
734
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
735
+ | 2014 | 108 | 33,778,195 | 312,761 | 10.2 GB | 3.1 GB | 1h11m | 5h47m | 1h39m |
736
+ | 2015 | 1 | 218,939 | 218,939 | 70.3 MB | 36.1 MB | 16s | 1m19s | — |
737
 
738
 
739
  ### Pushes per year
 
742
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
743
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
744
  2013 ██████████████████████████████ 38.1M
745
+ 2014 █████████████░░░░░░░░░░░░░░░░░ 17.2M
746
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 119.2K
747
  ```
748
 
749
 
 
754
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
755
  2013 ██████████████████████████████ 4.3M
756
  2014 ████████████░░░░░░░░░░░░░░░░░░ 1.8M
757
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.8K
758
  ```
759
 
760
 
 
765
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
766
  2013 ██████████████████████████████ 2.9M
767
  2014 ███████████████░░░░░░░░░░░░░░░ 1.5M
768
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7K
769
  ```
770
 
771
 
 
776
  2012 ██████████████░░░░░░░░░░░░░░░░ 3.3M
777
  2013 ██████████████████████████████ 7.0M
778
  2014 █████████████░░░░░░░░░░░░░░░░░ 3.1M
779
+ 2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21.9K
780
  ```
781
 
782
 
 
1160
 
1161
  | Table | GitHub Event | Events | % | Description |
1162
  |-------|-------------|-------:|---:|-------------|
1163
+ | `pushes` | PushEvent | 78,560,779 | 50.1% | Git pushes with commits |
1164
+ | `issues` | IssuesEvent | 8,789,506 | 5.6% | Issue lifecycle events |
1165
+ | `issue_comments` | IssueCommentEvent | 13,629,919 | 8.7% | Comments on issues/PRs |
1166
+ | `pull_requests` | PullRequestEvent | 6,295,472 | 4.0% | PR lifecycle events |
1167
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,364,574 | 0.9% | Line-level PR comments |
1168
+ | `stars` | WatchEvent | 14,751,963 | 9.4% | Repository stars |
1169
+ | `forks` | ForkEvent | 5,634,234 | 3.6% | Repository forks |
1170
+ | `creates` | CreateEvent | 19,942,419 | 12.7% | Branch/tag/repo creation |
1171
+ | `deletes` | DeleteEvent | 1,848,867 | 1.2% | Branch/tag deletion |
1172
+ | `releases` | ReleaseEvent | 153,430 | 0.1% | Release publications |
1173
+ | `commit_comments` | CommitCommentEvent | 1,493,824 | 1.0% | Comments on commits |
1174
+ | `wiki_pages` | GollumEvent | 2,717,164 | 1.7% | Wiki page edits |
1175
+ | `members` | MemberEvent | 103,111 | 0.1% | Collaborator additions |
1176
+ | `public_events` | PublicEvent | 145,018 | 0.1% | Repo made public |
1177
 
1178
  ## How it's built
1179
 
data/commit_comments/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f901dbffa546e0afe6030e66d03e17d37478b8b75738b655bd26f64fd8e0219
3
+ size 181712
data/creates/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83021468edcf49d5cc219913e377db6887a7883ae4d01374690c37d0af3ad8d7
3
+ size 1005674
data/deletes/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61fe78d19e19248913bf0537764fd54576e061fb99fc104c413792ec1a5b03b5
3
+ size 125770
data/forks/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aefc7dd6e24281b790d85352cf702afcea85d264502c99f258290d202ccbfc35
3
+ size 805844
data/issue_comments/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c157cd9aec9ebed171ae873ff1b4902c84b2a57adc1186f0b2c1d09d922b7d18
3
+ size 3379628
data/issues/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e518e3070998d1f276829a77fa4aaadbbe5c094d4f9192a99599110f0ccfcb46
3
+ size 2339742
data/members/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f8b6d7ac55bd14bcbf793d2eee4b10b79773ee652fc1cf0f551b04946d1826d
3
+ size 25009
data/pr_review_comments/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29ac69df6152063c11b8c3c19d613fdd6cd5a2c16f9a8438d7e4ed2b3854cd82
3
+ size 668530
data/public_events/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:985011f1644406575f20474ef96422638b1e8b96302064e1222a933b8f21b12d
3
+ size 9847
data/pull_requests/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60267b0f0157b80c4efb2cc3671d4630adb1f9ac71ac077ca3000c04ab8ccaff
3
+ size 1603803
data/pushes/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e252b779f2eb6896096ea5dd32a8c4f22a1ea890d386da6e663a2d9b66b55c91
3
+ size 26745513
data/releases/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29d17c17915e7d74350a12fea71698db9da0fbc0dac46e23967b4c98513e3706
3
+ size 130127
data/stars/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e96c815dc8d86184240282816e986406a11c58c79d8e6f257dbcaa8f794bbe8a
3
+ size 659443
data/wiki_pages/2015/01/01.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ef4bcf2ba925ca390915e732ca0895af843069e50f918b27786cd46e2bf3aa7
3
+ size 129590
stats.csv CHANGED
@@ -983,4 +983,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
983
  2014-04-14,403615,2345,200906,28024,34608,19433,0,5738,35522,14232,45069,8242,834,3184,5117,0,361,0,132697398,312.7,40042663,47.1,312.7,60.7
984
  2014-04-15,374205,2171,189900,17181,33576,17753,0,5681,34758,13541,44203,6521,798,3074,4717,0,331,0,124614113,278.0,37336329,43.5,278.0,60.3
985
  2014-04-16,380725,1942,190617,17725,34179,17889,0,5409,32586,13227,41825,16810,836,2902,4406,0,372,0,124229290,278.8,37352401,31.9,278.8,55.3
986
- 2014-04-17,347914,1826,182559,16191,30081,15722,0,5020,30689,12628,38828,6231,767,2866,4158,0,348,0,116443650,257.2,35068619,33.0,257.2,0.0
 
 
 
983
  2014-04-14,403615,2345,200906,28024,34608,19433,0,5738,35522,14232,45069,8242,834,3184,5117,0,361,0,132697398,312.7,40042663,47.1,312.7,60.7
984
  2014-04-15,374205,2171,189900,17181,33576,17753,0,5681,34758,13541,44203,6521,798,3074,4717,0,331,0,124614113,278.0,37336329,43.5,278.0,60.3
985
  2014-04-16,380725,1942,190617,17725,34179,17889,0,5409,32586,13227,41825,16810,836,2902,4406,0,372,0,124229290,278.8,37352401,31.9,278.8,55.3
986
+ 2014-04-17,347914,1826,182559,16191,30081,15722,0,5020,30689,12628,38828,6231,767,2866,4158,0,348,0,116443650,257.2,35068619,33.0,257.2,87.1
987
+ 2014-04-18,268761,1257,140595,12784,22403,11711,0,3600,24242,9700,31460,4406,670,2062,3629,0,242,0,88801801,195.6,26925915,26.6,195.7,0.0
988
+ 2015-01-01,218939,0,119242,9843,17045,8735,0,2173,21939,7144,23913,3843,816,1399,2196,474,177,0,73764980,79.7,37810232,15.9,79.7,0.0