Add 2015-06-07 — 384.3K events, 14 files
Browse files- README.md +22 -22
- data/commit_comments/2015/06/07.parquet +3 -0
- data/creates/2015/06/07.parquet +3 -0
- data/deletes/2015/06/07.parquet +3 -0
- data/forks/2015/06/07.parquet +3 -0
- data/issue_comments/2015/06/07.parquet +3 -0
- data/issues/2015/06/07.parquet +3 -0
- data/members/2015/06/07.parquet +3 -0
- data/pr_review_comments/2015/06/07.parquet +3 -0
- data/public_events/2015/06/07.parquet +3 -0
- data/pull_requests/2015/06/07.parquet +3 -0
- data/pushes/2015/06/07.parquet +3 -0
- data/releases/2015/06/07.parquet +3 -0
- data/stars/2015/06/07.parquet +3 -0
- data/wiki_pages/2015/06/07.parquet +3 -0
- stats.csv +9 -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-06-
|
| 65 |
|
| 66 |
-
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 8.
|
| 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 ██████████████████████████████
|
| 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 ██████████████████████████████
|
| 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 ██████████████████████████████ 1.
|
| 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 ██████████████████████████████ 1.
|
| 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 |
|
| 588 |
-
| `issues` | IssuesEvent | 1,
|
| 589 |
-
| `issue_comments` | IssueCommentEvent | 2,
|
| 590 |
-
| `pull_requests` | PullRequestEvent | 1,
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 592 |
-
| `stars` | WatchEvent | 2,
|
| 593 |
-
| `forks` | ForkEvent |
|
| 594 |
-
| `creates` | CreateEvent |
|
| 595 |
-
| `deletes` | DeleteEvent |
|
| 596 |
-
| `releases` | ReleaseEvent |
|
| 597 |
-
| `commit_comments` | CommitCommentEvent |
|
| 598 |
-
| `wiki_pages` | GollumEvent |
|
| 599 |
-
| `members` | MemberEvent |
|
| 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-06-14** (62 days), totaling **30,205,023 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 8.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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 ██████████████████████████████ 30.2M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 62 | 30,205,023 | 487,177 | 8.3 GB | 4.9 GB | 42m47s | 7h35m | 1h42m |
|
| 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 ██████████████████████████████ 14.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 ██████████████████████████████ 1.4M
|
| 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 ██████████████████████████████ 1.5M
|
| 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 ██████████████████████████████ 2.7M
|
| 175 |
```
|
| 176 |
|
| 177 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 14,668,183 | 48.6% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 1,399,463 | 4.6% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 2,722,163 | 9.0% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 1,499,136 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 472,641 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 2,663,986 | 8.8% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,005,411 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 4,349,138 | 14.4% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 674,027 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 96,456 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 184,217 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 288,178 | 1.0% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 151,710 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 30,314 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:722a87523f4ee8c21c155c4226f8492de170e63ed4a4575c9570135070535ecf
|
| 3 |
+
size 279362
|
data/creates/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4aea1c82e007a838b84f4082fa6f99f6c721fefcddd303c03fd9ad9cdd23394
|
| 3 |
+
size 2026045
|
data/deletes/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d770e08656961c7ad10e042a4003192c0fbd5d8bb1567209e51f6a2aa95d7f5
|
| 3 |
+
size 240681
|
data/forks/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da3059b6972b7984737e3cf774e99790acf46004eb48d498a58c8c82fb61142b
|
| 3 |
+
size 1293335
|
data/issue_comments/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:868eb8871871520d46d607a6099234ffde5a5a46cc428f15d1b2e899f2f35d88
|
| 3 |
+
size 5289698
|
data/issues/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1017b6058d80fdd537b01db4a56104dc2033c077c9954eca01ee25e88716e168
|
| 3 |
+
size 4121400
|
data/members/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f99ebd7f456b1ff5210dc66c85355bef5ef97fb7c3d64b8bb5945669c08b4f9
|
| 3 |
+
size 64491
|
data/pr_review_comments/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1d3a7f9e43ac99986758f2a13aae8543a0b3512efc46f24adce5092f050ff31
|
| 3 |
+
size 1137044
|
data/public_events/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55574a9fa1cc0c4f23920517fc37329128c8850cfd4e84d216ee9051d23a0e47
|
| 3 |
+
size 15925
|
data/pull_requests/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de27c0e06f4a654fd96b9be2c1a531671379862fbafea1f24836420fca4442be
|
| 3 |
+
size 2740459
|
data/pushes/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2bdf23e39928f0e1c1009e941aba55c710c91f0efbbbf94d6cd453bbb59bcf1
|
| 3 |
+
size 44195304
|
data/releases/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6289046f0279af909649ded16dac2ebc0d48e09963a68c1f4e90eec8c45d5776
|
| 3 |
+
size 184904
|
data/stars/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5061336a836d8069ed6692d3371d379931859b956a265c04f95750191e1a8e4c
|
| 3 |
+
size 1137745
|
data/wiki_pages/2015/06/07.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1623808838d13d8e6ae809ec2e07778378bdfee86b4a8d578b25b39960516259
|
| 3 |
+
size 183627
|
stats.csv
CHANGED
|
@@ -52,4 +52,12 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 52 |
2015-06-03,658796,0,314565,33502,66333,34403,0,12346,57292,21791,88075,14337,2252,3874,6409,3014,603,0,253787134,994.3,118228569,46.9,994.3,95.8
|
| 53 |
2015-06-04,637249,0,310414,30510,61995,33221,0,10875,55990,20886,84711,12940,1976,4136,6161,2798,636,0,240821733,971.8,112270272,48.9,971.8,128.4
|
| 54 |
2015-06-05,605888,0,283182,33752,72253,31124,0,10395,53467,19079,77124,11447,1850,3496,5363,2700,656,0,230408959,949.3,106225376,40.1,949.3,289.6
|
| 55 |
-
2015-06-06,373942,0,193182,15881,26696,15730,0,3774,31931,13046,57364,7112,1158,1904,3755,2037,372,0,123133219,503.9,62001099,31.9,503.9,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
2015-06-03,658796,0,314565,33502,66333,34403,0,12346,57292,21791,88075,14337,2252,3874,6409,3014,603,0,253787134,994.3,118228569,46.9,994.3,95.8
|
| 53 |
2015-06-04,637249,0,310414,30510,61995,33221,0,10875,55990,20886,84711,12940,1976,4136,6161,2798,636,0,240821733,971.8,112270272,48.9,971.8,128.4
|
| 54 |
2015-06-05,605888,0,283182,33752,72253,31124,0,10395,53467,19079,77124,11447,1850,3496,5363,2700,656,0,230408959,949.3,106225376,40.1,949.3,289.6
|
| 55 |
+
2015-06-06,373942,0,193182,15881,26696,15730,0,3774,31931,13046,57364,7112,1158,1904,3755,2037,372,0,123133219,503.9,62001099,31.9,503.9,211.1
|
| 56 |
+
2015-06-07,384300,0,201748,17380,28606,15870,0,3561,33321,12309,55594,8032,1182,1792,3138,1403,364,0,124615305,514.9,62910020,31.7,514.9,0.0
|
| 57 |
+
2015-06-08,622127,0,300735,31156,60056,31236,0,10897,54393,20728,84577,12643,2109,3839,6257,2868,633,0,0,0.0,109209791,0.0,0.0,0.0
|
| 58 |
+
2015-06-09,660339,0,322028,31155,63396,34738,0,11934,56269,21599,87933,14626,2215,4570,6427,2794,655,0,0,0.0,117059518,0.0,0.0,0.0
|
| 59 |
+
2015-06-10,648267,0,314958,29988,63005,35151,0,12339,55092,21617,85757,14156,2218,4763,5720,2866,637,0,0,0.0,115250620,0.0,0.0,0.0
|
| 60 |
+
2015-06-11,628011,0,289981,27819,58336,32126,0,11454,51250,20188,98671,23321,2002,3947,5860,2515,541,0,0,0.0,106695216,0.0,0.0,0.0
|
| 61 |
+
2015-06-12,563588,0,271105,25457,54799,34094,0,10150,48920,18504,72886,13074,1918,3770,6043,2342,526,0,0,0.0,100026932,0.0,0.0,0.0
|
| 62 |
+
2015-06-13,369860,0,189620,16757,28743,15843,0,3685,34177,12747,52608,7045,1219,1685,3257,2146,328,0,0,0.0,62904729,0.0,0.0,0.0
|
| 63 |
+
2015-06-14,387599,0,203978,16373,27992,16189,0,4096,34060,12687,55094,7495,1780,1846,4083,1552,374,0,0,0.0,65004628,0.0,0.0,0.0
|