tamnd commited on
Commit
70b9685
·
verified ·
1 Parent(s): 4cc35f8

Add 2014-12-23 — 411.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,383 days), totaling **259,019,542 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 88.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.9 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
 
@@ -138,7 +138,7 @@ duckdb.sql("""
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
- 2014 ██████████████████████████████ 121.8M
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 | 339 | 121,783,429 | 359,243 | 50.5 GB | 11.5 GB | 4h07m | 20h26m | 4h55m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
@@ -157,9 +157,9 @@ Pushes are the most common event type, representing roughly half of all GitHub a
157
 
158
  ```
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
- 2012 █████████░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
- 2014 ██████████████████████████████ 61.7M
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 | 130,140,342 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 14,921,273 | 5.8% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 22,644,733 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,676,375 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,674,498 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 23,934,942 | 9.2% | Repository stars |
648
- | `forks` | ForkEvent | 9,083,047 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 32,493,333 | 12.5% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,533,734 | 1.4% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 387,236 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,303,093 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,963,127 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 240,330 | 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,384 days), totaling **259,430,550 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 89.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 15.9 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
 
 
138
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.0M
139
  2012 ██████████░░░░░░░░░░░░░░░░░░░░ 42.5M
140
  2013 ██████████████████░░░░░░░░░░░░ 76.2M
141
+ 2014 ██████████████████████████████ 122.2M
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 | 340 | 122,194,437 | 359,395 | 50.7 GB | 11.5 GB | 4h07m | 20h27m | 4h57m |
151
  | 2015 | 2 | 511,749 | 255,874 | 166.6 MB | 85.1 MB | 20s | 2m59s | 48s |
152
 
153
 
 
157
 
158
  ```
159
  2011 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 8.7M
160
+ 2012 █████████░░░░░░░░░░░░░░░░░░░░ 20.6M
161
  2013 ██████████████████░░░░░░░░░░░░ 38.9M
162
+ 2014 ██████████████████████████████ 61.9M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 130,329,078 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 14,942,114 | 5.8% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 22,679,061 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,694,266 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,680,397 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 23,970,941 | 9.2% | Repository stars |
648
+ | `forks` | ForkEvent | 9,095,652 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 32,571,605 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,540,762 | 1.4% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 388,450 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,305,594 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,967,171 | 1.5% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 240,644 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:942f9a1fb628ce3265d564ce4f14413f07b25758345f8407bf646831989ccd4c
3
+ size 87936
data/creates/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87ae6a63f941f12a3c3aad77413e52119f2f6f8ec0e6d808994aaa9ad77fa939
3
+ size 4901507
data/deletes/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:247913c014125240a479520dda1a1ade815132e8909996fd7f07734e234333d6
3
+ size 198032
data/forks/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fbebb3d8a055a37154028a3e9e95c1e3ebea1c1765e68f61f25101c278db7f3
3
+ size 338898
data/issue_comments/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64655ef6ce22e8a1210f4da951f7441d90b24a69d671c3e0094e2f98d69a5817
3
+ size 830466
data/issues/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90e236daae6b3f53383c3028fddeed1f8c85fce45d51a35f6f1f373e7f797a10
3
+ size 547568
data/public_events/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c2c92b1282318e3ea9a8630baf7cb392cd00fe9391ede52d531cb6386588624
3
+ size 12828
data/pull_requests/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a1367b0ed5351d628317538628474dcc6e13a8497ce9fb9763960a1df344b02
3
+ size 3164377
data/pushes/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a0e1a1d0b8feb469b9d930e8df556404f12acfd935e9543c543f449b9ab11e7
3
+ size 28359562
data/stars/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e5be286da331ad3cc363b25a011b61f440202c2dc6174680b798815da402f32
3
+ size 1641616
data/wiki_pages/2014/12/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9c03f220da3643d21dc07f08378b503243cf0612e121370002a22c1d10043e5
3
+ size 216163
stats.csv CHANGED
@@ -1379,6 +1379,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1379
  2014-12-19,402672,1650,197102,26880,38232,20396,0,6440,33159,12669,49271,7093,1301,2904,5156,0,419,0,240250866,104.0,47063681,99.5,104.0,42.1
1380
  2014-12-20,283329,923,145653,20043,20836,10758,0,2358,24504,10353,36825,4818,919,1768,3294,0,277,0,158905359,66.9,30730667,61.0,66.9,101.8
1381
  2014-12-21,318996,1001,164448,17148,22561,11558,0,2513,31758,12846,44062,4932,912,1908,3076,0,273,0,173318264,71.1,33679633,49.7,71.1,104.0
1382
- 2014-12-22,410126,1300,189604,24179,36058,17597,0,6030,35918,12625,72125,7004,1089,2597,3625,0,375,0,229958428,105.1,41506593,70.1,105.1,0.0
 
1383
  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
1384
  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
 
1379
  2014-12-19,402672,1650,197102,26880,38232,20396,0,6440,33159,12669,49271,7093,1301,2904,5156,0,419,0,240250866,104.0,47063681,99.5,104.0,42.1
1380
  2014-12-20,283329,923,145653,20043,20836,10758,0,2358,24504,10353,36825,4818,919,1768,3294,0,277,0,158905359,66.9,30730667,61.0,66.9,101.8
1381
  2014-12-21,318996,1001,164448,17148,22561,11558,0,2513,31758,12846,44062,4932,912,1908,3076,0,273,0,173318264,71.1,33679633,49.7,71.1,104.0
1382
+ 2014-12-22,410126,1300,189604,24179,36058,17597,0,6030,35918,12625,72125,7004,1089,2597,3625,0,375,0,229958428,105.1,41506593,70.1,105.1,95.6
1383
+ 2014-12-23,411008,1336,188736,20841,34328,17891,0,5899,35999,12605,78272,7028,1214,2501,4044,0,314,0,226075356,111.5,40298953,50.1,111.5,0.0
1384
  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
1385
  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