Add 2015-06-23 — 646.7K events, 14 files
Browse files- README.md +20 -20
- data/commit_comments/2015/06/23.parquet +3 -0
- data/creates/2015/06/23.parquet +3 -0
- data/deletes/2015/06/23.parquet +3 -0
- data/forks/2015/06/23.parquet +3 -0
- data/issue_comments/2015/06/23.parquet +3 -0
- data/issues/2015/06/23.parquet +3 -0
- data/members/2015/06/23.parquet +3 -0
- data/pr_review_comments/2015/06/23.parquet +3 -0
- data/public_events/2015/06/23.parquet +3 -0
- data/pull_requests/2015/06/23.parquet +3 -0
- data/pushes/2015/06/23.parquet +3 -0
- data/releases/2015/06/23.parquet +3 -0
- data/stars/2015/06/23.parquet +3 -0
- data/wiki_pages/2015/06/23.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-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
|
| 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 |
|
|
@@ -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 |
|
|
@@ -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 | 3,
|
| 590 |
-
| `pull_requests` | PullRequestEvent | 1,
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 592 |
-
| `stars` | WatchEvent | 3,
|
| 593 |
-
| `forks` | ForkEvent | 1,
|
| 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-23** (71 days), totaling **35,329,008 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 10.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.7 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 ██████████████████████████████ 35.3M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 71 | 35,329,008 | 497,591 | 10.1 GB | 5.7 GB | 47m15s | 8h36m | 1h52m |
|
| 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 ██████████████████████████████ 17.1M
|
| 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 ██████████████████████████████ 1.8M
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 17,146,675 | 48.5% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 1,645,546 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 3,204,298 | 9.1% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 1,762,206 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 565,427 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 3,124,544 | 8.8% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,176,876 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 5,045,618 | 14.3% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 786,882 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 113,786 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 215,999 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 331,878 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 173,721 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 35,552 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f025518f1f0db9e02900a7505fd09b773827798ccf616a31ab48e275df618b93
|
| 3 |
+
size 522035
|
data/creates/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6020dc6030394e670704569a7bdfb54d491eb7474ab5d96d2e593f6e3a39477
|
| 3 |
+
size 3309837
|
data/deletes/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff60e4ee8e318be31b2e0d6db5a5d55d8ed7c6bde7043c35d3490dcaeb7a0a05
|
| 3 |
+
size 493742
|
data/forks/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c667a9f1a99c727c3a78a150e8ebdda6d36018ddb2500b668d1d1509a2bf449
|
| 3 |
+
size 2199816
|
data/issue_comments/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7177a9fa6dd8098c52d620d2962746754fece78105edaafc603be82267c3a262
|
| 3 |
+
size 11639433
|
data/issues/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c16f66e1277d849f060df01845f7285140f52915e34f88d3776c4eb420da326e
|
| 3 |
+
size 8022816
|
data/members/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72b402fbcec4171f592acc713d93fd6f5d91b1b96e7c4344effa62f6dc9e8268
|
| 3 |
+
size 116128
|
data/pr_review_comments/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a04137d0287bafc910da0079d5e4fbdcf97e6d09158327f27ab4ac9da094a4ba
|
| 3 |
+
size 4196559
|
data/public_events/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82fccbe72e29c877ff03d48a7d075cd2d80e7a7d098a0b6462104c830cc98d1d
|
| 3 |
+
size 27737
|
data/pull_requests/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:951a181fb3fa29b5201eae47a91c13f049f6db27050265e0adf6c6cfe2b7e027
|
| 3 |
+
size 6148205
|
data/pushes/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b48d11f09405d44a22422b4dbe3ac8f0b3bbe90cc9672191c93c2b6e790e6f2a
|
| 3 |
+
size 75742966
|
data/releases/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c488fed061cb4672f8691f660dbe62784070ac5e9c84594c3fcab73ee4fcf5ce
|
| 3 |
+
size 296605
|
data/stars/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3b264ea8638c1526302f01e58770a1a270beabf2994eb2b33dbb43d7b4d5d96
|
| 3 |
+
size 1912685
|
data/wiki_pages/2015/06/23.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7345fe26d05d3aea8114262eae2ccb18615e64e6101a64b5d39ff7e4961b25c8
|
| 3 |
+
size 436160
|
stats.csv
CHANGED
|
@@ -68,4 +68,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 68 |
2015-06-19,586267,0,283514,26819,56591,32125,0,10311,51668,20693,78248,12975,1889,3877,4579,2476,502,0,225542300,408.1,104549422,37.7,408.1,45.0
|
| 69 |
2015-06-20,363185,0,185041,15947,27785,15296,0,3637,31394,12338,56211,6858,1306,2253,3281,1524,314,0,122815727,208.5,62243132,35.2,208.5,57.9
|
| 70 |
2015-06-21,380640,0,200814,17925,26133,14950,0,4151,31908,13362,56392,6816,1178,1990,3384,1299,338,0,123512215,214.3,63406437,35.2,214.3,46.0
|
| 71 |
-
2015-06-22,587962,0,285621,29205,59662,31414,0,12497,47450,17952,76832,13009,1998,3841,5064,2361,1056,0,231205835,431.3,105544112,34.5,431.3,
|
|
|
|
|
|
| 68 |
2015-06-19,586267,0,283514,26819,56591,32125,0,10311,51668,20693,78248,12975,1889,3877,4579,2476,502,0,225542300,408.1,104549422,37.7,408.1,45.0
|
| 69 |
2015-06-20,363185,0,185041,15947,27785,15296,0,3637,31394,12338,56211,6858,1306,2253,3281,1524,314,0,122815727,208.5,62243132,35.2,208.5,57.9
|
| 70 |
2015-06-21,380640,0,200814,17925,26133,14950,0,4151,31908,13362,56392,6816,1178,1990,3384,1299,338,0,123512215,214.3,63406437,35.2,214.3,46.0
|
| 71 |
+
2015-06-22,587962,0,285621,29205,59662,31414,0,12497,47450,17952,76832,13009,1998,3841,5064,2361,1056,0,231205835,431.3,105544112,34.5,431.3,55.1
|
| 72 |
+
2015-06-23,646664,0,310194,31884,63310,33772,0,12881,57335,20317,86551,15025,2226,4061,5510,2927,671,0,248689655,515.6,115064724,44.1,515.6,0.0
|