Add 2015-05-18 — 173.1K events, 14 files
Browse files- README.md +22 -22
- data/commit_comments/2015/05/18.parquet +3 -0
- data/creates/2015/05/18.parquet +3 -0
- data/deletes/2015/05/18.parquet +3 -0
- data/forks/2015/05/18.parquet +3 -0
- data/issue_comments/2015/05/18.parquet +3 -0
- data/issues/2015/05/18.parquet +3 -0
- data/members/2015/05/18.parquet +3 -0
- data/pr_review_comments/2015/05/18.parquet +3 -0
- data/public_events/2015/05/18.parquet +3 -0
- data/pull_requests/2015/05/18.parquet +3 -0
- data/pushes/2015/05/18.parquet +3 -0
- data/releases/2015/05/18.parquet +3 -0
- data/stars/2015/05/18.parquet +3 -0
- data/wiki_pages/2015/05/18.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 5.
|
| 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 ██████████████████████████████ 17.
|
| 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 ██████████████████████████████ 8.
|
| 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 |
|
|
@@ -171,7 +171,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
|
|
| 171 |
Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
|
| 172 |
|
| 173 |
```
|
| 174 |
-
2015 █
|
| 175 |
```
|
| 176 |
|
| 177 |
|
|
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
-
| `pushes` | PushEvent | 8,
|
| 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 | 108,
|
| 598 |
-
| `wiki_pages` | GollumEvent |
|
| 599 |
-
| `members` | MemberEvent | 93,
|
| 600 |
-
| `public_events` | PublicEvent |
|
| 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-18** (35 days), totaling **17,899,764 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 5.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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 |
|
|
|
|
| 104 |
## Events per year
|
| 105 |
|
| 106 |
```
|
| 107 |
+
2015 ██████████████████████████████ 17.9M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 35 | 17,899,764 | 511,421 | 5.8 GB | 2.9 GB | 33m25s | 5h05m | 1h02m |
|
| 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 ██████████████████████████████ 8.7M
|
| 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 ██████████████████████████████ 814.4K
|
| 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 ██████████████████████████████ 881.5K
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 171 |
Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
|
| 172 |
|
| 173 |
```
|
| 174 |
+
2015 ██████████████████████████████ 1.6M
|
| 175 |
```
|
| 176 |
|
| 177 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 8,724,574 | 48.7% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 814,401 | 4.5% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 1,587,262 | 8.9% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 881,476 | 4.9% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 281,235 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 1,563,870 | 8.7% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 592,144 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 2,632,014 | 14.7% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 375,994 | 2.1% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 55,000 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 108,935 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 171,083 | 1.0% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 93,678 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 18,098 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dea9ef71799a65d7a9d1e0ccca8433c49c204711b0c10759350927a6d1af8fb5
|
| 3 |
+
size 130894
|
data/creates/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f53056f36f56ce7839e10f80d0cd107ca4b7233195e5c2fb043346c19370c0c
|
| 3 |
+
size 918177
|
data/deletes/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:030ed6e5721458d3af06041fdd44834b1f0ecdecd46667981a254945c6cbcf0c
|
| 3 |
+
size 121868
|
data/forks/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2654ab7d0eb06c57a36cbc6665a58228951ddc0dd802c55283c083e2bef88ec
|
| 3 |
+
size 677580
|
data/issue_comments/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbb6efc4fb807ab9a37cf1ab07f4422bc95208b0b078beba7f456b69667ad4e9
|
| 3 |
+
size 2558541
|
data/issues/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e34b72569b4aff6596cd1932f83ac59e45695cd6ddbcdb9eabf127440c4aa199
|
| 3 |
+
size 2007851
|
data/members/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36d751fc897c1b914155f4bda136de934a58e5eae31da0c8b3a31eac028cec71
|
| 3 |
+
size 33544
|
data/pr_review_comments/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8356bb49ad38ee71b88a4db189b981056d30035108076456c960e69292f62aa8
|
| 3 |
+
size 748884
|
data/public_events/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f42a89c3ca95ca5142bbff6acab015ef6dbc4f256c37fe552537f1e119dd668a
|
| 3 |
+
size 9388
|
data/pull_requests/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c81ef659e050b7a5768484bfe7da2f4ac38229bfae04b986170219509655c84f
|
| 3 |
+
size 1440194
|
data/pushes/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c68b172537849e3cefa4234d7ca623e1c8bafcef90d5d74415acd0f3e76a5ffc
|
| 3 |
+
size 19812098
|
data/releases/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01cfc265de4b20d946245b6f573898e380ec922e8412b3fa31319c0a37a35c20
|
| 3 |
+
size 97478
|
data/stars/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b52826b12755840419786b7fcc19d91018a9a4e06ba6ddcaf16efae6025b3304
|
| 3 |
+
size 618414
|
data/wiki_pages/2015/05/18.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8d805d34efd7085f137b2a0939108e753b135c97aa3423b898f4b4e495be074
|
| 3 |
+
size 130170
|
stats.csv
CHANGED
|
@@ -32,4 +32,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 32 |
2015-05-14,316824,0,0,27422,55099,31772,0,9719,52257,20838,93074,11936,1890,3428,5824,2980,585,0,0,0.0,34912051,0.0,0.0,30.6
|
| 33 |
2015-05-15,202876,0,100001,7991,15773,9272,0,2745,23119,8504,27158,3510,639,1157,1928,881,198,0,0,0.0,34468063,0.0,0.0,105.8
|
| 34 |
2015-05-16,204645,0,103708,9281,15169,8443,0,1929,19715,7694,30435,3348,557,1032,2084,1053,197,0,0,0.0,34161328,0.0,0.0,36.8
|
| 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,
|
|
|
|
|
|
| 32 |
2015-05-14,316824,0,0,27422,55099,31772,0,9719,52257,20838,93074,11936,1890,3428,5824,2980,585,0,0,0.0,34912051,0.0,0.0,30.6
|
| 33 |
2015-05-15,202876,0,100001,7991,15773,9272,0,2745,23119,8504,27158,3510,639,1157,1928,881,198,0,0,0.0,34468063,0.0,0.0,105.8
|
| 34 |
2015-05-16,204645,0,103708,9281,15169,8443,0,1929,19715,7694,30435,3348,557,1032,2084,1053,197,0,0,0.0,34161328,0.0,0.0,36.8
|
| 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,0.0
|