tamnd commited on
Commit
047b283
·
verified ·
1 Parent(s): d4ed6b8

Add 2015-01-02 — 0 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 **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,7 +723,7 @@ duckdb.sql("""
723
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
724
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
725
  2013 ██████████████████████████████ 74.5M
726
- 2014 █████████████░░░░░░░░░░░░░░░░░ 33.8M
727
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218.9K
728
  ```
729
 
@@ -732,7 +732,7 @@ duckdb.sql("""
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
 
@@ -742,7 +742,7 @@ duckdb.sql("""
742
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
743
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
744
  2013 ██████████████████████████████ 38.1M
745
- 2014 █████████████░░░░░░░░░░░░░░░░░ 17.2M
746
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 119.2K
747
  ```
748
 
@@ -1160,20 +1160,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
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
 
 
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** (989 days), totaling **157,303,526 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 45.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.8 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 █████████████░░░░░░░░░░░░░░░░░ 34.2M
727
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218.9K
728
  ```
729
 
 
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 | 110 | 34,248,190 | 311,347 | 10.4 GB | 3.1 GB | 1h13m | 5h53m | 1h41m |
736
  | 2015 | 1 | 218,939 | 218,939 | 70.3 MB | 36.1 MB | 16s | 1m19s | — |
737
 
738
 
 
742
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
743
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
744
  2013 ██████████████████████████████ 38.1M
745
+ 2014 █████████████░░░░░░░░░░░░░░░░░ 17.4M
746
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 119.2K
747
  ```
748
 
 
1160
 
1161
  | Table | GitHub Event | Events | % | Description |
1162
  |-------|-------------|-------:|---:|-------------|
1163
+ | `pushes` | PushEvent | 78,818,278 | 50.1% | Git pushes with commits |
1164
+ | `issues` | IssuesEvent | 8,810,002 | 5.6% | Issue lifecycle events |
1165
+ | `issue_comments` | IssueCommentEvent | 13,662,716 | 8.7% | Comments on issues/PRs |
1166
+ | `pull_requests` | PullRequestEvent | 6,312,221 | 4.0% | PR lifecycle events |
1167
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,368,202 | 0.9% | Line-level PR comments |
1168
+ | `stars` | WatchEvent | 14,795,908 | 9.4% | Repository stars |
1169
+ | `forks` | ForkEvent | 5,652,542 | 3.6% | Repository forks |
1170
+ | `creates` | CreateEvent | 19,998,914 | 12.7% | Branch/tag/repo creation |
1171
+ | `deletes` | DeleteEvent | 1,855,574 | 1.2% | Branch/tag deletion |
1172
+ | `releases` | ReleaseEvent | 154,589 | 0.1% | Release publications |
1173
+ | `commit_comments` | CommitCommentEvent | 1,496,849 | 1.0% | Comments on commits |
1174
+ | `wiki_pages` | GollumEvent | 2,724,018 | 1.7% | Wiki page edits |
1175
  | `members` | MemberEvent | 103,111 | 0.1% | Collaborator additions |
1176
+ | `public_events` | PublicEvent | 145,412 | 0.1% | Repo made public |
1177
 
1178
  ## How it's built
1179
 
data/commit_comments/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfe3976f0842cf76e2834592a1903403a5fae7ac38b237faef5559ee3f004ce4
3
+ size 281064
data/creates/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d9b8bc93568ec8a6fe5859445813d08bb812caed77746a51dc79dbd4816e9d6
3
+ size 1547511
data/deletes/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4451b7546fcbdfe92be78943f7183d1008e6ba7a5c909b517535fbf1d6eadc9
3
+ size 202379
data/forks/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:914177a4aef1400dc174598afcb54fa61a5731c44fc19937dac7140fcb615ba7
3
+ size 1200693
data/issue_comments/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ddc1bf9ab2169f41248591e72d4a38723d65549016e9974c3214a72f9b33a61
3
+ size 5990987
data/issues/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0a48d20d035c00e8f874e1503edd28095911537e1cb81619ce253dac9eec331
3
+ size 4241408
data/members/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93969e5201bcc9be40c4f8e19cf6696dd98b1c14247f56322a35e454f35542ec
3
+ size 45665
data/pr_review_comments/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e407456112e30233a88469d57551c4524268d52cd6ec3d2e51c75e702e8447d
3
+ size 1595148
data/public_events/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22c4882a2b698ecdda3b4cf4ba09323632d8a652d6d1cb798916fc0b5ccaa503
3
+ size 15353
data/pull_requests/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:896f488cf32f95ca947e0b3bc9598538e404d97bed9d27ea3485db8491869b93
3
+ size 2758407
data/pushes/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:999063892162082f243e31540ae42e3db210bda42067157590d594792fe2db3b
3
+ size 39886865
data/releases/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4fdaebedc6ef06c06935bf5957df204b63209d47c0c6a7e2223db79d617e7af
3
+ size 184577
data/stars/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7c87319f4cb44a74ea33debbe811486eeca9f15699ac584c7f119578720e6e5
3
+ size 975401
data/wiki_pages/2015/01/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3de99555b75ce806dab09a8c664868e5ce0b3470becc3e6a940c0b11de3bf05
3
+ size 193405
stats.csv CHANGED
@@ -984,5 +984,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
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,127.4
988
+ 2014-04-19,231383,1001,126260,10346,16193,8598,0,1827,21388,8711,27808,3634,545,1487,3382,0,203,0,71725886,169.5,22544538,59.0,169.5,0.0
989
+ 2014-04-20,238612,938,131239,10150,16604,8151,0,1801,22557,9597,28687,3073,614,1538,3472,0,191,0,73504927,167.6,23634811,29.0,167.6,0.0
990
  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