Add 2015-05-21 — 296.2K events, 14 files
Browse files- README.md +21 -21
- data/commit_comments/2015/05/21.parquet +3 -0
- data/creates/2015/05/21.parquet +3 -0
- data/deletes/2015/05/21.parquet +3 -0
- data/forks/2015/05/21.parquet +3 -0
- data/issue_comments/2015/05/21.parquet +3 -0
- data/issues/2015/05/21.parquet +3 -0
- data/members/2015/05/21.parquet +3 -0
- data/pr_review_comments/2015/05/21.parquet +3 -0
- data/public_events/2015/05/21.parquet +3 -0
- data/pull_requests/2015/05/21.parquet +3 -0
- data/pushes/2015/05/21.parquet +3 -0
- data/releases/2015/05/21.parquet +3 -0
- data/stars/2015/05/21.parquet +3 -0
- data/wiki_pages/2015/05/21.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 **2015-04-14** to **2015-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 6.
|
| 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 |
|
|
@@ -104,12 +104,12 @@ duckdb.sql("""
|
|
| 104 |
## Events per year
|
| 105 |
|
| 106 |
```
|
| 107 |
-
2015 ██████████████████████████████ 18.
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
-
| 2015 |
|
| 113 |
|
| 114 |
|
| 115 |
### Pushes per year
|
|
@@ -117,7 +117,7 @@ duckdb.sql("""
|
|
| 117 |
Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
|
| 118 |
|
| 119 |
```
|
| 120 |
-
2015 ██████████████████████████████ 9.
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
@@ -134,7 +134,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
|
|
| 134 |
Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
|
| 135 |
|
| 136 |
```
|
| 137 |
-
2015 ██████████████████████████████
|
| 138 |
```
|
| 139 |
|
| 140 |
|
|
@@ -153,7 +153,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
|
|
| 153 |
Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
|
| 154 |
|
| 155 |
```
|
| 156 |
-
2015 ██████████████████████████████
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
-
| `pushes` | PushEvent |
|
| 588 |
-
| `issues` | IssuesEvent |
|
| 589 |
-
| `issue_comments` | IssueCommentEvent | 1,
|
| 590 |
-
| `pull_requests` | PullRequestEvent |
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 592 |
-
| `stars` | WatchEvent | 1,
|
| 593 |
-
| `forks` | ForkEvent |
|
| 594 |
-
| `creates` | CreateEvent | 2,
|
| 595 |
-
| `deletes` | DeleteEvent |
|
| 596 |
-
| `releases` | ReleaseEvent |
|
| 597 |
-
| `commit_comments` | CommitCommentEvent |
|
| 598 |
-
| `wiki_pages` | GollumEvent |
|
| 599 |
-
| `members` | MemberEvent |
|
| 600 |
-
| `public_events` | PublicEvent | 18,
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
|
|
|
| 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 **2015-04-14** to **2015-05-21** (38 days), totaling **18,692,399 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 6.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.0 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 |
|
|
|
|
| 104 |
## Events per year
|
| 105 |
|
| 106 |
```
|
| 107 |
+
2015 ██████████████████████████████ 18.7M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 38 | 18,692,399 | 491,905 | 6.1 GB | 3.0 GB | 34m29s | 5h16m | 1h05m |
|
| 113 |
|
| 114 |
|
| 115 |
### Pushes per year
|
|
|
|
| 117 |
Pushes are the most common event type, representing roughly half of all GitHub activity. Each push can contain multiple commits. Bots (Dependabot, Renovate, CI pipelines) account for a significant share.
|
| 118 |
|
| 119 |
```
|
| 120 |
+
2015 ██████████████████████████████ 9.1M
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
|
|
| 134 |
Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
|
| 135 |
|
| 136 |
```
|
| 137 |
+
2015 ██████████████████████████████ 853.2K
|
| 138 |
```
|
| 139 |
|
| 140 |
|
|
|
|
| 153 |
Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
|
| 154 |
|
| 155 |
```
|
| 156 |
+
2015 ██████████████████████████████ 921.6K
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 9,108,928 | 48.7% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 853,215 | 4.6% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 1,662,450 | 8.9% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 921,577 | 4.9% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 293,900 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 1,630,441 | 8.7% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 617,623 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 2,746,450 | 14.7% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 392,580 | 2.1% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 57,238 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 114,135 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 177,516 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 97,394 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 18,952 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60f3402ff5ec395d0dbef426979571ce6ebfb64369dd543af26cbf8be510de84
|
| 3 |
+
size 278992
|
data/creates/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b03e3b5ca5d7c331407d65fa55ffb0e9b2e4e1b594a83036f167fc478348ad3
|
| 3 |
+
size 1534365
|
data/deletes/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:301625331e8e62856b3f52e467c4041180026a530fab01e22c359d4a6a60f54d
|
| 3 |
+
size 205254
|
data/forks/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5319ad78d6ddf6f96fa793c2d67f3c31291017f0bdffd9616cbfd925e5a166a
|
| 3 |
+
size 1047308
|
data/issue_comments/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c97fc01401bbb243c2671277dfe55511b646c3b53d71710e9e0aecbbd231eed8
|
| 3 |
+
size 5257352
|
data/issues/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1f18808dae9d90e83edb55c4811879c36db1f8982056f2a8558dbee82974492
|
| 3 |
+
size 3345294
|
data/members/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0dce066e3a67a15f6344cd50c1f867daa4134d7d87c6a7fb71672b9fc996782b
|
| 3 |
+
size 58665
|
data/pr_review_comments/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3a145c4d058bcee30d7e3503cdb85fb5f629d220ab6f50fd3b5f71236571b45
|
| 3 |
+
size 1719696
|
data/public_events/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3b1138d3d30c131e627d964cfdc6166a2b7b6f6ce3ea9d71210ddb3e1a925d5
|
| 3 |
+
size 15704
|
data/pull_requests/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8b7a86acda63fbefecd110bed9c8bce91629f05ad1640be77725db3b67a1bfe
|
| 3 |
+
size 2860271
|
data/pushes/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4af497b7265eb88d279755eb7c072060585391686cc6fe0e7f177ced32b12864
|
| 3 |
+
size 35027834
|
data/releases/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ecd4318f3afa51b98bd178734cfb6f0a6b5535f9c4d5cbd5d139e82316bee6ce
|
| 3 |
+
size 137707
|
data/stars/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:664e2def76b1745d9883ea06236172acda6faeaff6dbb4bb5c333f83aba7a46b
|
| 3 |
+
size 847141
|
data/wiki_pages/2015/05/21.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14684db50128e36fa24a5d7a0ffe49ba06e58fb5861b4390df3b2d46aa286256
|
| 3 |
+
size 143393
|
stats.csv
CHANGED
|
@@ -35,4 +35,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 35 |
2015-05-17,21896,0,11949,863,1395,964,0,131,1948,806,3060,333,51,97,164,104,31,0,0,0.0,3996748,0.0,0.0,23.6
|
| 36 |
2015-05-18,173081,0,86597,8114,13408,7824,0,1934,18109,6034,23561,3675,516,913,1541,678,177,0,59515033,134.2,29305081,13.8,134.2,36.1
|
| 37 |
2015-05-19,258363,0,126741,13234,24998,13080,0,4274,22599,8339,34191,4908,778,1707,2126,1103,285,0,97889125,211.7,46542784,19.6,211.7,52.8
|
| 38 |
-
2015-05-20,238091,0,111410,11457,21756,11464,0,3576,19546,7570,39828,6001,615,1471,2039,1106,252,0,87151172,191.7,41092107,23.5,191.7,
|
|
|
|
|
|
| 35 |
2015-05-17,21896,0,11949,863,1395,964,0,131,1948,806,3060,333,51,97,164,104,31,0,0,0.0,3996748,0.0,0.0,23.6
|
| 36 |
2015-05-18,173081,0,86597,8114,13408,7824,0,1934,18109,6034,23561,3675,516,913,1541,678,177,0,59515033,134.2,29305081,13.8,134.2,36.1
|
| 37 |
2015-05-19,258363,0,126741,13234,24998,13080,0,4274,22599,8339,34191,4908,778,1707,2126,1103,285,0,97889125,211.7,46542784,19.6,211.7,52.8
|
| 38 |
+
2015-05-20,238091,0,111410,11457,21756,11464,0,3576,19546,7570,39828,6001,615,1471,2039,1106,252,0,87151172,191.7,41092107,23.5,191.7,112.0
|
| 39 |
+
2015-05-21,296181,0,146203,14123,28434,15557,0,4815,24426,9570,40417,5677,845,2022,2268,1507,317,0,112651601,246.2,52478976,20.4,246.2,0.0
|