Add 2015-07-01 — 577.2K events, 14 files
Browse files- README.md +20 -20
- data/commit_comments/2015/07/01.parquet +3 -0
- data/creates/2015/07/01.parquet +3 -0
- data/deletes/2015/07/01.parquet +3 -0
- data/forks/2015/07/01.parquet +3 -0
- data/issue_comments/2015/07/01.parquet +3 -0
- data/issues/2015/07/01.parquet +3 -0
- data/members/2015/07/01.parquet +3 -0
- data/pr_review_comments/2015/07/01.parquet +3 -0
- data/public_events/2015/07/01.parquet +3 -0
- data/pull_requests/2015/07/01.parquet +3 -0
- data/pushes/2015/07/01.parquet +3 -0
- data/releases/2015/07/01.parquet +3 -0
- data/stars/2015/07/01.parquet +3 -0
- data/wiki_pages/2015/07/01.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-
|
| 65 |
|
| 66 |
-
We believe this is the most complete and regularly updated structured mirror of public GitHub activity available on Hugging Face. The original 11.
|
| 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 ██████████████████████████████ 39.
|
| 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 ██████████████████████████████ 19.
|
| 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 | 19,
|
| 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 | 39,
|
| 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-01** (79 days), totaling **39,746,864 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 11.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.4 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 ██████████████████████████████ 39.7M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 79 | 39,746,864 | 503,124 | 11.7 GB | 6.4 GB | 53m58s | 9h30m | 1h57m |
|
| 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 ██████████████████████████████ 19.3M
|
| 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.9M
|
| 138 |
```
|
| 139 |
|
| 140 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 19,292,770 | 48.5% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 1,854,533 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 3,620,721 | 9.1% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 1,989,205 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 648,819 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 3,515,561 | 8.8% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,323,308 | 3.3% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 5,648,911 | 14.2% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 877,194 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 128,484 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 243,819 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 370,979 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 192,790 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 39,770 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:333019ed58c8ecce505cc178dc4b3385cfad579a866437e502b373398834e32a
|
| 3 |
+
size 481741
|
data/creates/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8bceb4b5b8a2d5a5e94409142c8a648743f4c4190fbdcf9f4b88776ddbe4ea20
|
| 3 |
+
size 3072725
|
data/deletes/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:828210971b68e2f71712fa969372a5c675e6e4ae2678e353979b3156e70d3fe0
|
| 3 |
+
size 420499
|
data/forks/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7033bf478ae6939acb547ccdc3ea54b61bfabb0f6560b88d4f0edbf37f21f9bc
|
| 3 |
+
size 2117645
|
data/issue_comments/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:defb8a7125ea5bf6a3408a858b0449d758ecda6ed3c89db1e421ddc720544396
|
| 3 |
+
size 10587346
|
data/issues/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e62351a32a1283b5f4cd9262242867c2e5079372d501bfc1fe09b08a6dd185d0
|
| 3 |
+
size 6789517
|
data/members/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:695bf5eeed69ab57e52bbb3d5bbe06fbd75ab3500f6dca01136973dcaf0ead37
|
| 3 |
+
size 103779
|
data/pr_review_comments/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c720eb804d1536b1037ef5790c1b169f4cd87275811275b4cff245fca99af6ee
|
| 3 |
+
size 4790670
|
data/public_events/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86d1aa2091af237f947b07373f55ecae748d4bf94be2359a214b14531efae6cf
|
| 3 |
+
size 24912
|
data/pull_requests/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6b1a11efd72d4576bc9b7098a2b034100afd837201cc1106f0a56500fc2c9f8
|
| 3 |
+
size 5604854
|
data/pushes/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2247ee59fc42247f26c6f40b046ea8446f26df8e93755b406a34a29402c0fe3f
|
| 3 |
+
size 67813501
|
data/releases/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4765ef70afe713c43bf2a6e696b53cb8817f3f20310f6f2fc39bef70d4c2a76b
|
| 3 |
+
size 354638
|
data/stars/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5004624e81621003d7f03510f47ad54cf80ec11fdaa465a7ae5d77cf46c2ed8
|
| 3 |
+
size 1796315
|
data/wiki_pages/2015/07/01.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:357f1f5b3900b4d1496dc55bc9740ff600e7cab86d5fb4ca1180a12d507ebbfc
|
| 3 |
+
size 353961
|
stats.csv
CHANGED
|
@@ -76,4 +76,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 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,31.7
|
| 77 |
2015-06-28,372368,0,198421,15988,27437,15476,0,3634,32890,11852,51087,7144,1247,1857,3616,1349,370,0,122576430,221.1,62151068,29.2,221.1,46.0
|
| 78 |
2015-06-29,602964,0,286105,29540,60190,31999,0,12608,55893,19445,80332,12145,1984,3697,5809,2653,564,0,234573054,438.2,107733461,90.6,438.2,37.1
|
| 79 |
-
2015-06-30,628073,0,297205,29585,63158,33556,0,14386,57158,20938,83403,13350,2294,4119,5800,2504,617,0,249903209,467.9,113475490,95.8,467.9,
|
|
|
|
|
|
| 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,31.7
|
| 77 |
2015-06-28,372368,0,198421,15988,27437,15476,0,3634,32890,11852,51087,7144,1247,1857,3616,1349,370,0,122576430,221.1,62151068,29.2,221.1,46.0
|
| 78 |
2015-06-29,602964,0,286105,29540,60190,31999,0,12608,55893,19445,80332,12145,1984,3697,5809,2653,564,0,234573054,438.2,107733461,90.6,438.2,37.1
|
| 79 |
+
2015-06-30,628073,0,297205,29585,63158,33556,0,14386,57158,20938,83403,13350,2294,4119,5800,2504,617,0,249903209,467.9,113475490,95.8,467.9,43.7
|
| 80 |
+
2015-07-01,577176,0,272943,27450,56863,30825,0,13370,51519,19670,79063,11748,1982,3650,4969,2590,534,0,229599457,432.2,104312103,42.5,432.2,0.0
|