tamnd commited on
Commit
b6d7393
·
verified ·
1 Parent(s): 4f85f9b

Add 2014-06-22 — 252.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 **2015-01-03** (1,048 days), totaling **177,761,730 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 51.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.6 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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 █████████████████████░░░░░░░░ 54.4M
138
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
139
  ```
140
 
@@ -143,7 +143,7 @@ duckdb.sql("""
143
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
144
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
145
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
146
- | 2014 | 168 | 54,413,584 | 323,890 | 16.6 GB | 5.0 GB | 1h49m | 9h28m | 2h32m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
@@ -155,7 +155,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
155
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
156
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
157
  2013 ██████████████████████████████ 38.1M
158
- 2014 █████████████████████░░░░░░░░░ 27.7M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 89,270,793 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,880,790 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,516,274 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,215,059 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,640,130 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,643,401 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,396,762 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,354,491 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,253,387 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 205,515 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,661,008 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,955,155 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 164,575 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
 
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-03** (1,049 days), totaling **178,013,840 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 51.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 █████████████████████░░░░░░░░ 54.7M
138
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
139
  ```
140
 
 
143
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
144
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
145
  | 2013 | 344 | 74,483,412 | 216,521 | 22.7 GB | 7.0 GB | 3h27m | 10h53m | 4h29m |
146
+ | 2014 | 169 | 54,665,694 | 323,465 | 16.7 GB | 5.0 GB | 1h49m | 9h30m | 2h33m |
147
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
148
 
149
 
 
155
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
156
  2012 ████████████░░░░░░░░░░░░░░░░░░ 16.5M
157
  2013 ██████████████████████████████ 38.1M
158
+ 2014 █████████████████████░░░░░░░░░ 27.9M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 89,408,068 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,891,182 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,534,130 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,223,526 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,642,205 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,667,678 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,407,314 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,386,068 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,256,718 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 206,176 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,662,751 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,958,027 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 164,784 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b329488811e813fe0ca7635c9986369f57af2913b76898ed03914fbd50e3c0fd
3
+ size 63790
data/creates/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cd36ec692a3eabc22fcd2d2c30bec72ce24db378fe0144ebf06a503a6a29190
3
+ size 1111665
data/deletes/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de7f5a78c5ca7de532129f7fadbd935b6e4d39a074f0c2d8c5848d1bb6ce15ca
3
+ size 99517
data/forks/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adee75b75a9618738ccc4a6ac7406c7e021ff49ded047e1e33b15e286319f228
3
+ size 264063
data/issue_comments/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ca489bac8ee19c38ec765073d7b5238ec5af1bf2a1152d8107e59b9a901dcec
3
+ size 434851
data/issues/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45097076bca8133bc0c73931967bd40f6a6af5ad809a8698c9433684925689f3
3
+ size 279744
data/public_events/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a813682aeb62f433bd94b5abd8eccb25a139577c6e3fb425c75047acbf1c2c40
3
+ size 9334
data/pull_requests/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6d5a394aac3fbe3a0f3d000832c6bd3a20d5ee3f2adea8c91bb06ce937de45c
3
+ size 1538506
data/pushes/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96bb2ef5ba1287fe3b3746ecb064d6d950f24503c31d4ed4f4f4d1d262e0a552
3
+ size 19899058
data/stars/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96b4cc1a12663412ca49ed4b126522b561a8521f911f5a8fd7d7b485393d40a9
3
+ size 603752
data/wiki_pages/2014/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:134376ad7eb51e270fe1468a5bb778aa9be44cee0e407631df101cc6d1c40fc3
3
+ size 208004
stats.csv CHANGED
@@ -1044,6 +1044,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1044
  2014-06-18,395304,1511,198042,21382,36868,18956,0,6619,34722,14658,44196,6699,947,6265,4098,0,341,0,140973432,268.3,39112409,33.3,268.3,48.9
1045
  2014-06-19,381455,1435,192403,19393,35171,18377,0,5650,35034,14278,44940,6740,1034,2929,3746,0,325,0,134349068,257.4,38286658,34.7,257.4,47.8
1046
  2014-06-20,298206,1179,151406,14256,26384,14434,0,4241,27174,11752,34570,6042,812,2566,3126,0,264,0,105692313,195.4,30715112,39.2,195.4,45.6
1047
- 2014-06-21,202319,920,110092,8322,14263,7193,0,1412,18601,8503,25825,2932,550,1370,2172,0,164,0,63875580,129.4,19903230,32.2,129.4,0.0
 
1048
  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
1049
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0
 
1044
  2014-06-18,395304,1511,198042,21382,36868,18956,0,6619,34722,14658,44196,6699,947,6265,4098,0,341,0,140973432,268.3,39112409,33.3,268.3,48.9
1045
  2014-06-19,381455,1435,192403,19393,35171,18377,0,5650,35034,14278,44940,6740,1034,2929,3746,0,325,0,134349068,257.4,38286658,34.7,257.4,47.8
1046
  2014-06-20,298206,1179,151406,14256,26384,14434,0,4241,27174,11752,34570,6042,812,2566,3126,0,264,0,105692313,195.4,30715112,39.2,195.4,45.6
1047
+ 2014-06-21,202319,920,110092,8322,14263,7193,0,1412,18601,8503,25825,2932,550,1370,2172,0,164,0,63875580,129.4,19903230,32.2,129.4,44.1
1048
+ 2014-06-22,252110,823,137275,10392,17856,8467,0,2075,24277,10552,31577,3331,661,1743,2872,0,209,0,79531119,153.0,24512284,36.7,153.0,0.0
1049
  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
1050
  2015-01-03,292810,0,155315,15037,26081,11958,0,2946,28410,9430,31862,4560,963,1829,3178,983,258,0,100890756,100.1,51394128,4.6,100.1,48.0