Add 2015-06-27 — 367.0K events, 14 files
Browse files- README.md +20 -20
- data/commit_comments/2015/06/27.parquet +3 -0
- data/creates/2015/06/27.parquet +3 -0
- data/deletes/2015/06/27.parquet +3 -0
- data/forks/2015/06/27.parquet +3 -0
- data/issue_comments/2015/06/27.parquet +3 -0
- data/issues/2015/06/27.parquet +3 -0
- data/members/2015/06/27.parquet +3 -0
- data/pr_review_comments/2015/06/27.parquet +3 -0
- data/public_events/2015/06/27.parquet +3 -0
- data/pull_requests/2015/06/27.parquet +3 -0
- data/pushes/2015/06/27.parquet +3 -0
- data/releases/2015/06/27.parquet +3 -0
- data/stars/2015/06/27.parquet +3 -0
- data/wiki_pages/2015/06/27.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 ██████████████████████████████ 37.
|
| 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 ██████████████████████████████ 18.
|
| 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 |
|
|
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
-
| `pushes` | PushEvent | 18,
|
| 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 | 37,
|
| 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-27** (75 days), totaling **37,566,283 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.1 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 ██████████████████████████████ 37.6M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 75 | 37,566,283 | 500,883 | 10.9 GB | 6.1 GB | 49m40s | 9h04m | 1h54m |
|
| 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 ██████████████████████████████ 18.2M
|
| 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.8M
|
| 138 |
```
|
| 139 |
|
| 140 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 18,238,096 | 48.5% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 1,751,970 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 3,413,073 | 9.1% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 1,877,349 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 604,821 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 3,318,101 | 8.8% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,251,403 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 5,355,026 | 14.3% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 832,807 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 120,977 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 230,496 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 350,785 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 183,694 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 37,685 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5c66f762b4958bebe9b05443501d0e27d97c98499f7dee223ca0407cfd1b7db8
|
| 3 |
+
size 257375
|
data/creates/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d2d9ed6aa3efd3620501ea2ecb59e6745e07259c87965ed7e9bbc79a1bd42d3b
|
| 3 |
+
size 1941691
|
data/deletes/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b472c58dab811634c36de64314089a7dada70231d284874c5ff6c5ee4837e20e
|
| 3 |
+
size 214881
|
data/forks/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2f8d9017316b8dee9d10b7d777c846dcffe40019484fee733ac78835264b923
|
| 3 |
+
size 1331465
|
data/issue_comments/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:20540a2872c00ae3246d3468009a23858aca87b1a63511f1a85ae7c5b4bea022
|
| 3 |
+
size 5134042
|
data/issues/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b3044be3e4ee242ff88651d7fb24ee52a90308f852367a9a209abcb7d10a5f1
|
| 3 |
+
size 3791021
|
data/members/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:673c9e25228408bf731e8f0643d93a1bcb960212bbdecece653ec56be7ff57c8
|
| 3 |
+
size 80005
|
data/pr_review_comments/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ce057e9969f7731d8c1eee39baa09172d53e6fe119f26f698a7c5232123f275
|
| 3 |
+
size 1170853
|
data/public_events/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:573ec625dc0c5c67d7bbd4c44735c6d91b0413c880ca88f045f0d33852132c5e
|
| 3 |
+
size 14754
|
data/pull_requests/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:676535bf1102a8d2ffd9b2cbb6244e59b5d07924cec27713ea2be12f6f788c6a
|
| 3 |
+
size 2647956
|
data/pushes/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38d648598fa8ae896bda61d3effb90cf8ddb541182317e18161195b60693031f
|
| 3 |
+
size 42379955
|
data/releases/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c99fd8e8e70e814bebecb1a13414fa9f6a4c62bda8bcb8017a73be75ed7c384
|
| 3 |
+
size 184896
|
data/stars/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6d3a3448f76a0dcd91710a627808c551443504ea4c9ed7a809254733ba316d5
|
| 3 |
+
size 1163650
|
data/wiki_pages/2015/06/27.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8eddad931e6aabc83858657754876d79545955a81e9e42eea3a2e578aed53536
|
| 3 |
+
size 184429
|
stats.csv
CHANGED
|
@@ -72,4 +72,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 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,38.9
|
| 75 |
-
2015-06-26,593359,0,283957,29117,55945,31377,0,11011,51208,19168,84509,12950,1908,4199,5072,2406,532,0,226885546,446.9,105244715,37.4,446.9,
|
|
|
|
|
|
| 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,38.9
|
| 75 |
+
2015-06-26,593359,0,283957,29117,55945,31377,0,11011,51208,19168,84509,12950,1908,4199,5072,2406,532,0,226885546,446.9,105244715,37.4,446.9,36.2
|
| 76 |
+
2015-06-27,367017,0,189540,15305,27207,15012,0,3642,32291,12215,56659,6526,1158,1937,3108,2116,301,0,120439220,219.3,60496973,28.9,219.3,0.0
|