Add 2011-04-25 — 39.9K events, 11 files
Browse files- README.md +19 -19
- data/commit_comments/2011/04/25.parquet +3 -0
- data/creates/2011/04/25.parquet +3 -0
- data/deletes/2011/04/25.parquet +3 -0
- data/forks/2011/04/25.parquet +3 -0
- data/issues/2011/04/25.parquet +3 -0
- data/members/2011/04/25.parquet +3 -0
- data/public_events/2011/04/25.parquet +3 -0
- data/pull_requests/2011/04/25.parquet +3 -0
- data/pushes/2011/04/25.parquet +3 -0
- data/stars/2011/04/25.parquet +3 -0
- data/wiki_pages/2011/04/25.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,12 +131,12 @@ duckdb.sql("""
|
|
| 131 |
## Events per year
|
| 132 |
|
| 133 |
```
|
| 134 |
-
2011 ██████████████████████████████ 2.
|
| 135 |
```
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
-
| 2011 |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
|
@@ -149,21 +149,21 @@ duckdb.sql("""
|
|
| 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 |
|
| 558 |
-
| `commit_comments` | CommitCommentEvent |
|
| 559 |
-
| `wiki_pages` | GollumEvent |
|
| 560 |
-
| `members` | MemberEvent | 14,
|
| 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-25** (50 days), totaling **2,072,534 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 390.9 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 206.1 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 ██████████████████████████████ 2.1M
|
| 135 |
```
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
+
| 2011 | 50 | 2,072,534 | 41,450 | 390.9 MB | 206.1 MB | 7m02s | 8m37s | 18m55s |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
|
|
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
+
2011 ██████████████████████████████ 95.2K
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
+
2011 ██████████████████████████████ 49.5K
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
+
2011 ██████████████████████████████ 244.4K
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
+
| `pushes` | PushEvent | 1,132,850 | 54.7% | Git pushes with commits |
|
| 551 |
+
| `issues` | IssuesEvent | 95,231 | 4.6% | Issue lifecycle events |
|
| 552 |
+
| `issue_comments` | IssueCommentEvent | 53,261 | 2.6% | Comments on issues/PRs |
|
| 553 |
+
| `pull_requests` | PullRequestEvent | 49,525 | 2.4% | PR lifecycle events |
|
| 554 |
+
| `stars` | WatchEvent | 244,375 | 11.8% | Repository stars |
|
| 555 |
+
| `forks` | ForkEvent | 61,725 | 3.0% | Repository forks |
|
| 556 |
+
| `creates` | CreateEvent | 304,873 | 14.7% | Branch/tag/repo creation |
|
| 557 |
+
| `deletes` | DeleteEvent | 29,343 | 1.4% | Branch/tag deletion |
|
| 558 |
+
| `commit_comments` | CommitCommentEvent | 30,304 | 1.5% | Comments on commits |
|
| 559 |
+
| `wiki_pages` | GollumEvent | 54,522 | 2.6% | Wiki page edits |
|
| 560 |
+
| `members` | MemberEvent | 14,565 | 0.7% | Collaborator additions |
|
| 561 |
+
| `public_events` | PublicEvent | 1,960 | 0.1% | Repo made public |
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
data/commit_comments/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:715f8aadec3338565510bbc1215f74e46695907e889854d20db61000a4aa2763
|
| 3 |
+
size 31170
|
data/creates/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f56a104e42b372163bb5fc52ab631592179bfd5bbbd1b19dc2bbdb6d89e57de8
|
| 3 |
+
size 124097
|
data/deletes/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a2e7fb12ace960f63edc538063e6e3caea02179e55d84234002d05882ece21ef
|
| 3 |
+
size 22977
|
data/forks/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a69af046b5f80c78a0cb6146392453360c14e15daab18b3d844aab9563c140e0
|
| 3 |
+
size 48353
|
data/issues/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03fa41f7ba4a2ab08f443bfbd912267b7d70bca663e7e03388f88b39819c8f95
|
| 3 |
+
size 66776
|
data/members/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49c687a80328f983f76fe0f220cdac8b8a4f026cae13ce9b9da593e36d7e1a9d
|
| 3 |
+
size 15129
|
data/public_events/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:096758a1bab913ce36eb977c87108d40db80383398aa4f66b1248edf440926e3
|
| 3 |
+
size 4058
|
data/pull_requests/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:836d49c92e955fc90803218cdc8df63c25fb779c40ce7a691398bc2b3611fa96
|
| 3 |
+
size 66863
|
data/pushes/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7134a2fb029753475a581007e3d508e473922898c1909682ca842f928c929d30
|
| 3 |
+
size 3381233
|
data/stars/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b118b5aa9adaddd8c44093e08d1be396c59307a70f588d063843b4dad8e8ea1
|
| 3 |
+
size 142008
|
data/wiki_pages/2011/04/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb3ffb828a8bc0f829d68d1b4e913e3c99482b5a58d4c1a7e6511b9579c95e54
|
| 3 |
+
size 65103
|
stats.csv
CHANGED
|
@@ -47,4 +47,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 47 |
2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,7.2,4898444,5.2,7.2,21.1
|
| 48 |
2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,6.9,4215498,4.9,6.9,21.0
|
| 49 |
2011-04-23,31746,0,17207,1532,1876,720,0,0,3721,857,4121,367,0,418,768,134,25,0,6192449,3.3,3232189,4.3,3.3,22.2
|
| 50 |
-
2011-04-24,32786,0,18268,1495,1782,569,0,0,3604,826,4429,456,0,418,802,102,35,0,6254774,3.1,3322579,4.1,3.1,
|
|
|
|
|
|
| 47 |
2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,7.2,4898444,5.2,7.2,21.1
|
| 48 |
2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,6.9,4215498,4.9,6.9,21.0
|
| 49 |
2011-04-23,31746,0,17207,1532,1876,720,0,0,3721,857,4121,367,0,418,768,134,25,0,6192449,3.3,3232189,4.3,3.3,22.2
|
| 50 |
+
2011-04-24,32786,0,18268,1495,1782,569,0,0,3604,826,4429,456,0,418,802,102,35,0,6254774,3.1,3322579,4.1,3.1,20.3
|
| 51 |
+
2011-04-25,39853,0,21398,1793,2464,961,0,0,4642,1151,4807,827,0,590,795,386,39,0,7764517,5.1,3967767,7.2,5.1,0.0
|