tamnd commited on
Commit
821cb8f
·
verified ·
1 Parent(s): f5ee8c9

Add 2014-11-27 — 425.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,357 days), totaling **247,731,595 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 82.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.7 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 ██████████████████████████████ 110.5M
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 | 313 | 110,495,482 | 353,020 | 44.4 GB | 10.3 GB | 3h43m | 19h37m | 4h38m |
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 ██████████████████████████████ 55.9M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
@@ -225,7 +225,7 @@ Stars (WatchEvent in the GitHub API) reflect community interest and discovery. S
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ████████████░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████░░░░░░░░░ 7.1M
228
- 2014 ██████████████████████��███████ 9.9M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
@@ -639,20 +639,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
- | `pushes` | PushEvent | 124,382,027 | 50.2% | Git pushes with commits |
643
- | `issues` | IssuesEvent | 14,228,730 | 5.7% | Issue lifecycle events |
644
- | `issue_comments` | IssueCommentEvent | 21,654,535 | 8.7% | Comments on issues/PRs |
645
- | `pull_requests` | PullRequestEvent | 10,162,926 | 4.1% | PR lifecycle events |
646
- | `pr_review_comments` | PullRequestReviewCommentEvent | 2,507,884 | 1.0% | Line-level PR comments |
647
- | `stars` | WatchEvent | 22,977,448 | 9.3% | Repository stars |
648
- | `forks` | ForkEvent | 8,724,787 | 3.5% | Repository forks |
649
- | `creates` | CreateEvent | 31,122,459 | 12.6% | Branch/tag/repo creation |
650
- | `deletes` | DeleteEvent | 3,337,543 | 1.3% | Branch/tag deletion |
651
- | `releases` | ReleaseEvent | 355,339 | 0.1% | Release publications |
652
- | `commit_comments` | CommitCommentEvent | 2,226,243 | 0.9% | Comments on commits |
653
- | `wiki_pages` | GollumEvent | 3,848,916 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
- | `public_events` | PublicEvent | 229,144 | 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,358 days), totaling **248,157,411 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 82.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 14.7 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 ██████████████████████████████ 110.9M
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 | 314 | 110,921,298 | 353,252 | 44.6 GB | 10.3 GB | 3h44m | 19h39m | 4h38m |
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 ██████████████████████████████ 56.1M
163
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 274.6K
164
  ```
165
 
 
225
  2011 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 1.8M
226
  2012 ████████████░░░░░░░░░░░░░░░░░░ 4.0M
227
  2013 █████████████████████░░░░░░░░░ 7.1M
228
+ 2014 █████████████████████████████ 10.0M
229
  2015 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 50.3K
230
  ```
231
 
 
639
 
640
  | Table | GitHub Event | Events | % | Description |
641
  |-------|-------------|-------:|---:|-------------|
642
+ | `pushes` | PushEvent | 124,597,789 | 50.2% | Git pushes with commits |
643
+ | `issues` | IssuesEvent | 14,257,747 | 5.7% | Issue lifecycle events |
644
+ | `issue_comments` | IssueCommentEvent | 21,695,978 | 8.7% | Comments on issues/PRs |
645
+ | `pull_requests` | PullRequestEvent | 10,180,571 | 4.1% | PR lifecycle events |
646
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,513,253 | 1.0% | Line-level PR comments |
647
+ | `stars` | WatchEvent | 23,014,395 | 9.3% | Repository stars |
648
+ | `forks` | ForkEvent | 8,738,166 | 3.5% | Repository forks |
649
+ | `creates` | CreateEvent | 31,171,854 | 12.6% | Branch/tag/repo creation |
650
+ | `deletes` | DeleteEvent | 3,344,370 | 1.3% | Branch/tag deletion |
651
+ | `releases` | ReleaseEvent | 356,599 | 0.1% | Release publications |
652
+ | `commit_comments` | CommitCommentEvent | 2,229,094 | 0.9% | Comments on commits |
653
+ | `wiki_pages` | GollumEvent | 3,852,538 | 1.6% | Wiki page edits |
654
  | `members` | MemberEvent | 134,526 | 0.1% | Collaborator additions |
