tamnd commited on
Commit
4ced158
·
verified ·
1 Parent(s): d1e4fb1

Add 2014-11-18 — 540.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,348 days), totaling **243,453,346 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 80.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.3 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
 
@@ -136,9 +136,9 @@ duckdb.sql("""
136
 
137
  ```
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
- 2012 ███████████░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 106.2M
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 | 304 | 106,217,233 | 349,398 | 42.1 GB | 9.9 GB | 3h35m | 19h19m | 4h31m |
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 ██████████████████████████████ 53.8M
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 | 122,233,833 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 13,877,525 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,290,264 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 9,967,613 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,441,006 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,628,275 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,589,934 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 30,637,395 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,264,148 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 343,996 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,197,242 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,806,731 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 225,254 | 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,349 days), totaling **243,993,415 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 80.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.3 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
 
 
136
 
137
  ```
138
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
+ 2012 ███████████░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 █████████████████████░░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 106.8M
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 | 305 | 106,757,302 | 350,023 | 42.4 GB | 9.9 GB | 3h35m | 19h21m | 4h32m |
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 ██████████████████████████████ 54.0M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 122,498,760 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 13,928,384 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,336,950 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 9,992,227 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,449,950 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 22,671,585 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,606,883 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 30,696,301 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,274,787 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 345,314 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,201,011 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,812,258 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 225,756 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea206122858f595f3f474b7997f7509f2739446875c1c35d32432b436f4ca11e
3
+ size 131477
data/creates/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86101384e4cf8fd1bb7e093abf087ce6ff10cb349671200515c184093bb3a512
3
+ size 5351868
data/deletes/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:546db4378ec7fb705f78e3c28d26e47ad831a8128691da9e33050d39f6ec4e70
3
+ size 275120
data/forks/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e23a121ab25cc8ce632a2d0c4cf1e2630031faa9585444080e4daf7f2f53b7f4
3
+ size 504409
data/issue_comments/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c569e72dd9b2f3fe8e45f65155d2b471d590edfe3e1427ef7062fcb326152741
3
+ size 1086680
data/issues/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91c66733d9fa02a797ffc4c5f43c9c80c5ac49257fa9be2e9292eea5bebcc907
3
+ size 1024803
data/public_events/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19bc260bf67fd7ae46c07aefae6d184dfe3def738bba2e91055639feece3de85
3
+ size 19026
data/pull_requests/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b30c18fb86ed0ab2723e9676c982a9e27b56f4b81096653378632036893ac775
3
+ size 4382743
data/pushes/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:155bb82003646296c9093ff0460e885898d4f9f3ebe0b6dbd3f4253df6b49162
3
+ size 40262553
data/stars/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:080ed7a69452c12d9d3756313a04fd466d3e920a0679f511907d7621b3a6e526
3
+ size 1965563
data/wiki_pages/2014/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6529f8a9fe3ee106743491dd168efcddcb9ce95d96a820c8d2d9d1f1761916cf
3
+ size 283346
stats.csv CHANGED
@@ -1344,6 +1344,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1344
  2014-11-14,470118,3044,222962,53477,39053,20463,0,7029,39187,14233,52578,8479,1111,3221,4782,0,499,0,269689027,128.1,51981891,59.7,128.1,38.1
1345
  2014-11-15,379317,2344,181467,59688,28732,12391,0,2490,28209,10822,41118,5016,847,1979,3870,0,344,0,199238480,96.5,36822465,55.9,96.5,31.4
1346
  2014-11-16,429838,1910,202449,70809,30544,14195,0,3574,34356,12964,45202,5515,1022,2451,4523,0,324,0,224650413,109.1,40367998,62.4,109.1,107.6
1347
- 2014-11-17,516913,3001,255543,39339,45620,24098,0,8761,43073,16612,59381,10030,1449,4085,5363,0,558,0,292418524,139.0,54597433,50.1,139.0,0.0
 
1348
  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
1349
  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
 
1344
  2014-11-14,470118,3044,222962,53477,39053,20463,0,7029,39187,14233,52578,8479,1111,3221,4782,0,499,0,269689027,128.1,51981891,59.7,128.1,38.1
1345
  2014-11-15,379317,2344,181467,59688,28732,12391,0,2490,28209,10822,41118,5016,847,1979,3870,0,344,0,199238480,96.5,36822465,55.9,96.5,31.4
1346
  2014-11-16,429838,1910,202449,70809,30544,14195,0,3574,34356,12964,45202,5515,1022,2451,4523,0,324,0,224650413,109.1,40367998,62.4,109.1,107.6
1347
+ 2014-11-17,516913,3001,255543,39339,45620,24098,0,8761,43073,16612,59381,10030,1449,4085,5363,0,558,0,292418524,139.0,54597433,50.1,139.0,76.6
1348
+ 2014-11-18,540069,3119,264927,50859,46686,24614,0,8944,43310,16949,58906,10639,1318,3769,5527,0,502,0,301841430,127.3,55287588,46.3,127.3,0.0
1349
  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
1350
  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