Add 2012-10-20 — 97.0K events, 11 files
Browse files- README.md +18 -18
- data/commit_comments/2012/10/20.parquet +3 -0
- data/creates/2012/10/20.parquet +3 -0
- data/deletes/2012/10/20.parquet +3 -0
- data/forks/2012/10/20.parquet +3 -0
- data/issue_comments/2012/10/20.parquet +3 -0
- data/issues/2012/10/20.parquet +3 -0
- data/public_events/2012/10/20.parquet +3 -0
- data/pull_requests/2012/10/20.parquet +3 -0
- data/pushes/2012/10/20.parquet +3 -0
- data/stars/2012/10/20.parquet +3 -0
- data/wiki_pages/2012/10/20.parquet +3 -0
- stats.csv +2 -1
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 **2012-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 9.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.
|
| 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,20 +137,20 @@ duckdb.sql("""
|
|
| 137 |
|
| 138 |
```
|
| 139 |
2011 ███████████████░░░░░░░░░░░░░░░ 14.1M
|
| 140 |
-
2012 ██████████████████████████████ 26.
|
| 141 |
```
|
| 142 |
|
| 143 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 144 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 145 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 146 |
-
| 2012 |
|
| 147 |
|
| 148 |
|
| 149 |
### Pushes per year
|
| 150 |
|
| 151 |
```
|
| 152 |
-
2011 ███████████████
|
| 153 |
-
2012 ██████████████████████████████ 12.
|
| 154 |
```
|
| 155 |
|
| 156 |
|
|
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 558 |
|
| 559 |
| Table | GitHub Event | Events | % | Description |
|
| 560 |
|-------|-------------|-------:|---:|-------------|
|
| 561 |
-
| `pushes` | PushEvent | 19,
|
| 562 |
-
| `issues` | IssuesEvent | 2,
|
| 563 |
-
| `issue_comments` | IssueCommentEvent | 3,
|
| 564 |
-
| `pull_requests` | PullRequestEvent | 1,
|
| 565 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 566 |
-
| `stars` | WatchEvent | 3,
|
| 567 |
-
| `forks` | ForkEvent | 1,
|
| 568 |
-
| `creates` | CreateEvent | 6,
|
| 569 |
-
| `deletes` | DeleteEvent | 340,
|
| 570 |
-
| `commit_comments` | CommitCommentEvent |
|
| 571 |
-
| `wiki_pages` | GollumEvent |
|
| 572 |
| `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
|
| 573 |
-
| `public_events` | PublicEvent | 36,
|
| 574 |
|
| 575 |
## How it's built
|
| 576 |
|
|
|
|
| 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 **2012-10-20** (479 days), totaling **40,727,564 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 9.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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 |
|
|
|
|
| 137 |
|
| 138 |
```
|
| 139 |
2011 ███████████████░░░░░░░░░░░░░░░ 14.1M
|
| 140 |
+
2012 ██████████████████████████████ 26.6M
|
| 141 |
```
|
| 142 |
|
| 143 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 144 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 145 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 146 |
+
| 2012 | 236 | 26,631,420 | 112,845 | 7.0 GB | 2.5 GB | 1h46m | 2h29m | 2h15m |
|
| 147 |
|
| 148 |
|
| 149 |
### Pushes per year
|
| 150 |
|
| 151 |
```
|
| 152 |
+
2011 ███████████████░░░░░░░░░░░░░░░ 6.7M
|
| 153 |
+
2012 ██████████████████████████████ 12.6M
|
| 154 |
```
|
| 155 |
|
| 156 |
|
|
|
|
| 558 |
|
| 559 |
| Table | GitHub Event | Events | % | Description |
|
| 560 |
|-------|-------------|-------:|---:|-------------|
|
| 561 |
+
| `pushes` | PushEvent | 19,225,378 | 47.2% | Git pushes with commits |
|
| 562 |
+
| `issues` | IssuesEvent | 2,181,777 | 5.4% | Issue lifecycle events |
|
| 563 |
+
| `issue_comments` | IssueCommentEvent | 3,154,890 | 7.7% | Comments on issues/PRs |
|
| 564 |
+
| `pull_requests` | PullRequestEvent | 1,650,710 | 4.1% | PR lifecycle events |
|
| 565 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 175,138 | 0.4% | Line-level PR comments |
|
| 566 |
+
| `stars` | WatchEvent | 3,985,639 | 9.8% | Repository stars |
|
| 567 |
+
| `forks` | ForkEvent | 1,284,153 | 3.2% | Repository forks |
|
| 568 |
+
| `creates` | CreateEvent | 6,587,672 | 16.2% | Branch/tag/repo creation |
|
| 569 |
+
| `deletes` | DeleteEvent | 340,826 | 0.8% | Branch/tag deletion |
|
| 570 |
+
| `commit_comments` | CommitCommentEvent | 457,433 | 1.1% | Comments on commits |
|
| 571 |
+
| `wiki_pages` | GollumEvent | 786,562 | 1.9% | Wiki page edits |
|
| 572 |
| `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
|
| 573 |
+
| `public_events` | PublicEvent | 36,634 | 0.1% | Repo made public |
|
| 574 |
|
| 575 |
## How it's built
|
| 576 |
|
data/commit_comments/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b12aa53a742af674546b48307b3b117044d3336d93291c4355a45413d35dec5c
|
| 3 |
+
size 37174
|
data/creates/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73ae200b0f103ef2906dbe25ec0ba5dc7c668eed362070591abfad8daab7fc9e
|
| 3 |
+
size 456392
|
data/deletes/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:056538007ca78634bceca818612a23428e9a9ae3ea1f3b78c1c5a9d2506a8a6b
|
| 3 |
+
size 18950
|
data/forks/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67032d918031c498911f09995b7e99e9652e474e567c18e17b32b867f5adf1f1
|
| 3 |
+
size 104969
|
data/issue_comments/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3d9b61ab85f3b90a9c1b77b06bce44f6ddcb6dfe16ea28294766f5a2f97399d
|
| 3 |
+
size 159881
|
data/issues/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e87438924de17cd6488a02f8b823d03b3ae47aa621604255f0f08534e33f5211
|
| 3 |
+
size 139521
|
data/public_events/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f92a6b3135f4e28d5d4b46cdbf734314dd2c5c653648a2fce271fefd3da79504
|
| 3 |
+
size 5258
|
data/pull_requests/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b68f99baa198579ba0cce471d64b74ef1c56b08a402097c4d79d1d02c6b607b
|
| 3 |
+
size 514986
|
data/pushes/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:727da86299676c45a93ee31ddeb6c53026edcd26452e5388318a4b0b8f440e77
|
| 3 |
+
size 8039353
|
data/stars/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67b1b1e90b6cf13f37edeed9eb55d5239522434a0a476167c9509e6009fa2410
|
| 3 |
+
size 202799
|
data/wiki_pages/2012/10/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10969f62cf994020bccbf803d69314380c99a7e6416b9839c34425e9687d64ee
|
| 3 |
+
size 158626
|
stats.csv
CHANGED
|
@@ -476,4 +476,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 476 |
2012-10-16,160647,1155,78716,10004,18573,6341,0,1521,14176,5992,18161,1002,0,1615,3252,0,139,0,48223103,26.8,15771661,27.0,26.8,40.9
|
| 477 |
2012-10-17,152676,1251,78831,7745,12954,5788,0,1324,13502,5803,19278,938,0,1719,3379,0,164,0,47254620,26.3,15754473,25.9,26.3,39.3
|
| 478 |
2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,30.8
|
| 479 |
-
2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,
|
|
|
|
|
|
| 476 |
2012-10-16,160647,1155,78716,10004,18573,6341,0,1521,14176,5992,18161,1002,0,1615,3252,0,139,0,48223103,26.8,15771661,27.0,26.8,40.9
|
| 477 |
2012-10-17,152676,1251,78831,7745,12954,5788,0,1324,13502,5803,19278,938,0,1719,3379,0,164,0,47254620,26.3,15754473,25.9,26.3,39.3
|
| 478 |
2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,30.8
|
| 479 |
+
2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,25.3
|
| 480 |
+
2012-10-20,96980,796,52389,5654,6399,2600,0,513,8517,3765,12822,486,0,806,2145,0,88,0,28177714,31.3,9837909,22.7,31.3,0.0
|