Add 2011-06-15 — 51.3K events, 11 files
Browse files- README.md +19 -19
- data/commit_comments/2011/06/15.parquet +3 -0
- data/creates/2011/06/15.parquet +3 -0
- data/deletes/2011/06/15.parquet +3 -0
- data/forks/2011/06/15.parquet +3 -0
- data/issues/2011/06/15.parquet +3 -0
- data/members/2011/06/15.parquet +3 -0
- data/public_events/2011/06/15.parquet +3 -0
- data/pull_requests/2011/06/15.parquet +3 -0
- data/pushes/2011/06/15.parquet +3 -0
- data/stars/2011/06/15.parquet +3 -0
- data/wiki_pages/2011/06/15.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 **2011-02-12** to **2011-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
|
| 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 |
|
|
@@ -131,12 +131,12 @@ duckdb.sql("""
|
|
| 131 |
## Events per year
|
| 132 |
|
| 133 |
```
|
| 134 |
-
2011 ██████████████████████████████ 3.
|
| 135 |
```
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
-
| 2011 |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
|
@@ -149,21 +149,21 @@ duckdb.sql("""
|
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
-
2011 ██████████████████████████████
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
-
2011 ██████████████████████████████
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
-
2011 ██████████████████████████████
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
-
| `pushes` | PushEvent | 1,
|
| 551 |
-
| `issues` | IssuesEvent |
|
| 552 |
-
| `issue_comments` | IssueCommentEvent |
|
| 553 |
-
| `pull_requests` | PullRequestEvent |
|
| 554 |
-
| `stars` | WatchEvent |
|
| 555 |
-
| `forks` | ForkEvent |
|
| 556 |
-
| `creates` | CreateEvent |
|
| 557 |
-
| `deletes` | DeleteEvent |
|
| 558 |
-
| `commit_comments` | CommitCommentEvent |
|
| 559 |
-
| `wiki_pages` | GollumEvent |
|
| 560 |
-
| `members` | MemberEvent | 22,
|
| 561 |
-
| `public_events` | PublicEvent | 3,
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
|
|
|
| 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 **2011-02-12** to **2011-06-15** (77 days), totaling **3,376,639 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 624.8 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 330.2 MB 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 |
|
|
|
|
| 131 |
## Events per year
|
| 132 |
|
| 133 |
```
|
| 134 |
+
2011 ██████████████████████████████ 3.4M
|
| 135 |
```
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
+
| 2011 | 77 | 3,376,639 | 43,852 | 624.8 MB | 330.2 MB | 11m17s | 15m19s | 30m28s |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
|
|
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
+
2011 ██████████████████████████████ 174.5K
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
+
2011 ██████████████████████████████ 84.7K
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
+
2011 ██████████████████████████████ 389.4K
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
+
| `pushes` | PushEvent | 1,795,168 | 53.2% | Git pushes with commits |
|
| 551 |
+
| `issues` | IssuesEvent | 174,522 | 5.2% | Issue lifecycle events |
|
| 552 |
+
| `issue_comments` | IssueCommentEvent | 160,954 | 4.8% | Comments on issues/PRs |
|
| 553 |
+
| `pull_requests` | PullRequestEvent | 84,662 | 2.5% | PR lifecycle events |
|
| 554 |
+
| `stars` | WatchEvent | 389,406 | 11.5% | Repository stars |
|
| 555 |
+
| `forks` | ForkEvent | 100,968 | 3.0% | Repository forks |
|
| 556 |
+
| `creates` | CreateEvent | 468,387 | 13.9% | Branch/tag/repo creation |
|
| 557 |
+
| `deletes` | DeleteEvent | 45,429 | 1.3% | Branch/tag deletion |
|
| 558 |
+
| `commit_comments` | CommitCommentEvent | 49,035 | 1.5% | Comments on commits |
|
| 559 |
+
| `wiki_pages` | GollumEvent | 82,542 | 2.4% | Wiki page edits |
|
| 560 |
+
| `members` | MemberEvent | 22,393 | 0.7% | Collaborator additions |
|
| 561 |
+
| `public_events` | PublicEvent | 3,173 | 0.1% | Repo made public |
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
data/commit_comments/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2faf72c10d3745667bbdd6c3a84a5a7b880708333e66291abfa8ff47e8c5cdd7
|
| 3 |
+
size 37263
|
data/creates/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b2e90efdb104ebdd9f56a8898e48e9881842cbb2eef10772c5833eacaa74679
|
| 3 |
+
size 256801
|
data/deletes/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09ea5337b7e89d30db476b73c6a552f3103d5aac117daeb3c78af62738c5ed10
|
| 3 |
+
size 19084
|
data/forks/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7d450b4d2da4dea110ef9e2d74190a2a03f42177c3e5ff88cf322193ff591bc3
|
| 3 |
+
size 90068
|
data/issues/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:857c6429ead0a5427b0d5f9410c1344c9bec71f6b748f241354ad64f861f05f6
|
| 3 |
+
size 94323
|
data/members/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e811e2ca458856e8a3faee9982d096761abb8f8debf1c0af5cfd65541657d5ea
|
| 3 |
+
size 16974
|
data/public_events/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:621cfa01dac7911c94d27cd9ac6ac50a17f751854c3efe4cc85aa64c522bc4a6
|
| 3 |
+
size 5579
|
data/pull_requests/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d2adc0ad2d22cc5e53e513f702233853b87e99b2f550f22dfb1a9a89c1e2ba3
|
| 3 |
+
size 94325
|
data/pushes/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5706ef6e20ded15cf7cf9c04febbb11ab31f5fc942b8ebfac665b8ef2149f7c
|
| 3 |
+
size 4521934
|
data/stars/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf3227895421d9614a732a2cd312cf28eea69acf5273171f573d05255e0ebea5
|
| 3 |
+
size 172854
|
data/wiki_pages/2011/06/15.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:26e16af3540584e4d38f65e9504555ebd6bce5aeea2a0e8470d0cfe3733f2be6
|
| 3 |
+
size 69937
|
stats.csv
CHANGED
|
@@ -74,4 +74,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 74 |
2011-06-11,43145,0,17715,6018,6135,922,0,0,3751,1017,5516,441,0,476,930,199,25,0,6440162,14.7,3730549,9.4,14.7,27.3
|
| 75 |
2011-06-12,31880,0,16876,1542,1965,770,0,0,3758,935,4374,298,0,390,762,185,25,0,5827286,12.8,3366093,10.9,12.8,28.9
|
| 76 |
2011-06-13,49590,0,25435,2348,3251,1292,0,0,6087,1623,6487,879,0,793,1043,289,63,0,9179640,15.0,5140764,10.7,15.0,27.0
|
| 77 |
-
2011-06-14,51594,0,27153,2520,3683,1453,0,0,5764,1641,6709,441,0,804,1051,327,48,0,9720506,16.1,5520666,9.5,16.1,
|
|
|
|
|
|
| 74 |
2011-06-11,43145,0,17715,6018,6135,922,0,0,3751,1017,5516,441,0,476,930,199,25,0,6440162,14.7,3730549,9.4,14.7,27.3
|
| 75 |
2011-06-12,31880,0,16876,1542,1965,770,0,0,3758,935,4374,298,0,390,762,185,25,0,5827286,12.8,3366093,10.9,12.8,28.9
|
| 76 |
2011-06-13,49590,0,25435,2348,3251,1292,0,0,6087,1623,6487,879,0,793,1043,289,63,0,9179640,15.0,5140764,10.7,15.0,27.0
|
| 77 |
+
2011-06-14,51594,0,27153,2520,3683,1453,0,0,5764,1641,6709,441,0,804,1051,327,48,0,9720506,16.1,5520666,9.5,16.1,22.1
|
| 78 |
+
2011-06-15,51260,0,26470,2887,3814,1508,0,0,5953,1785,6042,436,0,691,1266,330,78,0,9642120,15.7,5379142,6.1,15.7,0.0
|