Add 2011-08-17 — 61.3K events, 11 files
Browse files- README.md +19 -19
- data/commit_comments/2011/08/17.parquet +3 -0
- data/creates/2011/08/17.parquet +3 -0
- data/deletes/2011/08/17.parquet +3 -0
- data/forks/2011/08/17.parquet +3 -0
- data/issues/2011/08/17.parquet +3 -0
- data/members/2011/08/17.parquet +3 -0
- data/public_events/2011/08/17.parquet +3 -0
- data/pull_requests/2011/08/17.parquet +3 -0
- data/pushes/2011/08/17.parquet +3 -0
- data/stars/2011/08/17.parquet +3 -0
- data/wiki_pages/2011/08/17.parquet +3 -0
- stats.csv +4 -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-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 1.
|
| 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 ██████████████████████████████ 6.
|
| 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 | 3,
|
| 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 |
|
| 561 |
-
| `public_events` | PublicEvent | 5,
|
| 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-08-19** (130 days), totaling **6,643,161 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 1.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 582.5 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 ██████████████████████████████ 6.6M
|
| 135 |
```
|
| 136 |
|
| 137 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 138 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 139 |
+
| 2011 | 130 | 6,643,161 | 51,101 | 1.2 GB | 582.5 MB | 26m54s | 26m13s | 56m35s |
|
| 140 |
|
| 141 |
|
| 142 |
### Pushes per year
|
|
|
|
| 149 |
### Issues per year
|
| 150 |
|
| 151 |
```
|
| 152 |
+
2011 ██████████████████████████████ 329.0K
|
| 153 |
```
|
| 154 |
|
| 155 |
|
| 156 |
### Pull requests per year
|
| 157 |
|
| 158 |
```
|
| 159 |
+
2011 ██████████████████████████████ 161.2K
|
| 160 |
```
|
| 161 |
|
| 162 |
|
| 163 |
### Stars per year
|
| 164 |
|
| 165 |
```
|
| 166 |
+
2011 ██████████████████████████████ 673.5K
|
| 167 |
```
|
| 168 |
|
| 169 |
|
|
|
|
| 547 |
|
| 548 |
| Table | GitHub Event | Events | % | Description |
|
| 549 |
|-------|-------------|-------:|---:|-------------|
|
| 550 |
+
| `pushes` | PushEvent | 3,140,763 | 47.3% | Git pushes with commits |
|
| 551 |
+
| `issues` | IssuesEvent | 329,038 | 5.0% | Issue lifecycle events |
|
| 552 |
+
| `issue_comments` | IssueCommentEvent | 366,715 | 5.5% | Comments on issues/PRs |
|
| 553 |
+
| `pull_requests` | PullRequestEvent | 161,187 | 2.4% | PR lifecycle events |
|
| 554 |
+
| `stars` | WatchEvent | 673,511 | 10.1% | Repository stars |
|
| 555 |
+
| `forks` | ForkEvent | 181,905 | 2.7% | Repository forks |
|
| 556 |
+
| `creates` | CreateEvent | 802,443 | 12.1% | Branch/tag/repo creation |
|
| 557 |
+
| `deletes` | DeleteEvent | 76,607 | 1.2% | Branch/tag deletion |
|
| 558 |
+
| `commit_comments` | CommitCommentEvent | 87,465 | 1.3% | Comments on commits |
|
| 559 |
+
| `wiki_pages` | GollumEvent | 140,976 | 2.1% | Wiki page edits |
|
| 560 |
+
| `members` | MemberEvent | 37,179 | 0.6% | Collaborator additions |
|
| 561 |
+
| `public_events` | PublicEvent | 5,766 | 0.1% | Repo made public |
|
| 562 |
|
| 563 |
## How it's built
|
| 564 |
|
data/commit_comments/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:87ffd584a4bbbf0b6a1dfd064390c548312220708ad0afc592bb2a58b626a603
|
| 3 |
+
size 43683
|
data/creates/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:25edfdaea9b2d776e6e2467cbb3464fd58c48f26e54958a8548a2fe6b2a7d993
|
| 3 |
+
size 307859
|
data/deletes/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:65230e369820f1623e00c3ba6020624055d73f03cec37d175d5aab0dd352b523
|
| 3 |
+
size 24209
|
data/forks/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75bfea64a8a3007ea63f56b23348b779af14ca5b15aea8036dd1b425589ee23c
|
| 3 |
+
size 102422
|
data/issues/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3c80d39c4f42c0e125c2be21227e5f34158edc23522703a97e95fd6908df478
|
| 3 |
+
size 116162
|
data/members/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b833960b26aa067f9243a52f677ff334fe07626bf4ce2a99eba65e27f75f85da
|
| 3 |
+
size 15522
|
data/public_events/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78226189ccecad1498a9782adbd71b65ec6032f7f129cff7ffc1c555cf32e632
|
| 3 |
+
size 4961
|
data/pull_requests/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7e2e315bc724cca330a6c4a9bb292b6b8af303278ebdaeffeb0436b99f0541c
|
| 3 |
+
size 115168
|
data/pushes/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b070bce2873b55b21eb0deab179613a2e95d0ea4d6cb987a38accdfe198c16c5
|
| 3 |
+
size 5005045
|
data/stars/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b19ca9caa2c7c37ba067c14d679a1e01dc16287ae54dca932d02d0c56ebbe471
|
| 3 |
+
size 209294
|
data/wiki_pages/2011/08/17.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e6b7696933e8556480858caf6272163b3a2b85b280dfd05064eff7e2f5c4a1c
|
| 3 |
+
size 114891
|
stats.csv
CHANGED
|
@@ -125,4 +125,7 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 125 |
2011-08-13,37248,0,19628,2061,2648,1133,0,0,3828,1232,4953,387,0,525,623,197,33,0,6835656,4.7,3831141,16.3,4.7,34.0
|
| 126 |
2011-08-14,38847,0,20431,2055,2962,1024,0,0,3952,1058,5057,630,0,573,885,174,46,0,6895895,5.3,3783894,25.3,5.3,20.8
|
| 127 |
2011-08-15,52378,0,27440,2878,4054,1524,0,0,5441,1600,6575,542,0,705,1291,274,54,0,9814570,6.6,5450596,18.7,6.6,25.4
|
| 128 |
-
2011-08-16,58164,0,29846,3205,4690,1814,0,0,6629,1903,6705,775,0,963,1208,369,57,0,10928027,9.4,6066929,21.4,9.4,
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
2011-08-13,37248,0,19628,2061,2648,1133,0,0,3828,1232,4953,387,0,525,623,197,33,0,6835656,4.7,3831141,16.3,4.7,34.0
|
| 126 |
2011-08-14,38847,0,20431,2055,2962,1024,0,0,3952,1058,5057,630,0,573,885,174,46,0,6895895,5.3,3783894,25.3,5.3,20.8
|
| 127 |
2011-08-15,52378,0,27440,2878,4054,1524,0,0,5441,1600,6575,542,0,705,1291,274,54,0,9814570,6.6,5450596,18.7,6.6,25.4
|
| 128 |
+
2011-08-16,58164,0,29846,3205,4690,1814,0,0,6629,1903,6705,775,0,963,1208,369,57,0,10928027,9.4,6066929,21.4,9.4,20.8
|
| 129 |
+
2011-08-17,61312,0,30955,3443,5132,1978,0,0,7188,1974,7240,646,0,891,1501,305,59,0,11428132,10.6,6059216,25.8,10.6,0.0
|
| 130 |
+
2011-08-18,61841,0,30023,4783,6222,1900,0,0,6966,1828,7038,767,0,742,1205,303,64,0,10894539,9.9,5760927,18.4,9.9,0.0
|
| 131 |
+
2011-08-19,60442,0,27818,4744,6901,1779,0,0,7202,1877,7142,530,0,720,1375,296,58,0,10436247,10.4,5550963,21.0,10.4,0.0
|