Add 2011-05-20 — 43.1K events, 11 files
Browse files- README.md +19 -19
- data/commit_comments/2011/05/20.parquet +3 -0
- data/creates/2011/05/20.parquet +3 -0
- data/deletes/2011/05/20.parquet +3 -0
- data/forks/2011/05/20.parquet +3 -0
- data/issues/2011/05/20.parquet +3 -0
- data/members/2011/05/20.parquet +3 -0
- data/public_events/2011/05/20.parquet +3 -0
- data/pull_requests/2011/05/20.parquet +3 -0
- data/pushes/2011/05/20.parquet +3 -0
- data/stars/2011/05/20.parquet +3 -0
- data/wiki_pages/2011/05/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 **2011-05-
|
| 65 |
|
| 66 |
-
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original
|
| 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,34 +136,34 @@ duckdb.sql("""
|
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
-
| 2011 |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
| 143 |
|
| 144 |
```
|
| 145 |
-
2011 ██████████████████████████████ 1.
|
| 146 |
```
|
| 147 |
|
| 148 |
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
-
2011 ██████████████████████████████
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
-
2011 ██████████████████████████████
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
-
2011 ██████████████████████████████
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
-
| `pushes` | PushEvent | 1,
|
| 551 |
-
| `issues` | IssuesEvent |
|
| 552 |
-
| `issue_comments` | IssueCommentEvent |
|
| 553 |
-
| `pull_requests` | PullRequestEvent |
|
| 554 |
-
| `stars` | WatchEvent |
|
| 555 |
-
| `forks` | ForkEvent |
|
| 556 |
-
| `creates` | CreateEvent |
|
| 557 |
-
| `deletes` | DeleteEvent | 37,
|
| 558 |
-
| `commit_comments` | CommitCommentEvent |
|
| 559 |
-
| `wiki_pages` | GollumEvent |
|
| 560 |
-
| `members` | MemberEvent | 18,
|
| 561 |
-
| `public_events` | PublicEvent | 2,
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
|
|
|
| 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 **2011-05-20** (63 days), totaling **2,720,848 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 507.9 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 266.0 MB 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 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
+
| 2011 | 63 | 2,720,848 | 43,188 | 507.9 MB | 266.0 MB | 9m00s | 12m15s | 24m02s |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
| 143 |
|
| 144 |
```
|
| 145 |
+
2011 ██████████████████████████████ 1.5M
|
| 146 |
```
|
| 147 |
|
| 148 |
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
+
2011 ██████████████████████████████ 136.2K
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
+
2011 ██████████████████████████████ 66.5K
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
+
2011 ██████████████████████████████ 316.2K
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
+
| `pushes` | PushEvent | 1,456,499 | 53.5% | Git pushes with commits |
|
| 551 |
+
| `issues` | IssuesEvent | 136,193 | 5.0% | Issue lifecycle events |
|
| 552 |
+
| `issue_comments` | IssueCommentEvent | 110,960 | 4.1% | Comments on issues/PRs |
|
| 553 |
+
| `pull_requests` | PullRequestEvent | 66,480 | 2.4% | PR lifecycle events |
|
| 554 |
+
| `stars` | WatchEvent | 316,194 | 11.6% | Repository stars |
|
| 555 |
+
| `forks` | ForkEvent | 80,913 | 3.0% | Repository forks |
|
| 556 |
+
| `creates` | CreateEvent | 386,926 | 14.2% | Branch/tag/repo creation |
|
| 557 |
+
| `deletes` | DeleteEvent | 37,822 | 1.4% | Branch/tag deletion |
|
| 558 |
+
| `commit_comments` | CommitCommentEvent | 39,253 | 1.4% | Comments on commits |
|
| 559 |
+
| `wiki_pages` | GollumEvent | 68,649 | 2.5% | Wiki page edits |
|
| 560 |
+
| `members` | MemberEvent | 18,452 | 0.7% | Collaborator additions |
|
| 561 |
+
| `public_events` | PublicEvent | 2,507 | 0.1% | Repo made public |
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
data/commit_comments/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d23e0c84d2bf68219ffcf431d764a8a0232bf32c77e6c2dcefdbb1b9834ac4ee
|
| 3 |
+
size 30475
|
data/creates/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5cb551abc326e44d671b5f39c4edad657d7a439863b6b70c506972a0ba3f0fd2
|
| 3 |
+
size 138009
|
data/deletes/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1221517713b789128365b3b0d925277cb7a95caf3537fe5bf7ca55c25f49c173
|
| 3 |
+
size 18898
|
data/forks/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b867518e569e30758b3340c3278f5719aa27f310b5c66ca5bf7edfd58926b0de
|
| 3 |
+
size 58534
|
data/issues/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b14d3fcd83938f58eb5f02515d07bda3454faec4a2779cd7d291c55f040ce8b9
|
| 3 |
+
size 76212
|
data/members/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2b2634a1e6c9ba9d12fbde5ae42734ddb505af626bb1e59dab16ee1a6fdf4b0
|
| 3 |
+
size 13211
|
data/public_events/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d01117b15c7de45766cf8584bca4a3dcabcd8038485f19d7bec6d0934ecbaa6
|
| 3 |
+
size 4189
|
data/pull_requests/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c5538c31376612bd9208682b22d5c43864b171971d9b6a418c7ba66370049234
|
| 3 |
+
size 78593
|
data/pushes/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91af734d4be0668c285d1b65313f9e073f3f0c314fb8075f7e16d03a71c15561
|
| 3 |
+
size 3811995
|
data/stars/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2eca21deda43e9a7f3dabe4607882bc5b7b6f5cfa931ec781e381395a69208b8
|
| 3 |
+
size 154607
|
data/wiki_pages/2011/05/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49f5e0c00f11d18de2b286d19b663a33a0d51f45bce47c15bd8158dab8827da8
|
| 3 |
+
size 58118
|
stats.csv
CHANGED
|
@@ -60,4 +60,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 60 |
2011-05-16,67909,0,26376,8372,15018,1284,0,0,5619,1425,6732,805,0,721,1190,312,55,0,10340464,24.9,5143200,20.1,24.9,25.0
|
| 61 |
2011-05-17,52264,0,27367,2579,3862,1416,0,0,6046,1511,6165,672,0,720,1537,347,42,0,10400147,19.0,5398350,7.0,19.0,18.6
|
| 62 |
2011-05-18,52309,0,27549,2443,3685,1500,0,0,6581,1529,6231,819,0,665,969,300,38,0,10442039,20.7,5166525,7.1,20.7,22.7
|
| 63 |
-
2011-05-19,54736,0,27382,2559,3696,1507,0,0,6679,1649,8236,705,0,826,1150,295,52,0,10571843,20.5,5450408,7.2,20.5,
|
|
|
|
|
|
| 60 |
2011-05-16,67909,0,26376,8372,15018,1284,0,0,5619,1425,6732,805,0,721,1190,312,55,0,10340464,24.9,5143200,20.1,24.9,25.0
|
| 61 |
2011-05-17,52264,0,27367,2579,3862,1416,0,0,6046,1511,6165,672,0,720,1537,347,42,0,10400147,19.0,5398350,7.0,19.0,18.6
|
| 62 |
2011-05-18,52309,0,27549,2443,3685,1500,0,0,6581,1529,6231,819,0,665,969,300,38,0,10442039,20.7,5166525,7.1,20.7,22.7
|
| 63 |
+
2011-05-19,54736,0,27382,2559,3696,1507,0,0,6679,1649,8236,705,0,826,1150,295,52,0,10571843,20.5,5450408,7.2,20.5,18.9
|
| 64 |
+
2011-05-20,43104,0,22640,2127,2838,1217,0,0,5203,1468,5189,442,0,607,1090,241,42,0,8673621,17.5,4442841,6.4,17.5,0.0
|