Add 2015-07-19 — 380.3K events, 14 files
Browse files- README.md +20 -20
- data/commit_comments/2015/07/19.parquet +3 -0
- data/creates/2015/07/19.parquet +3 -0
- data/deletes/2015/07/19.parquet +3 -0
- data/forks/2015/07/19.parquet +3 -0
- data/issue_comments/2015/07/19.parquet +3 -0
- data/issues/2015/07/19.parquet +3 -0
- data/members/2015/07/19.parquet +3 -0
- data/pr_review_comments/2015/07/19.parquet +3 -0
- data/public_events/2015/07/19.parquet +3 -0
- data/pull_requests/2015/07/19.parquet +3 -0
- data/pushes/2015/07/19.parquet +3 -0
- data/releases/2015/07/19.parquet +3 -0
- data/stars/2015/07/19.parquet +3 -0
- data/wiki_pages/2015/07/19.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-07-
|
| 65 |
|
| 66 |
-
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 14.
|
| 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 ██████████████████████████████ 23.
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
@@ -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 ██████████████████████████████ 2.
|
| 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 | 23,
|
| 588 |
-
| `issues` | IssuesEvent | 2,
|
| 589 |
-
| `issue_comments` | IssueCommentEvent | 4,
|
| 590 |
-
| `pull_requests` | PullRequestEvent | 2,
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 592 |
-
| `stars` | WatchEvent | 4,
|
| 593 |
-
| `forks` | ForkEvent | 1,
|
| 594 |
-
| `creates` | CreateEvent | 6,
|
| 595 |
-
| `deletes` | DeleteEvent | 1,
|
| 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-07-19** (97 days), totaling **49,231,849 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 14.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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 ██████████████████████████████ 49.2M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 97 | 49,231,849 | 507,544 | 14.9 GB | 8.0 GB | 1h10m | 11h16m | 2h12m |
|
| 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 ██████████████████████████████ 23.9M
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
|
|
| 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 ██████████████████████████████ 2.5M
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 23,869,347 | 48.5% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 2,297,041 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 4,505,223 | 9.2% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 2,464,819 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 815,607 | 1.7% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 4,388,529 | 8.9% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,655,148 | 3.4% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 6,950,700 | 14.1% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 1,084,627 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 162,431 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 302,947 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 456,863 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 230,314 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 48,253 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cda8fc220ea8d3a93d2ce005423f0f694136940f19e925adc8b89b85045d20fd
|
| 3 |
+
size 318638
|
data/creates/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47712cfc81ecf773a5b0852ad053c15fc0d6d78f4cf2a03ebb7b2c7fabe17954
|
| 3 |
+
size 2040057
|
data/deletes/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08d314d8a5fd2884e4bb3cc3736e8c41e6495fae214661dcedd47d9f976586e6
|
| 3 |
+
size 256026
|
data/forks/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2abea296ef02948ec75df1bf8c46895455b892b560363376bc135bf605bae51
|
| 3 |
+
size 1373932
|
data/issue_comments/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a98d84ea1931c91d44ca07e80226410a236a14d41e042af7e35fc80e7039650e
|
| 3 |
+
size 5457479
|
data/issues/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9cd83828cf80923c1426e669dcfcfa6e1af30ceac904383145ae27092191b8eb
|
| 3 |
+
size 3821572
|
data/members/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7504acb9f1405ea8563ce158cce914f0744fccdc4f0904d48fb0feb5d258dd21
|
| 3 |
+
size 51929
|
data/pr_review_comments/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e35e4c57bcd8efb0ed74f6dcd01bc5f9d2a509c92868bb7a710cdb6ab3555d14
|
| 3 |
+
size 1259052
|
data/public_events/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fe3b36dc9cd6cd526f7b2068d7ab31a1cc8398921fab4f000b11a94cec526a7
|
| 3 |
+
size 15179
|
data/pull_requests/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:214703e99e71a385cd548dd66b11baf532f24d39e21d291a4ab52eddae5fe055
|
| 3 |
+
size 2770964
|
data/pushes/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ef93850007373ebe71bfa1cd176e0443c03516d6906b8034a4a2104c7cb90e6
|
| 3 |
+
size 43750306
|
data/releases/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:af909c8a30249128dd2e4597e385932dedffe332759ccbb19f144cb24fe22dde
|
| 3 |
+
size 222327
|
data/stars/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38843333a2975843576623e8d9855ca399b68fb52c2bbad298861e218d8f7c48
|
| 3 |
+
size 1197031
|
data/wiki_pages/2015/07/19.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4ca01b327b86c5f7d94ed65550e205d5ea102683ae2273eafa1c9b48cb3d70d
|
| 3 |
+
size 183753
|
stats.csv
CHANGED
|
@@ -94,4 +94,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 94 |
2015-07-15,640838,0,303882,31094,65812,34330,0,13130,58267,21568,83628,13359,2333,4504,5961,2494,476,0,251540662,441.5,115086429,96.0,441.5,46.7
|
| 95 |
2015-07-16,602082,0,286744,29879,61835,32833,0,12265,53689,20392,77958,12133,2137,4099,5245,2344,529,0,234368728,400.7,107212910,38.1,400.7,47.9
|
| 96 |
2015-07-17,562219,0,266627,27069,59180,30510,0,11182,50658,19056,71809,13449,2081,3724,4459,1961,454,0,219336470,428.1,100207620,36.4,428.1,122.4
|
| 97 |
-
2015-07-18,363696,0,184366,15782,29097,15561,0,4347,32364,12162,53264,7475,1529,2054,3506,1880,309,0,121066762,248.8,60502267,30.9,248.8,
|
|
|
|
|
|
| 94 |
2015-07-15,640838,0,303882,31094,65812,34330,0,13130,58267,21568,83628,13359,2333,4504,5961,2494,476,0,251540662,441.5,115086429,96.0,441.5,46.7
|
| 95 |
2015-07-16,602082,0,286744,29879,61835,32833,0,12265,53689,20392,77958,12133,2137,4099,5245,2344,529,0,234368728,400.7,107212910,38.1,400.7,47.9
|
| 96 |
2015-07-17,562219,0,266627,27069,59180,30510,0,11182,50658,19056,71809,13449,2081,3724,4459,1961,454,0,219336470,428.1,100207620,36.4,428.1,122.4
|
| 97 |
+
2015-07-18,363696,0,184366,15782,29097,15561,0,4347,32364,12162,53264,7475,1529,2054,3506,1880,309,0,121066762,248.8,60502267,30.9,248.8,36.3
|
| 98 |
+
2015-07-19,380292,0,196801,16123,28242,15929,0,4276,33189,12194,56534,8530,1632,2139,3197,1195,311,0,123859927,241.1,62718245,30.4,241.1,0.0
|