tamnd commited on
Commit
a875712
·
verified ·
1 Parent(s): 947339b

Add 2014-06-19 — 381.5K 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,045 days), totaling **176,879,750 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.1 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 █████████████████████░░░░░░░░░ 53.5M
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 | 165 | 53,531,604 | 324,433 | 16.3 GB | 4.9 GB | 1h47m | 9h18m | 2h30m |
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.3M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
@@ -175,7 +175,7 @@ Issue events track the full lifecycle: opened, closed, reopened, labeled, assign
175
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
176
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
177
  2013 ██████████████████████████████ 4.3M
178
- 2014 ███████████████████░░░░░░░��░░░ 2.9M
179
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
180
  ```
181
 
@@ -197,7 +197,7 @@ Pull request events cover the full review cycle: opened, merged, closed, review
197
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
198
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
199
  2013 ██████████████████████████████ 2.9M
200
- 2014 ████████████████████████░░░░░░ 2.3M
201
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
202
  ```
203
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 88,816,892 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,838,819 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,440,456 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 7,175,055 | 4.1% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,628,827 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,562,592 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,362,229 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 22,249,156 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,237,673 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 203,119 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,654,143 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,946,111 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 163,822 | 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,046 days), totaling **177,261,205 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.2 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
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 █████████████████████░░░░░░░░░ 53.9M
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 | 166 | 53,913,059 | 324,777 | 16.4 GB | 4.9 GB | 1h47m | 9h22m | 2h31m |
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.5M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
175
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
176
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
177
  2013 ██████████████████████████████ 4.3M
178
+ 2014 ███████████████████░░░░░░░░░░ 2.9M
179
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
180
  ```
181
 
 
197
  2011 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
198
  2012 ███████████████░░░░░░░░░░░░░░░ 1.5M
199
  2013 ██████████████████████████████ 2.9M
200
+ 2014 ████████████████████████░░░░░░ 2.4M
201
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.7K
202
  ```
203
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 89,009,295 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,858,212 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,475,627 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 7,193,432 | 4.1% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,634,477 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,597,626 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,376,507 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 22,294,096 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,244,413 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 204,153 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,657,072 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,949,857 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 164,147 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:356d8f44b7224581d9073f3453d4dcd0a9ed1121b13935b3c8fd512dc9d72916
3
+ size 101848
data/creates/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68f823338c9c0aab232e4f7fad293edb9e87bf3785968b8974627d279e7ef1ef
3
+ size 1554301
data/deletes/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0cabf18c1dfd2f35840394df66298a32fd8eb69ef6a91c59529ac0e9bf73d099
3
+ size 195972
data/forks/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:750aa7add394eaebf02d8f7bd369c8ef988593136fae373410a0fc403e8b1f52
3
+ size 379116
data/issue_comments/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b17db3583963756d05037b3119989d0820aefb643ac5c40197ad5035c6e1e1a7
3
+ size 833211
data/issues/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:294c2157e957815a3e3209bc065af52a3bcc6f0f8389e247cfcff5cb2478ebdf
3
+ size 481519
data/public_events/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e66bb6865d96ab3206fffa8953c46028157995a3b7c29a35415fcec69f8bb8f
3
+ size 13229
data/pull_requests/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:437199b00cac525fa89a8e5eb0f714a1fbb9a29cfecfbb3d4aaedc131e5a2dd7
3
+ size 3352491
data/pushes/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9e36a77a3805f3585374261383c9a8010cfdbbb2203c5479b4b5b3f0dee740d
3
+ size 30229737
data/stars/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40b7151757253f421064854762e1ca198151fde2135cb08f91547b0cfd8b18f8
3
+ size 873468
data/wiki_pages/2014/06/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a1133dd45138efa7498125e0eb8f4f3c8f2514f6cb356f71a7eda0e5736faf7
3
+ size 271766
stats.csv CHANGED
@@ -1041,6 +1041,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1041
  2014-06-15,260752,861,141821,11810,19554,9917,0,2009,24633,9931,30257,3990,728,1672,3335,0,234,0,86935350,175.7,28288100,38.9,175.7,46.3
1042
  2014-06-16,394134,1617,192994,18869,36419,18991,0,5928,34288,14283,54681,7150,1019,3526,4015,0,354,0,138649479,279.8,39237564,44.8,279.8,39.4
1043
  2014-06-17,397284,1549,197943,20078,36869,19164,0,6149,36105,14948,47083,8280,989,3492,4249,0,386,0,141915613,278.6,40854501,45.0,278.6,105.1
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,0.0
 
1045
  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
1046
  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
 
1041
  2014-06-15,260752,861,141821,11810,19554,9917,0,2009,24633,9931,30257,3990,728,1672,3335,0,234,0,86935350,175.7,28288100,38.9,175.7,46.3
1042
  2014-06-16,394134,1617,192994,18869,36419,18991,0,5928,34288,14283,54681,7150,1019,3526,4015,0,354,0,138649479,279.8,39237564,44.8,279.8,39.4
1043
  2014-06-17,397284,1549,197943,20078,36869,19164,0,6149,36105,14948,47083,8280,989,3492,4249,0,386,0,141915613,278.6,40854501,45.0,278.6,105.1
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,0.0
1046
  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
1047
  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