Add 2015-07-11 — 365.5K events, 14 files
Browse files- README.md +20 -20
- data/commit_comments/2015/07/11.parquet +3 -0
- data/creates/2015/07/11.parquet +3 -0
- data/deletes/2015/07/11.parquet +3 -0
- data/forks/2015/07/11.parquet +3 -0
- data/issue_comments/2015/07/11.parquet +3 -0
- data/issues/2015/07/11.parquet +3 -0
- data/members/2015/07/11.parquet +3 -0
- data/pr_review_comments/2015/07/11.parquet +3 -0
- data/public_events/2015/07/11.parquet +3 -0
- data/pull_requests/2015/07/11.parquet +3 -0
- data/pushes/2015/07/11.parquet +3 -0
- data/releases/2015/07/11.parquet +3 -0
- data/stars/2015/07/11.parquet +3 -0
- data/wiki_pages/2015/07/11.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 13.
|
| 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 ██████████████████████████████ 21.
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
@@ -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 | 21,
|
| 588 |
-
| `issues` | IssuesEvent | 2,
|
| 589 |
-
| `issue_comments` | IssueCommentEvent | 4,
|
| 590 |
-
| `pull_requests` | PullRequestEvent | 2,
|
| 591 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 592 |
-
| `stars` | WatchEvent |
|
| 593 |
-
| `forks` | ForkEvent | 1,
|
| 594 |
-
| `creates` | CreateEvent | 6,
|
| 595 |
-
| `deletes` | DeleteEvent |
|
| 596 |
-
| `releases` | ReleaseEvent |
|
| 597 |
-
| `commit_comments` | CommitCommentEvent |
|
| 598 |
-
| `wiki_pages` | GollumEvent |
|
| 599 |
-
| `members` | MemberEvent |
|
| 600 |
-
| `public_events` | PublicEvent | 44,
|
| 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-11** (89 days), totaling **45,014,476 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 13.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.3 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 ██████████████████████████████ 45.0M
|
| 108 |
```
|
| 109 |
|
| 110 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 111 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 112 |
+
| 2015 | 89 | 45,014,476 | 505,780 | 13.5 GB | 7.3 GB | 1h03m | 10h29m | 2h05m |
|
| 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 ██████████████████████████████ 21.8M
|
| 121 |
```
|
| 122 |
|
| 123 |
|
|
|
|
| 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.3M
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 584 |
|
| 585 |
| Table | GitHub Event | Events | % | Description |
|
| 586 |
|-------|-------------|-------:|---:|-------------|
|
| 587 |
+
| `pushes` | PushEvent | 21,824,922 | 48.5% | Git pushes with commits |
|
| 588 |
+
| `issues` | IssuesEvent | 2,099,565 | 4.7% | Issue lifecycle events |
|
| 589 |
+
| `issue_comments` | IssueCommentEvent | 4,106,168 | 9.1% | Comments on issues/PRs |
|
| 590 |
+
| `pull_requests` | PullRequestEvent | 2,252,646 | 5.0% | PR lifecycle events |
|
| 591 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 741,454 | 1.6% | Line-level PR comments |
|
| 592 |
+
| `stars` | WatchEvent | 4,012,418 | 8.9% | Repository stars |
|
| 593 |
+
| `forks` | ForkEvent | 1,511,996 | 3.4% | Repository forks |
|
| 594 |
+
| `creates` | CreateEvent | 6,377,164 | 14.2% | Branch/tag/repo creation |
|
| 595 |
+
| `deletes` | DeleteEvent | 987,351 | 2.2% | Branch/tag deletion |
|
| 596 |
+
| `releases` | ReleaseEvent | 146,784 | 0.3% | Release publications |
|
| 597 |
+
| `commit_comments` | CommitCommentEvent | 276,177 | 0.6% | Comments on commits |
|
| 598 |
+
| `wiki_pages` | GollumEvent | 419,228 | 0.9% | Wiki page edits |
|
| 599 |
+
| `members` | MemberEvent | 213,851 | 0.5% | Collaborator additions |
|
| 600 |
+
| `public_events` | PublicEvent | 44,752 | 0.1% | Repo made public |
|
| 601 |
|
| 602 |
## How it's built
|
| 603 |
|
data/commit_comments/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7f675ecf4e7d1b734beb847b7edd755d8840ec89414d35c61a2e8d55d05182e
|
| 3 |
+
size 283693
|
data/creates/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a718639c361f29f6dae2e42a374cd636d7afa2d473b6746423ca8fd067e95863
|
| 3 |
+
size 1988972
|
data/deletes/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa833fb9734b01e89430e4ded42e9b7291c670e94d6f27f25b44beee4d425b25
|
| 3 |
+
size 243313
|
data/forks/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9c632a7b9e89906a5780c092aa536522d8da99bf7e9d0f9625a8c2cbc2c31536
|
| 3 |
+
size 1416960
|
data/issue_comments/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:522d6c46d211bb1ed7be3e78425078130dc12c795ad719e3adb9997650284bda
|
| 3 |
+
size 5491903
|
data/issues/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c7d3b20d8cd3f99ead94c6275fa7164c1ea311f4b5aacafde0dfc7de233653c
|
| 3 |
+
size 3923815
|
data/members/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de8158599f8a2d17635fabd750a805088bdc4336ca81fef08892780703519005
|
| 3 |
+
size 69196
|
data/pr_review_comments/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bdce2f460b727f381054cd6090203f67b134d1118d8888b98146936f8e51f03e
|
| 3 |
+
size 1344227
|
data/public_events/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9a8a827a036f7a8b0f0aa92c3374cf5741ada9951762b7d0c74853a4b1ae6cb
|
| 3 |
+
size 13617
|
data/pull_requests/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2db37e96a39a2a3a0d0a316821be893f5d47acd5b510a60125ddf440b7a28434
|
| 3 |
+
size 2878136
|
data/pushes/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:165a9cb7b03cfe1e8727da71389679333fd10517fa9a364c07d28c167ab1119c
|
| 3 |
+
size 41221068
|
data/releases/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36dcac6a952571551976fab5de1a9157c6467ce835caba8a829747651da543a0
|
| 3 |
+
size 197400
|
data/stars/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f78ac3e698afbdc28209a64e449b569b58e3ac256517d519eae43ec19a5954e5
|
| 3 |
+
size 1181708
|
data/wiki_pages/2015/07/11.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8416c6d7ae2e7ce85c230805353bf0b431503412f0651b4de5cf002999e4a35b
|
| 3 |
+
size 258294
|
stats.csv
CHANGED
|
@@ -86,4 +86,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 86 |
2015-07-07,638430,0,300442,30137,61646,32931,0,13510,62147,23533,85295,13568,2205,3874,5590,2878,674,0,245556010,433.9,111271146,88.3,433.9,48.4
|
| 87 |
2015-07-08,660454,0,309231,30865,64683,34807,0,13190,61383,24305,91920,13665,2179,4240,6736,2630,620,0,253716521,457.3,115484448,97.7,457.3,40.1
|
| 88 |
2015-07-09,645483,0,304619,30190,64371,34367,0,13359,57830,23945,88583,12661,2169,3994,6110,2694,591,0,251902325,446.0,114270917,94.8,446.0,39.0
|
| 89 |
-
2015-07-10,587057,0,278801,28051,57503,31276,0,11107,55280,21009,78315,11791,2179,3917,5161,2143,524,0,227282850,412.3,103852757,39.5,412.3,
|
|
|
|
|
|
| 86 |
2015-07-07,638430,0,300442,30137,61646,32931,0,13510,62147,23533,85295,13568,2205,3874,5590,2878,674,0,245556010,433.9,111271146,88.3,433.9,48.4
|
| 87 |
2015-07-08,660454,0,309231,30865,64683,34807,0,13190,61383,24305,91920,13665,2179,4240,6736,2630,620,0,253716521,457.3,115484448,97.7,457.3,40.1
|
| 88 |
2015-07-09,645483,0,304619,30190,64371,34367,0,13359,57830,23945,88583,12661,2169,3994,6110,2694,591,0,251902325,446.0,114270917,94.8,446.0,39.0
|
| 89 |
+
2015-07-10,587057,0,278801,28051,57503,31276,0,11107,55280,21009,78315,11791,2179,3917,5161,2143,524,0,227282850,412.3,103852757,39.5,412.3,39.4
|
| 90 |
+
2015-07-11,365543,0,183055,16014,28788,16089,0,3704,34295,13439,53494,8092,1416,2092,3247,1545,273,0,123461013,221.6,60512302,34.0,221.6,0.0
|