Add 2015-06-25 — 635.0K events, 14 files
Browse files- README.md +19 -19
- data/commit_comments/2015/06/25.parquet +3 -0
- data/creates/2015/06/25.parquet +3 -0
- data/deletes/2015/06/25.parquet +3 -0
- data/forks/2015/06/25.parquet +3 -0
- data/issue_comments/2015/06/25.parquet +3 -0
- data/issues/2015/06/25.parquet +3 -0
- data/members/2015/06/25.parquet +3 -0
- data/pr_review_comments/2015/06/25.parquet +3 -0
- data/public_events/2015/06/25.parquet +3 -0
- data/pull_requests/2015/06/25.parquet +3 -0
- data/pushes/2015/06/25.parquet +3 -0
- data/releases/2015/06/25.parquet +3 -0
- data/stars/2015/06/25.parquet +3 -0
- data/wiki_pages/2015/06/25.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 10.
|
| 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 ██████████████████████████████ 36.
|
| 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 ██████████████████████████████ 17.
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
-
| `pushes` | PushEvent | 17,
|
| 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 | 5,
|
| 595 |
-
| `deletes` | DeleteEvent |
|
| 596 |
-
| `releases` | ReleaseEvent |
|
| 597 |
-
| `commit_comments` | CommitCommentEvent |
|
| 598 |
-
| `wiki_pages` | GollumEvent |
|
| 599 |
-
| `members` | MemberEvent |
|
| 600 |
-
| `public_events` | PublicEvent | 36,
|
| 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-25** (73 days), totaling **36,605,907 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.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 ██████████████████████████████ 36.6M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 73 | 36,605,907 | 501,450 | 10.5 GB | 5.9 GB | 48m33s | 8h53m | 1h53m |
|
| 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.8M
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 17,764,599 | 48.5% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 1,707,548 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 3,329,921 | 9.1% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 1,830,960 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 590,168 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 3,234,602 | 8.8% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,220,020 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 5,213,858 | 14.2% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 813,331 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 117,911 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 224,360 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 342,605 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 179,172 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 36,852 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:376a4fde4cd378031c807738ab47d8d83d91d97f1aaddc0137a5553772cf53d5
|
| 3 |
+
size 518663
|
data/creates/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83866e9cfd4ffaad1d4574206e6ed3b641d764e3276089d807350a2c422378f1
|
| 3 |
+
size 3190957
|
data/deletes/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1d4ed040b926b1f0f84ebaedd01e5e6c1570a6f1c263aa78db311a46a126997
|
| 3 |
+
size 467557
|
data/forks/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4834d1248bd53dd3d2b462b82d4eaed47ae96284821d84460442b3de7f56c689
|
| 3 |
+
size 2234120
|
data/issue_comments/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad898dca188ced5efd995f182dc751562dd42cb5ee3aa11790437a61eaac767c
|
| 3 |
+
size 11463920
|
data/issues/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0363611d99951ad22e0ad7fffde51221d6383b501c66610b6258c51a7bd33fef
|
| 3 |
+
size 7363169
|
data/members/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08decd02ebd8cff892296e00b7c40d7ec88c0f2a3df1b23d118394ffbfce3381
|
| 3 |
+
size 104830
|
data/pr_review_comments/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:694e66c33701b114b869bc8432d1bdb15137c2bfb82f1449adba10e06e66faca
|
| 3 |
+
size 4088724
|
data/public_events/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f6a491f609f09072c51e63b5ec9895677a85e9bfddae569de16bad41a78f2ba
|
| 3 |
+
size 29260
|
data/pull_requests/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f083e57fb479fc2b801e474b1fe9d2914dd55d7f92d16e80b57708dc1c4b6da0
|
| 3 |
+
size 6122202
|
data/pushes/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09c101faad6226786e05b2dcbd08714008e8c071ccbda3842ddae907347b4d2d
|
| 3 |
+
size 75787337
|
data/releases/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48055e3170151fde5dee84b43350a8c610db4f8bd475160798f52c9d59c37543
|
| 3 |
+
size 302314
|
data/stars/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45ae607fc3de597896d4265e32537c364538e5e6ebd22cd9f0e3a0e00e3a1322
|
| 3 |
+
size 1883516
|
data/wiki_pages/2015/06/25.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9f0e11982b725ed2a9219685af597f85a372a19179d6da45f00a2dd644f367ae
|
| 3 |
+
size 432338
|
stats.csv
CHANGED
|
@@ -70,4 +70,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 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,44.5
|
| 73 |
-
2015-06-24,641914,0,309571,31692,63382,33843,0,12301,55774,22158,85126,13071,2125,4145,5239,2846,641,0,248809087,515.6,115652093,38.9,515.6,
|
|
|
|
|
|
| 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,44.5
|
| 73 |
+
2015-06-24,641914,0,309571,31692,63382,33843,0,12301,55774,22158,85126,13071,2125,4145,5239,2846,641,0,248809087,515.6,115652093,38.9,515.6,34.8
|
| 74 |
+
2015-06-25,634985,0,308353,30310,62241,34911,0,12440,54284,20986,83114,13378,2000,4216,5488,2605,659,0,246336432,500.1,113988907,39.4,500.1,0.0
|