Add 2015-08-08 — 331.5K events, 14 files
Browse files- README.md +19 -19
- data/commit_comments/2015/08/08.parquet +3 -0
- data/creates/2015/08/08.parquet +3 -0
- data/deletes/2015/08/08.parquet +3 -0
- data/forks/2015/08/08.parquet +3 -0
- data/issue_comments/2015/08/08.parquet +3 -0
- data/issues/2015/08/08.parquet +3 -0
- data/members/2015/08/08.parquet +3 -0
- data/pr_review_comments/2015/08/08.parquet +3 -0
- data/public_events/2015/08/08.parquet +3 -0
- data/pull_requests/2015/08/08.parquet +3 -0
- data/pushes/2015/08/08.parquet +3 -0
- data/releases/2015/08/08.parquet +3 -0
- data/stars/2015/08/08.parquet +3 -0
- data/wiki_pages/2015/08/08.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-08-
|
| 65 |
|
| 66 |
-
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 18.
|
| 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 ██████████████████████████████ 60.
|
| 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 ██████████████████████████████ 29.
|
| 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 | 29,
|
| 588 |
-
| `issues` | IssuesEvent | 2,
|
| 589 |
-
| `issue_comments` | IssueCommentEvent | 5,
|
| 590 |
-
| `pull_requests` | PullRequestEvent | 3,
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent | 1,
|
| 592 |
-
| `stars` | WatchEvent | 5,
|
| 593 |
-
| `forks` | ForkEvent | 2,
|
| 594 |
-
| `creates` | CreateEvent | 8,
|
| 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-08-08** (117 days), totaling **60,361,524 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 18.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.8 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 ██████████████████████████████ 60.4M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 117 | 60,361,524 | 515,910 | 18.9 GB | 9.8 GB | 1h25m | 13h22m | 2h36m |
|
| 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 ██████████████████████████████ 29.2M
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 29,168,231 | 48.3% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 2,820,103 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 5,560,609 | 9.2% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 3,033,153 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 1,021,127 | 1.7% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 5,394,001 | 8.9% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 2,022,110 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 8,551,230 | 14.2% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 1,338,361 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 202,914 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 370,734 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 547,949 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 272,982 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 58,020 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2da2af1445261feb22e5c51cb29d086ccda73ec8f2ff47c7e7cfb6506e17a9f6
|
| 3 |
+
size 243677
|
data/creates/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b2c09c392d2e509277bbf6f69745e2f15e0afe833f18ec0f8d23d9182a16463
|
| 3 |
+
size 1764666
|
data/deletes/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c0be7f40c92c5302f9d855e9d3f266e27e6aede25fa96ff17df4c21524e8806
|
| 3 |
+
size 211788
|
data/forks/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81da5d7ccbd31f3e8accf9e04f5d734ba3273d34982d3dc63f90bdf39ec6a83b
|
| 3 |
+
size 1324163
|
data/issue_comments/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b2b1382de5f3e64f67a527bba47fbc8cda7b30fc6e0c42110b78299843e0b223
|
| 3 |
+
size 5169825
|
data/issues/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50154b324de0e2ac9ae60b681f5703e126a15292886c0d6f47b9640a0c9c3192
|
| 3 |
+
size 3626400
|
data/members/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:148a2b151b8933880019b5d7e277d7eb04590f6ab8556ffb16e3d63ca75ca4b8
|
| 3 |
+
size 61044
|
data/pr_review_comments/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6769ab22314126522da856b9612135f8e50169799fe8ef197104c3d9209b595d
|
| 3 |
+
size 1353994
|
data/public_events/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c42c2540312abc4e54762391caa05ead4cfca50ba1aa674506c4907476288506
|
| 3 |
+
size 14058
|
data/pull_requests/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b3ebac4031142e24c5291ba441c2370bf0072cd7996c71d5d79b676f5e9d0da
|
| 3 |
+
size 2664775
|
data/pushes/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72f4fa209d228dbf97b6cd30cebdd31c9141c1b896ea2912339aa8bc8978fd21
|
| 3 |
+
size 37388329
|
data/releases/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e50348ec2888bea65bd356f0eafba30465c8dc3bbe5aed11cafdd62b0fe09df7
|
| 3 |
+
size 213787
|
data/stars/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f76a3b9172899543745b784a3f732c4af3d032c600507081eb5ea4a0e97f3f9
|
| 3 |
+
size 1135323
|
data/wiki_pages/2015/08/08.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fef78476635e55e1f2ffeb082c372c25f4dd34a147a7adc404d32e117dcfc5eb
|
| 3 |
+
size 231642
|
stats.csv
CHANGED
|
@@ -114,4 +114,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 114 |
2015-08-04,638045,0,296028,29095,63615,33662,0,13312,57184,20664,95452,14926,2119,3898,5083,2434,573,0,247187320,378.4,111753624,151.3,378.4,265.7
|
| 115 |
2015-08-05,628088,0,297334,29755,62890,33915,0,12707,57059,20844,86587,12778,2075,4065,5230,2307,542,0,245004964,355.4,111248267,93.1,355.5,48.8
|
| 116 |
2015-08-06,473322,0,225839,22135,47349,26409,0,9307,43808,16153,60943,10408,1684,3481,3756,1625,425,0,187356214,259.6,86148628,24.3,259.6,59.3
|
| 117 |
-
2015-08-07,581255,0,272015,26585,56720,31667,0,11226,58099,20342,77834,13931,1983,3393,4617,2347,496,0,225812316,345.3,102523043,37.1,345.3,
|
|
|
|
|
|
| 114 |
2015-08-04,638045,0,296028,29095,63615,33662,0,13312,57184,20664,95452,14926,2119,3898,5083,2434,573,0,247187320,378.4,111753624,151.3,378.4,265.7
|
| 115 |
2015-08-05,628088,0,297334,29755,62890,33915,0,12707,57059,20844,86587,12778,2075,4065,5230,2307,542,0,245004964,355.4,111248267,93.1,355.5,48.8
|
| 116 |
2015-08-06,473322,0,225839,22135,47349,26409,0,9307,43808,16153,60943,10408,1684,3481,3756,1625,425,0,187356214,259.6,86148628,24.3,259.6,59.3
|
| 117 |
+
2015-08-07,581255,0,272015,26585,56720,31667,0,11226,58099,20342,77834,13931,1983,3393,4617,2347,496,0,225812316,345.3,102523043,37.1,345.3,90.2
|
| 118 |
+
2015-08-08,331466,0,164050,14270,25602,14823,0,3808,32400,12277,50234,6383,1259,1777,2941,1352,290,0,112903524,194.0,55403471,29.6,194.1,0.0
|