Add 2015-07-29 — 662.9K events, 14 files
Browse files- README.md +21 -21
- data/commit_comments/2015/07/29.parquet +3 -0
- data/creates/2015/07/29.parquet +3 -0
- data/deletes/2015/07/29.parquet +3 -0
- data/forks/2015/07/29.parquet +3 -0
- data/issue_comments/2015/07/29.parquet +3 -0
- data/issues/2015/07/29.parquet +3 -0
- data/members/2015/07/29.parquet +3 -0
- data/pr_review_comments/2015/07/29.parquet +3 -0
- data/public_events/2015/07/29.parquet +3 -0
- data/pull_requests/2015/07/29.parquet +3 -0
- data/pushes/2015/07/29.parquet +3 -0
- data/releases/2015/07/29.parquet +3 -0
- data/stars/2015/07/29.parquet +3 -0
- data/wiki_pages/2015/07/29.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
|
| 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 ██████████████████████████████ 26.
|
| 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 ██████████████████████████████ 2.
|
| 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 ██████████████████████████████ 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 | 26,
|
| 588 |
-
| `issues` | IssuesEvent | 2,
|
| 589 |
-
| `issue_comments` | IssueCommentEvent | 5,
|
| 590 |
-
| `pull_requests` | PullRequestEvent | 2,
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 592 |
-
| `stars` | WatchEvent | 4,
|
| 593 |
-
| `forks` | ForkEvent | 1,
|
| 594 |
-
| `creates` | CreateEvent | 7,
|
| 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-29** (107 days), totaling **55,155,525 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 17.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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 ██████████████████████████████ 55.2M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 107 | 55,155,525 | 515,472 | 17.0 GB | 8.9 GB | 1h17m | 12h26m | 2h21m |
|
| 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 ██████████████████████████████ 26.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 ██████████████████████████████ 2.6M
|
| 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 ██████████████████████████████ 2.8M
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 26,660,569 | 48.3% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 2,575,306 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 5,068,709 | 9.2% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 2,762,797 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 925,503 | 1.7% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 4,917,429 | 8.9% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,850,987 | 3.4% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 7,832,961 | 14.2% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 1,225,434 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 184,296 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 339,686 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 505,618 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 252,764 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 53,466 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38da41117cf0dff4f6817d2f0304068b5430effd43372e086294799b8440bbf3
|
| 3 |
+
size 633619
|
data/creates/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2816e9a19e3fb89a16cbe8b5e1c363094bf2d4ea8ebd0b16ad6b1b9e82a4ab2
|
| 3 |
+
size 3314016
|
data/deletes/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0c09c0b315e36409b157fa5b5f814b1ea64b29b0d0db17aa161e50978603c4c
|
| 3 |
+
size 514168
|
data/forks/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f894a4358d5ee0dc573f98949be06981f9acfa8c46d06d3cce9cd794ef3a0610
|
| 3 |
+
size 2252429
|
data/issue_comments/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:206b725b2d886208c65f5581c761f895ff69c1c35c684c56b54519648026bc4a
|
| 3 |
+
size 12212007
|
data/issues/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cabe9a9c330d8ccb4177b0f9d1a8b9a15bb73339cc8838a530640dc3648a2e86
|
| 3 |
+
size 7798748
|
data/members/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b0d21cfb4f0276510cbfc52d507a54490d95768c151d5a76cadabcf51d1e9e75
|
| 3 |
+
size 107165
|
data/pr_review_comments/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e4a3efc53e1734a82ff77f08825b641f93f34243369ef28d3734c1a9b53cd4e
|
| 3 |
+
size 4425306
|
data/public_events/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5f074423f919f3d11de593c41b672305badc916eca0dd9b3bb56cb443e7f473
|
| 3 |
+
size 24250
|
data/pull_requests/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64cec99c6237d4142aa649dc21c956d166e4b5371540106dc7dd9267ee9941b4
|
| 3 |
+
size 6374917
|
data/pushes/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae2c5f38ede0c4e9219b9d56f09355d3b20c6a437985813a72a3fb6fb0de64f1
|
| 3 |
+
size 78105099
|
data/releases/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e5e57d37d45eea7d91a0569c74bf0a9feb9175dc6f1efa4091a733ecd338c77
|
| 3 |
+
size 337849
|
data/stars/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2bf5e9d8555843023025733289698ae24ea5508855b6683f49892ce554f1769
|
| 3 |
+
size 2000164
|
data/wiki_pages/2015/07/29.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4ed09f27bfefddaefd4f51f0d22f56d91295289b227b885847974b9aa60da24
|
| 3 |
+
size 377463
|
stats.csv
CHANGED
|
@@ -104,4 +104,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 104 |
2015-07-25,399966,0,186400,17210,29516,15609,0,4254,34123,12988,83886,7296,1316,2146,3378,1521,323,0,126277355,282.1,62077645,33.9,282.1,32.0
|
| 105 |
2015-07-26,419063,0,201002,19469,31662,14817,0,4726,34519,13811,76597,14412,1409,2148,3098,1013,380,0,129304972,305.8,64801413,28.3,305.8,32.4
|
| 106 |
2015-07-27,620567,0,295636,30288,61089,33120,0,12839,58227,20429,80431,13590,2222,4338,5329,2423,606,0,242770233,489.7,112156643,35.7,489.7,42.6
|
| 107 |
-
2015-07-28,659616,0,314082,30340,65904,35546,0,13967,60027,21931,89128,13649,2460,4051,5407,2483,641,0,258590143,467.5,118003268,37.6,467.5,
|
|
|
|
|
|
| 104 |
2015-07-25,399966,0,186400,17210,29516,15609,0,4254,34123,12988,83886,7296,1316,2146,3378,1521,323,0,126277355,282.1,62077645,33.9,282.1,32.0
|
| 105 |
2015-07-26,419063,0,201002,19469,31662,14817,0,4726,34519,13811,76597,14412,1409,2148,3098,1013,380,0,129304972,305.8,64801413,28.3,305.8,32.4
|
| 106 |
2015-07-27,620567,0,295636,30288,61089,33120,0,12839,58227,20429,80431,13590,2222,4338,5329,2423,606,0,242770233,489.7,112156643,35.7,489.7,42.6
|
| 107 |
+
2015-07-28,659616,0,314082,30340,65904,35546,0,13967,60027,21931,89128,13649,2460,4051,5407,2483,641,0,258590143,467.5,118003268,37.6,467.5,172.2
|
| 108 |
+
2015-07-29,662867,0,320941,31333,66516,35306,0,12823,58022,21181,86196,15126,2478,4309,5300,2770,566,0,258285897,460.7,118477200,37.1,460.7,0.0
|