tamnd commited on
Commit
3f7ba3a
·
verified ·
1 Parent(s): 1c62e4e

Add 2014-06-06 — 343.8K 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,033 days), totaling **172,698,713 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 49.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
@@ -134,7 +134,7 @@ duckdb.sql("""
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
- 2014 ███████████████████░░░░░░░░░░ 49.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 | 153 | 49,350,567 | 322,552 | 14.9 GB | 4.5 GB | 1h38m | 8h31m | 2h18m |
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 ███████████████████░░░░░░░░░░░ 25.2M
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.6M
179
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
180
  ```
181
 
@@ -610,20 +610,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
- | `pushes` | PushEvent | 86,695,637 | 50.2% | Git pushes with commits |
614
- | `issues` | IssuesEvent | 9,634,835 | 5.6% | Issue lifecycle events |
615
- | `issue_comments` | IssueCommentEvent | 15,067,714 | 8.7% | Comments on issues/PRs |
616
- | `pull_requests` | PullRequestEvent | 6,982,919 | 4.0% | PR lifecycle events |
617
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,569,096 | 0.9% | Line-level PR comments |
618
- | `stars` | WatchEvent | 16,182,160 | 9.4% | Repository stars |
619
- | `forks` | ForkEvent | 6,205,347 | 3.6% | Repository forks |
620
- | `creates` | CreateEvent | 21,743,843 | 12.6% | Branch/tag/repo creation |
621
- | `deletes` | DeleteEvent | 2,163,540 | 1.3% | Branch/tag deletion |
622
- | `releases` | ReleaseEvent | 192,716 | 0.1% | Release publications |
623
- | `commit_comments` | CommitCommentEvent | 1,616,676 | 0.9% | Comments on commits |
624
- | `wiki_pages` | GollumEvent | 2,901,394 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
- | `public_events` | PublicEvent | 159,919 | 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,034 days), totaling **173,042,555 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 49.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 16.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
 
 
134
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
135
  2012 █████████████░░░░░░░░░░░░░░░░░ 34.3M
136
  2013 ██████████████████████████████ 74.5M
137
+ 2014 ███████████████████░░░░░░░░░░ 49.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 | 154 | 49,694,409 | 322,690 | 15.1 GB | 4.5 GB | 1h39m | 8h35m | 2h19m |
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 ███████████████████░░░░░░░░░░░ 25.3M
159
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
160
  ```
161
 
 
175
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
176
  2012 █████████████░░░░░░░░░░░░░░░░░ 1.9M
177
  2013 ██████████████████████████████ 4.3M
178
+ 2014 ██████████████████░░░░░░░░░░░ 2.7M
179
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 24.9K
180
  ```
181
 
 
610
 
611
  | Table | GitHub Event | Events | % | Description |
612
  |-------|-------------|-------:|---:|-------------|
613
+ | `pushes` | PushEvent | 86,871,883 | 50.2% | Git pushes with commits |
614
+ | `issues` | IssuesEvent | 9,651,719 | 5.6% | Issue lifecycle events |
615
+ | `issue_comments` | IssueCommentEvent | 15,098,451 | 8.7% | Comments on issues/PRs |
616
+ | `pull_requests` | PullRequestEvent | 6,999,860 | 4.0% | PR lifecycle events |
617
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 1,574,405 | 0.9% | Line-level PR comments |
618
+ | `stars` | WatchEvent | 16,211,922 | 9.4% | Repository stars |
619
+ | `forks` | ForkEvent | 6,218,158 | 3.6% | Repository forks |
620
+ | `creates` | CreateEvent | 21,783,002 | 12.6% | Branch/tag/repo creation |
621
+ | `deletes` | DeleteEvent | 2,170,131 | 1.3% | Branch/tag deletion |
622
+ | `releases` | ReleaseEvent | 193,571 | 0.1% | Release publications |
623
+ | `commit_comments` | CommitCommentEvent | 1,619,543 | 0.9% | Comments on commits |
624
+ | `wiki_pages` | GollumEvent | 2,904,956 | 1.7% | Wiki page edits |
625
  | `members` | MemberEvent | 104,094 | 0.1% | Collaborator additions |
626
+ | `public_events` | PublicEvent | 160,287 | 0.1% | Repo made public |
627
 
628
  ## How it's built
629
 
data/commit_comments/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:891212e037137a697333330de01451c4bef3f6fe2aafd772b1d5e537a9e38d1c
3
+ size 99431
data/creates/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02acf9ac59cb04a2f8cf7f373d40c5c13ffa2a163c66a74aa60aa8dc669085bd
3
+ size 1407608
data/deletes/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5702e86752c3fb2eb2b625ddb26b49b62e66ac8622cc36b627fdbed7c1d89aa6
3
+ size 183695
data/forks/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71a10c38b40b35c13f4dc6f6bd0bd70a4165333d8f18b534877d2d6c1df8ff0b
3
+ size 337624
data/issue_comments/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e141b3335f3b4b61f25a89b22023528b0c94f16eec52fd30ddb271d97671b0d2
3
+ size 758759
data/issues/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25cc0d77f96f2795882c5aaa1367c0f5fc89ad50a23ad58bb21194630709e852
3
+ size 466324
data/public_events/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e5e830e8ceee3bf682b4b536c5ab20aae4dfa03436016e9e2e2a9bc0d45a2e0
3
+ size 14533
data/pull_requests/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19dad42cab51a70c2b1a2015168ba78c3309295f27e0cb09b63dcd84bf178cf7
3
+ size 2811150
data/pushes/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d31c8aef7483c50cf9ad47edf435aef9ded7d7d944456bf88fdc40c53ded575a
3
+ size 27935222
data/stars/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1742b51f134feb270a75e4dbcfe4c27b82af80f4918e4f7d565532411eac5af1
3
+ size 650996
data/wiki_pages/2014/06/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:179192c59eef3c13099caa2bf57b34b97072b6bc22d0c8ef8a4e92fa9725214b
3
+ size 195573
stats.csv CHANGED
@@ -1028,7 +1028,8 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1028
  2014-06-02,393757,1888,187510,18421,35905,17737,0,5650,30738,13402,43827,29810,1049,2966,4422,0,432,0,126730837,215.2,37545118,30.4,215.2,40.0
1029
  2014-06-03,414247,1876,200116,26536,40550,18735,0,6520,36347,15385,46266,13126,932,3181,4283,0,394,0,135488017,227.0,40325944,44.9,227.0,41.5
1030
  2014-06-04,421183,1929,203102,24099,41803,19016,0,6374,36680,15954,48123,14005,996,4529,4184,0,389,0,137410289,239.9,40352570,38.3,239.9,78.9
1031
- 2014-06-05,396877,1920,198204,19562,36707,18459,0,6463,34734,14752,49866,7392,927,3248,4247,0,396,0,133996335,230.3,39689231,43.1,230.4,0.0
 
1032
  2014-06-07,228855,1329,124445,10539,15797,8473,0,1789,21638,9124,27776,3314,518,1722,2178,0,213,0,72638845,127.2,22443441,43.5,127.2,0.0
1033
  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
1034
  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
 
1028
  2014-06-02,393757,1888,187510,18421,35905,17737,0,5650,30738,13402,43827,29810,1049,2966,4422,0,432,0,126730837,215.2,37545118,30.4,215.2,40.0
1029
  2014-06-03,414247,1876,200116,26536,40550,18735,0,6520,36347,15385,46266,13126,932,3181,4283,0,394,0,135488017,227.0,40325944,44.9,227.0,41.5
1030
  2014-06-04,421183,1929,203102,24099,41803,19016,0,6374,36680,15954,48123,14005,996,4529,4184,0,389,0,137410289,239.9,40352570,38.3,239.9,78.9
1031
+ 2014-06-05,396877,1920,198204,19562,36707,18459,0,6463,34734,14752,49866,7392,927,3248,4247,0,396,0,133996335,230.3,39689231,43.1,230.4,48.1
1032
+ 2014-06-06,343842,1750,176246,16884,30737,16941,0,5309,29762,12811,39159,6591,855,2867,3562,0,368,0,122759819,213.0,34860915,42.2,213.0,0.0
1033
  2014-06-07,228855,1329,124445,10539,15797,8473,0,1789,21638,9124,27776,3314,518,1722,2178,0,213,0,72638845,127.2,22443441,43.5,127.2,0.0
1034
  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
1035
  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