tamnd commited on
Commit
9306186
·
verified ·
1 Parent(s): ed46340

Add 2014-10-02 — 433.0K 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,305 days), totaling **225,092,256 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 70.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.5 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
 
@@ -137,8 +137,8 @@ duckdb.sql("""
137
  ```
138
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
140
- 2013 █████████████████████████░░░░ 76.2M
141
- 2014 ██████████████████████████████ 87.9M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
@@ -147,7 +147,7 @@ duckdb.sql("""
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
- | 2014 | 261 | 87,856,143 | 336,613 | 32.6 GB | 8.1 GB | 2h56m | 18h02m | 4h00m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -159,7 +159,7 @@ Pushes are the most common event type, representing roughly half of all GitHub a
159
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 █████████████░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████████████░░░░ 38.9M
162
- 2014 ██████████████████████████████ 44.4M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 112,883,871 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 12,775,184 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 19,665,270 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,151,751 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,190,321 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 21,045,909 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 7,990,592 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 28,402,529 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 2,956,357 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 295,966 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,071,192 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,608,380 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 206,994 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
 
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,306 days), totaling **225,525,225 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 71.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 12.5 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
 
 
137
  ```
138
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████████░░░░░░░░░░░░░░░░ 42.5M
140
+ 2013 █████████████████████████░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 88.3M
142
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511.7K
143
  ```
144
 
 
147
  | 2011 | 323 | 18,032,583 | 55,828 | 3.5 GB | 76.6 MB | 47m29s | 52m20s | 33m17s |
148
  | 2012 | 366 | 42,537,517 | 116,222 | 11.5 GB | 161.5 MB | 1h19m | 2h30m | 35m15s |
149
  | 2013 | 353 | 76,154,264 | 215,734 | 23.2 GB | 4.1 GB | 2h33m | 8h52m | 2h34m |
150
+ | 2014 | 262 | 88,289,112 | 336,981 | 32.9 GB | 8.1 GB | 2h57m | 18h03m | 4h01m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
159
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
  2012 █████████████░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████████████░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 44.6M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 113,106,756 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 12,797,200 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 19,705,803 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,172,424 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,198,294 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 21,081,195 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,003,828 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 28,453,216 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 2,963,914 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 297,066 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,074,243 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,613,489 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 207,387 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dd46a76a2f728f242718e01915506d059f9236766ae61511d742729dee5221b
3
+ size 106137
data/creates/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2875b6a0c95158f787e84265d9d0a0c7987972015470b32740065888552c4aff
3
+ size 2812327
data/deletes/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a10fe46879adbf2e1c36b476d0ad9d78c9ad9e06a076b17b673869afa79d1e8d
3
+ size 216332
data/forks/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcd33d0bf7213a08cca9fe6cf2221f129d1a471c84e5c28e0319cf0f60440fc1
3
+ size 356947
data/issue_comments/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08aa52fb49b10393340ac10ac7ebb7371cdae032b26cdb35b38144f4cbda2676
3
+ size 1038140
data/issues/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa8288db43b8032176d8fd3298f0242452200e151e31a433d7b89f6d6ba5acbd
3
+ size 564384
data/public_events/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e20effd633cb0e0e1076cbf1f78c6018a4120409a09ad75c45e98e648079477
3
+ size 14607
data/pull_requests/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd93282ae1324d32d6eb6eeffec7cd7ff2f3ad78bd8e2a18a5d57d9d2d814f86
3
+ size 3791833
data/pushes/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5744f37026aeb04a70a5948939d17befdd4b477ed795e52c564b279f6a9da6b
3
+ size 34899554
data/stars/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8603eb40a2e41eea7a00d0f862b3102142227dbacf3310d623682eab5c27fef2
3
+ size 1549001
data/wiki_pages/2014/10/02.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:296331b4dc7ed4208864b2037179d0fc4574ce3a3f9b5b5a2106adf74d785989
3
+ size 263603
stats.csv CHANGED
@@ -1301,6 +1301,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1301
  2014-09-28,312064,1396,165788,19457,22157,11952,0,2831,29520,10185,37981,4314,818,1995,3348,0,322,0,171614176,83.8,32013649,50.2,83.8,27.6
1302
  2014-09-29,464642,2504,224477,41359,43724,22107,0,8116,36786,14392,52797,8261,1262,3199,5173,0,485,0,278313825,125.4,51830651,52.1,125.4,60.0
1303
  2014-09-30,430315,2421,215439,29075,40998,20813,0,7598,34346,13039,48988,7703,1214,3394,4796,0,491,0,243462198,117.1,44165709,55.4,117.1,36.0
1304
- 2014-10-01,433454,2339,218079,25444,43464,22703,0,7750,33962,12867,49143,7925,1174,3309,4877,0,418,0,246544359,96.1,46361216,62.8,96.1,0.0
 
1305
  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
1306
  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
 
1301
  2014-09-28,312064,1396,165788,19457,22157,11952,0,2831,29520,10185,37981,4314,818,1995,3348,0,322,0,171614176,83.8,32013649,50.2,83.8,27.6
1302
  2014-09-29,464642,2504,224477,41359,43724,22107,0,8116,36786,14392,52797,8261,1262,3199,5173,0,485,0,278313825,125.4,51830651,52.1,125.4,60.0
1303
  2014-09-30,430315,2421,215439,29075,40998,20813,0,7598,34346,13039,48988,7703,1214,3394,4796,0,491,0,243462198,117.1,44165709,55.4,117.1,36.0
1304
+ 2014-10-01,433454,2339,218079,25444,43464,22703,0,7750,33962,12867,49143,7925,1174,3309,4877,0,418,0,246544359,96.1,46361216,62.8,96.1,33.0
1305
+ 2014-10-02,432969,2470,222885,22016,40533,20673,0,7973,35286,13236,50687,7557,1100,3051,5109,0,393,0,244027217,95.4,45612865,60.8,95.4,0.0
1306
  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
1307
  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