655
+ | `public_events` | PublicEvent | 229,497 | 0.1% | Repo made public |
656
 
657
  ## How it's built
658
 
data/commit_comments/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a18cf8419863d70a419a573c64b2656af3632e61e5f5dc6bf2a26cfc7bb577cd
3
+ size 100536
data/creates/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:383d2d89e9615bc95209f30e6504ed15370dfdc10bf963504260b638bbc1ed51
3
+ size 7722178
data/deletes/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbcf0ab44efeed8cd4d43275d5ee597fd3b7204a16b0a75090fe7eb0f2c4f2a7
3
+ size 194733
data/forks/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a97125a081d82fe8dde1d63dc2d1b655599e588216e0e4be2d7cec6364b7b4e6
3
+ size 358216
data/issue_comments/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38b26c1b18980e2ed5864f492495362e1e2584d4953f6d071621a9b9526c19ca
3
+ size 914485
data/issues/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:828831c654f7a254c82c014a36b09d85822effb02b598febdc5219ff66aaa968
3
+ size 695522
data/public_events/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:056b8c37a405ef7bcc8305c4f4ec52d9cf8a6e316b0774963187d9aefb385185
3
+ size 14253
data/pull_requests/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93af19a48be7f6b1207e909aa9f685e5c5cde68047a456cfcfea2afdc53feb7b
3
+ size 3086789
data/pushes/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3957d306cb728098ab8f3fcd83cd63bf619bd4a505d717a9472b64c03ce14ee
3
+ size 31644401
data/stars/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bfe1da9ec1496d33f3105e21160de457a2091a2b86787e93bdadb3ea1271915
3
+ size 1728556
data/wiki_pages/2014/11/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f69fec6ec6bddddccb58cb56168b6a4a7b475708e21e76045af646038b8a2f5
3
+ size 271123
stats.csv CHANGED
@@ -1353,6 +1353,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
1353
  2014-11-23,382742,1834,206102,23384,25932,14519,0,3612,32905,13467,47542,5766,1101,2392,3819,0,367,0,211552051,103.4,42287216,44.3,103.4,31.7
1354
  2014-11-24,506417,2896,257025,29919,46339,24452,0,9181,43456,15305,58311,8970,1396,3818,4857,0,492,0,290969828,138.8,54913421,60.8,138.8,43.4
1355
  2014-11-25,516507,2677,260987,35404,45822,24330,0,9204,42896,15738,59237,9697,1341,3526,5139,0,509,0,299226481,142.4,56354200,69.8,142.4,52.1
1356
- 2014-11-26,493043,2460,250911,31591,44580,23249,0,7963,40653,15197,57728,8415,1279,3231,5379,0,407,0,285600544,133.0,55221327,54.4,133.0,0.0
 
1357
  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
1358
  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
 
1353
  2014-11-23,382742,1834,206102,23384,25932,14519,0,3612,32905,13467,47542,5766,1101,2392,3819,0,367,0,211552051,103.4,42287216,44.3,103.4,31.7
1354
  2014-11-24,506417,2896,257025,29919,46339,24452,0,9181,43456,15305,58311,8970,1396,3818,4857,0,492,0,290969828,138.8,54913421,60.8,138.8,43.4
1355
  2014-11-25,516507,2677,260987,35404,45822,24330,0,9204,42896,15738,59237,9697,1341,3526,5139,0,509,0,299226481,142.4,56354200,69.8,142.4,52.1
1356
+ 2014-11-26,493043,2460,250911,31591,44580,23249,0,7963,40653,15197,57728,8415,1279,3231,5379,0,407,0,285600544,133.0,55221327,54.4,133.0,29.7
1357
+ 2014-11-27,425816,1946,215762,29017,41443,17645,0,5369,36947,13379,49395,6827,1260,2851,3622,0,353,0,239671720,114.9,46730792,52.2,114.9,0.0
1358
  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
1359
  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