Add 2011-04-14 — 51.5K events, 11 files
Browse files- README.md +20 -20
- data/commit_comments/2011/04/14.parquet +3 -0
- data/creates/2011/04/14.parquet +3 -0
- data/deletes/2011/04/14.parquet +3 -0
- data/forks/2011/04/14.parquet +3 -0
- data/issues/2011/04/14.parquet +3 -0
- data/members/2011/04/14.parquet +3 -0
- data/public_events/2011/04/14.parquet +3 -0
- data/pull_requests/2011/04/14.parquet +3 -0
- data/pushes/2011/04/14.parquet +3 -0
- data/stars/2011/04/14.parquet +3 -0
- data/wiki_pages/2011/04/14.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-04-
|
| 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 |
|
|
@@ -131,39 +131,39 @@ duckdb.sql("""
|
|
| 131 |
## Events per year
|
| 132 |
|
| 133 |
```
|
| 134 |
-
2011 ██████████████████████████████ 1.
|
| 135 |
```
|
| 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 ██████████████████████████████
|
| 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 |
|
| 551 |
-
| `issues` | IssuesEvent |
|
| 552 |
-
| `issue_comments` | IssueCommentEvent |
|
| 553 |
-
| `pull_requests` | PullRequestEvent |
|
| 554 |
-
| `stars` | WatchEvent |
|
| 555 |
-
| `forks` | ForkEvent |
|
| 556 |
-
| `creates` | CreateEvent |
|
| 557 |
-
| `deletes` | DeleteEvent | 22,
|
| 558 |
-
| `commit_comments` | CommitCommentEvent |
|
| 559 |
-
| `wiki_pages` | GollumEvent |
|
| 560 |
-
| `members` | MemberEvent | 11,
|
| 561 |
-
| `public_events` | PublicEvent | 1,
|
| 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-04-14** (39 days), totaling **1,601,470 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 304.7 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 161.7 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 |
|
|
|
|
| 131 |
## Events per year
|
| 132 |
|
| 133 |
```
|
| 134 |
+
2011 ██████████████████████████████ 1.6M
|
| 135 |
```
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
+
| 2011 | 39 | 1,601,470 | 41,063 | 304.7 MB | 161.7 MB | 5m47s | 7m32s | 14m57s |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
| 143 |
|
| 144 |
```
|
| 145 |
+
2011 ██████████████████████████████ 887.8K
|
| 146 |
```
|
| 147 |
|
| 148 |
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
+
2011 ██████████████████████████████ 69.9K
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
+
2011 ██████████████████████████████ 39.1K
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
+
2011 ██████████████████████████████ 189.9K
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
+
| `pushes` | PushEvent | 887,764 | 55.4% | Git pushes with commits |
|
| 551 |
+
| `issues` | IssuesEvent | 69,900 | 4.4% | Issue lifecycle events |
|
| 552 |
+
| `issue_comments` | IssueCommentEvent | 19,213 | 1.2% | Comments on issues/PRs |
|
| 553 |
+
| `pull_requests` | PullRequestEvent | 39,061 | 2.4% | PR lifecycle events |
|
| 554 |
+
| `stars` | WatchEvent | 189,898 | 11.9% | Repository stars |
|
| 555 |
+
| `forks` | ForkEvent | 48,871 | 3.1% | Repository forks |
|
| 556 |
+
| `creates` | CreateEvent | 243,924 | 15.2% | Branch/tag/repo creation |
|
| 557 |
+
| `deletes` | DeleteEvent | 22,643 | 1.4% | Branch/tag deletion |
|
| 558 |
+
| `commit_comments` | CommitCommentEvent | 23,629 | 1.5% | Comments on commits |
|
| 559 |
+
| `wiki_pages` | GollumEvent | 43,396 | 2.7% | Wiki page edits |
|
| 560 |
+
| `members` | MemberEvent | 11,633 | 0.7% | Collaborator additions |
|
| 561 |
+
| `public_events` | PublicEvent | 1,538 | 0.1% | Repo made public |
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
data/commit_comments/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7497fa883a696aeb66fa78bef0722d4b32f49b613c907f5e4863f4dc873c54e
|
| 3 |
+
size 42376
|
data/creates/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ef4fda407ddf302afa3bba6b796e92b24a9c82683701b1c245d1953df417d0e4
|
| 3 |
+
size 157157
|
data/deletes/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2629b8d9188dfbd71cdc1cef8f3cb7d28a5850364397024d6959186325a0415
|
| 3 |
+
size 20486
|
data/forks/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e5e4fc0d5206b3841ad949b31f3c6ef5c11ee9ebd642ab7d8a80993e2ede8fff
|
| 3 |
+
size 61363
|
data/issues/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60e9487fc4a329671ac47d9d08ae9a2b13b3835005448e6e2bc445fda10d5c3f
|
| 3 |
+
size 102300
|
data/members/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:22e5b39b72c0ff659ab9fbefa67e9e219e9e3169db9a643a2d2a21f37c5b354b
|
| 3 |
+
size 17230
|
data/public_events/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:787ef9cc32ab71ad548b983809f822e7f04000cc1ab265a9e03e06b9b9beab37
|
| 3 |
+
size 3824
|
data/pull_requests/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f915ccf854c8e53f36e2803f60dfe49d36cf29a40b243e0d8423ccdf096b50c6
|
| 3 |
+
size 78878
|
data/pushes/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2dc34ea2cf3b07d4ca5f1d02e8ddb401a4cd2bf1e5a8770c286a4e578ac7b38
|
| 3 |
+
size 4475126
|
data/stars/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c418a47da2bcf08f5fa8997ecabf65d2fc21c65f0a89ed2710fc892962d32347
|
| 3 |
+
size 181201
|
data/wiki_pages/2011/04/14.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6668c0f95d613019f519c319fe5ba4de8b1fa44641ceb0b38dc5edff5b43cd92
|
| 3 |
+
size 99314
|
stats.csv
CHANGED
|
@@ -36,4 +36,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 36 |
2011-04-10,36649,0,19577,2206,2158,784,0,0,4413,971,4433,282,0,526,1072,192,35,0,6941125,5.7,3696782,5.7,5.7,23.2
|
| 37 |
2011-04-11,50152,0,26254,2650,3068,1177,0,0,6051,1432,6852,534,0,622,1129,343,40,0,9829991,5.4,5029438,4.5,5.4,17.0
|
| 38 |
2011-04-12,49413,0,25082,2548,3351,1204,0,0,5809,1492,6724,472,0,791,1546,342,52,0,9616358,9.6,4769662,5.6,9.6,18.2
|
| 39 |
-
2011-04-13,50960,0,26090,2653,3342,1232,0,0,6185,1499,6727,551,0,898,1337,387,59,0,10011009,9.3,5012001,8.5,9.3,
|
|
|
|
|
|
| 36 |
2011-04-10,36649,0,19577,2206,2158,784,0,0,4413,971,4433,282,0,526,1072,192,35,0,6941125,5.7,3696782,5.7,5.7,23.2
|
| 37 |
2011-04-11,50152,0,26254,2650,3068,1177,0,0,6051,1432,6852,534,0,622,1129,343,40,0,9829991,5.4,5029438,4.5,5.4,17.0
|
| 38 |
2011-04-12,49413,0,25082,2548,3351,1204,0,0,5809,1492,6724,472,0,791,1546,342,52,0,9616358,9.6,4769662,5.6,9.6,18.2
|
| 39 |
+
2011-04-13,50960,0,26090,2653,3342,1232,0,0,6185,1499,6727,551,0,898,1337,387,59,0,10011009,9.3,5012001,8.5,9.3,22.6
|
| 40 |
+
2011-04-14,51523,0,26863,2783,3705,1247,0,0,6059,1513,6180,558,0,877,1341,363,34,0,10191848,6.5,5239255,5.7,6.5,0.0
|