Add 2013-10-14 — 273.8K events, 11 files
Browse files- README.md +17 -17
- data/commit_comments/2013/10/14.parquet +3 -0
- data/creates/2013/10/14.parquet +3 -0
- data/deletes/2013/10/14.parquet +3 -0
- data/forks/2013/10/14.parquet +3 -0
- data/issue_comments/2013/10/14.parquet +3 -0
- data/issues/2013/10/14.parquet +3 -0
- data/public_events/2013/10/14.parquet +3 -0
- data/pull_requests/2013/10/14.parquet +3 -0
- data/pushes/2013/10/14.parquet +3 -0
- data/stars/2013/10/14.parquet +3 -0
- data/wiki_pages/2013/10/14.parquet +3 -0
- stats.csv +2 -1
README.md
CHANGED
|
@@ -61,7 +61,7 @@ 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 **2013-10-
|
| 65 |
|
| 66 |
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 28.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.8 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 |
|
|
@@ -138,14 +138,14 @@ duckdb.sql("""
|
|
| 138 |
```
|
| 139 |
2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
|
| 140 |
2012 ██████████████████░░░░░░░░░░░░ 34.3M
|
| 141 |
-
2013 ██████████████████████████████ 55.
|
| 142 |
```
|
| 143 |
|
| 144 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 145 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 146 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 147 |
| 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
|
| 148 |
-
| 2013 |
|
| 149 |
|
| 150 |
|
| 151 |
### Pushes per year
|
|
@@ -153,7 +153,7 @@ duckdb.sql("""
|
|
| 153 |
```
|
| 154 |
2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
|
| 155 |
2012 █████████████████░░░░░░░░░░░░░ 16.5M
|
| 156 |
-
2013 ██████████████████████████████ 28.
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 564 |
|
| 565 |
| Table | GitHub Event | Events | % | Description |
|
| 566 |
|-------|-------------|-------:|---:|-------------|
|
| 567 |
-
| `pushes` | PushEvent | 51,
|
| 568 |
-
| `issues` | IssuesEvent | 5,
|
| 569 |
-
| `issue_comments` | IssueCommentEvent | 8,
|
| 570 |
-
| `pull_requests` | PullRequestEvent | 4,
|
| 571 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 572 |
-
| `stars` | WatchEvent | 9,
|
| 573 |
-
| `forks` | ForkEvent | 3,
|
| 574 |
-
| `creates` | CreateEvent | 13,
|
| 575 |
-
| `deletes` | DeleteEvent |
|
| 576 |
-
| `releases` | ReleaseEvent |
|
| 577 |
-
| `commit_comments` | CommitCommentEvent | 1,
|
| 578 |
-
| `wiki_pages` | GollumEvent | 1,
|
| 579 |
| `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
|
| 580 |
-
| `public_events` | PublicEvent |
|
| 581 |
|
| 582 |
## How it's built
|
| 583 |
|
|
|
|
| 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 **2013-10-14** (806 days), totaling **104,195,639 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 28.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.8 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 |
|
|
|
|
| 138 |
```
|
| 139 |
2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 14.1M
|
| 140 |
2012 ██████████████████░░░░░░░░░░░░ 34.3M
|
| 141 |
+
2013 ██████████████████████████████ 55.8M
|
| 142 |
```
|
| 143 |
|
| 144 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 145 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 146 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 147 |
| 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
|
| 148 |
+
| 2013 | 272 | 55,842,654 | 205,303 | 17.0 GB | 5.3 GB | 2h45m | 7h51m | 3h32m |
|
| 149 |
|
| 150 |
|
| 151 |
### Pushes per year
|
|
|
|
| 153 |
```
|
| 154 |
2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
|
| 155 |
2012 █████████████████░░░░░░░░░░░░░ 16.5M
|
| 156 |
+
2013 ██████████████████████████████ 28.5M
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 564 |
|
| 565 |
| Table | GitHub Event | Events | % | Description |
|
| 566 |
|-------|-------------|-------:|---:|-------------|
|
| 567 |
+
| `pushes` | PushEvent | 51,713,653 | 49.6% | Git pushes with commits |
|
| 568 |
+
| `issues` | IssuesEvent | 5,893,091 | 5.7% | Issue lifecycle events |
|
| 569 |
+
| `issue_comments` | IssueCommentEvent | 8,882,070 | 8.5% | Comments on issues/PRs |
|
| 570 |
+
| `pull_requests` | PullRequestEvent | 4,025,245 | 3.9% | PR lifecycle events |
|
| 571 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 775,551 | 0.7% | Line-level PR comments |
|
| 572 |
+
| `stars` | WatchEvent | 9,892,943 | 9.5% | Repository stars |
|
| 573 |
+
| `forks` | ForkEvent | 3,746,055 | 3.6% | Repository forks |
|
| 574 |
+
| `creates` | CreateEvent | 13,996,892 | 13.4% | Branch/tag/repo creation |
|
| 575 |
+
| `deletes` | DeleteEvent | 894,718 | 0.9% | Branch/tag deletion |
|
| 576 |
+
| `releases` | ReleaseEvent | 41,308 | 0.0% | Release publications |
|
| 577 |
+
| `commit_comments` | CommitCommentEvent | 1,051,158 | 1.0% | Comments on commits |
|
| 578 |
+
| `wiki_pages` | GollumEvent | 1,969,020 | 1.9% | Wiki page edits |
|
| 579 |
| `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
|
| 580 |
+
| `public_events` | PublicEvent | 95,065 | 0.1% | Repo made public |
|
| 581 |
|
| 582 |
## How it's built
|
| 583 |
|
data/commit_comments/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7cf4379b771e35d7de4c04faf3ec59850d0da161631f602481708def7b23c4ff
|
| 3 |
+
size 79872
|
data/creates/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b731ca4bf8a095af9c9aa2ddea0e23f7e01250f3e7225dfbc95ed387959b939
|
| 3 |
+
size 1180905
|
data/deletes/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b759f2175aeb79365b795ad376ab8a69641bb9d18901795f0744834364362a76
|
| 3 |
+
size 132425
|
data/forks/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38ab01a590cba2a68ff1aa27d8470989fa0368fd14e5fe11a2fb063c36f785fb
|
| 3 |
+
size 292010
|
data/issue_comments/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04f841e94d1cd321ea8f03fc66c8ab57dd59cd44dbeda8717474c9ea3c0093b7
|
| 3 |
+
size 574393
|
data/issues/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:567c65e2692158712f65f68e0e052f413e30a5f4fdc1a6ce8f868d6327c958ba
|
| 3 |
+
size 353024
|
data/public_events/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dfbd6a36a112872b50634a291eeba1eb8d25c01543b39d18a95fd730a994d7b2
|
| 3 |
+
size 11582
|
data/pull_requests/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af1e609157653b2f8a37b610a3c95282d093965c72b145f0d89c5ae20f67eda6
|
| 3 |
+
size 2066047
|
data/pushes/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13faf3e5a9f7201593e2e659ca4e4a5a013faa1cebaf93e82681bb25bd0b0a5a
|
| 3 |
+
size 22283614
|
data/stars/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:163ec4c08c33db0f10c15664ed610e48bd5d4faa6818bab612d2345eb4fdce26
|
| 3 |
+
size 609135
|
data/wiki_pages/2013/10/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43f7ea8db0122f5bd16cd5376889b48371f2add9998f4bb7f992eed0df0ad84c
|
| 3 |
+
size 231589
|
stats.csv
CHANGED
|
@@ -803,4 +803,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 803 |
2013-10-10,274850,1775,136399,18101,28107,12164,0,3156,23149,9757,30586,4620,480,2449,3884,0,223,0,89962271,166.3,27713082,33.6,166.3,42.8
|
| 804 |
2013-10-11,257305,1743,122891,18711,28549,10875,0,2620,24021,9398,27837,3878,449,2262,3846,0,225,0,82803354,148.3,25831355,43.3,148.3,50.3
|
| 805 |
2013-10-12,171077,1041,92637,7733,11538,6043,0,1134,17513,6540,19975,2470,322,1279,2709,0,143,0,53943695,94.8,17116235,35.3,94.8,42.5
|
| 806 |
-
2013-10-13,190705,869,102020,8796,13890,6972,0,1273,18697,7053,22263,2629,440,2511,3127,0,165,0,60637331,105.1,20070166,44.1,105.1,
|
|
|
|
|
|
| 803 |
2013-10-10,274850,1775,136399,18101,28107,12164,0,3156,23149,9757,30586,4620,480,2449,3884,0,223,0,89962271,166.3,27713082,33.6,166.3,42.8
|
| 804 |
2013-10-11,257305,1743,122891,18711,28549,10875,0,2620,24021,9398,27837,3878,449,2262,3846,0,225,0,82803354,148.3,25831355,43.3,148.3,50.3
|
| 805 |
2013-10-12,171077,1041,92637,7733,11538,6043,0,1134,17513,6540,19975,2470,322,1279,2709,0,143,0,53943695,94.8,17116235,35.3,94.8,42.5
|
| 806 |
+
2013-10-13,190705,869,102020,8796,13890,6972,0,1273,18697,7053,22263,2629,440,2511,3127,0,165,0,60637331,105.1,20070166,44.1,105.1,31.7
|
| 807 |
+
2013-10-14,273803,1546,136338,14108,24490,11777,0,3267,28576,10546,30871,4860,527,2290,4309,0,298,0,91410843,165.7,27814596,40.8,165.7,0.0
|