Add 2012-08-20 — 132.0K events, 11 files
Browse files- README.md +18 -18
- data/commit_comments/2012/08/20.parquet +3 -0
- data/creates/2012/08/20.parquet +3 -0
- data/deletes/2012/08/20.parquet +3 -0
- data/forks/2012/08/20.parquet +3 -0
- data/issue_comments/2012/08/20.parquet +3 -0
- data/issues/2012/08/20.parquet +3 -0
- data/public_events/2012/08/20.parquet +3 -0
- data/pull_requests/2012/08/20.parquet +3 -0
- data/pushes/2012/08/20.parquet +3 -0
- data/stars/2012/08/20.parquet +3 -0
- data/wiki_pages/2012/08/20.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 **2012-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
|
| 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 |
|
|
@@ -132,20 +132,20 @@ duckdb.sql("""
|
|
| 132 |
|
| 133 |
```
|
| 134 |
2011 ████████████████████░░░░░░░░░░ 14.1M
|
| 135 |
-
2012 ██████████████████████████████ 20.
|
| 136 |
```
|
| 137 |
|
| 138 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 139 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 140 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 141 |
-
| 2012 |
|
| 142 |
|
| 143 |
|
| 144 |
### Pushes per year
|
| 145 |
|
| 146 |
```
|
| 147 |
2011 █████████████████████░░░░░░░░░ 6.7M
|
| 148 |
-
2012 ██████████████████████████████ 9.
|
| 149 |
```
|
| 150 |
|
| 151 |
|
|
@@ -153,7 +153,7 @@ duckdb.sql("""
|
|
| 153 |
|
| 154 |
```
|
| 155 |
2011 █████████████████████░░░░░░░░░ 737.1K
|
| 156 |
-
2012 ██████████████████████████████ 1.
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
|
|
| 553 |
|
| 554 |
| Table | GitHub Event | Events | % | Description |
|
| 555 |
|-------|-------------|-------:|---:|-------------|
|
| 556 |
-
| `pushes` | PushEvent |
|
| 557 |
-
| `issues` | IssuesEvent | 1,
|
| 558 |
-
| `issue_comments` | IssueCommentEvent | 2,
|
| 559 |
-
| `pull_requests` | PullRequestEvent | 1,
|
| 560 |
-
| `pr_review_comments` | PullRequestReviewCommentEvent |
|
| 561 |
-
| `stars` | WatchEvent | 3,
|
| 562 |
-
| `forks` | ForkEvent | 1,
|
| 563 |
-
| `creates` | CreateEvent | 5,
|
| 564 |
-
| `deletes` | DeleteEvent |
|
| 565 |
-
| `commit_comments` | CommitCommentEvent |
|
| 566 |
-
| `wiki_pages` | GollumEvent |
|
| 567 |
| `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
|
| 568 |
-
| `public_events` | PublicEvent | 30,
|
| 569 |
|
| 570 |
## How it's built
|
| 571 |
|
|
|
|
| 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 **2012-08-20** (430 days), totaling **34,406,328 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 8.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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 |
|
|
|
|
| 132 |
|
| 133 |
```
|
| 134 |
2011 ████████████████████░░░░░░░░░░ 14.1M
|
| 135 |
+
2012 ██████████████████████████████ 20.3M
|
| 136 |
```
|
| 137 |
|
| 138 |
| Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
|
| 139 |
|------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
|
| 140 |
| 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
|
| 141 |
+
| 2012 | 187 | 20,310,184 | 108,610 | 5.2 GB | 1.9 GB | 1h23m | 1h51m | 1h46m |
|
| 142 |
|
| 143 |
|
| 144 |
### Pushes per year
|
| 145 |
|
| 146 |
```
|
| 147 |
2011 █████████████████████░░░░░░░░░ 6.7M
|
| 148 |
+
2012 ██████████████████████████████ 9.4M
|
| 149 |
```
|
| 150 |
|
| 151 |
|
|
|
|
| 153 |
|
| 154 |
```
|
| 155 |
2011 █████████████████████░░░░░░░░░ 737.1K
|
| 156 |
+
2012 ██████████████████████████████ 1.1M
|
| 157 |
```
|
| 158 |
|
| 159 |
|
|
|
|
| 553 |
|
| 554 |
| Table | GitHub Event | Events | % | Description |
|
| 555 |
|-------|-------------|-------:|---:|-------------|
|
| 556 |
+
| `pushes` | PushEvent | 16,047,372 | 46.6% | Git pushes with commits |
|
| 557 |
+
| `issues` | IssuesEvent | 1,788,388 | 5.2% | Issue lifecycle events |
|
| 558 |
+
| `issue_comments` | IssueCommentEvent | 2,557,599 | 7.4% | Comments on issues/PRs |
|
| 559 |
+
| `pull_requests` | PullRequestEvent | 1,434,072 | 4.2% | PR lifecycle events |
|
| 560 |
+
| `pr_review_comments` | PullRequestReviewCommentEvent | 121,541 | 0.4% | Line-level PR comments |
|
| 561 |
+
| `stars` | WatchEvent | 3,419,851 | 9.9% | Repository stars |
|
| 562 |
+
| `forks` | ForkEvent | 1,053,554 | 3.1% | Repository forks |
|
| 563 |
+
| `creates` | CreateEvent | 5,784,061 | 16.8% | Branch/tag/repo creation |
|
| 564 |
+
| `deletes` | DeleteEvent | 301,409 | 0.9% | Branch/tag deletion |
|
| 565 |
+
| `commit_comments` | CommitCommentEvent | 392,145 | 1.1% | Comments on commits |
|
| 566 |
+
| `wiki_pages` | GollumEvent | 657,396 | 1.9% | Wiki page edits |
|
| 567 |
| `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
|
| 568 |
+
| `public_events` | PublicEvent | 30,664 | 0.1% | Repo made public |
|
| 569 |
|
| 570 |
## How it's built
|
| 571 |
|
data/commit_comments/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddbd4ade2dd868474375916b80eef8bde97592ce6464e28af7838667b5a119b2
|
| 3 |
+
size 59974
|
data/creates/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3941c626a7204f593fd32d3a7c6f8176e0ad93c53e1fd4bbac9762da266ce117
|
| 3 |
+
size 521444
|
data/deletes/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46183dada68ab47d0e9dccde489412b20c276b5beb4402cf1ffc15ff6136bbd2
|
| 3 |
+
size 28052
|
data/forks/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc61e3d1f9cd16f25e6733580472d57129d44d551d7253838a19e98a46df0e8b
|
| 3 |
+
size 113047
|
data/issue_comments/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77e5c531c552eb4ecfad67f6774e04abd9318902f575e8153a1e36033c14b595
|
| 3 |
+
size 247855
|
data/issues/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd342f60d0b8b60602827d5a04ce0eda03de4f0a441a61fcd633466579d8558b
|
| 3 |
+
size 164018
|
data/public_events/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d19b0996944bc3ae5c798c1088fcbcf4b1373971cb6d1aec2cd01c3efe3e75dc
|
| 3 |
+
size 5563
|
data/pull_requests/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4cc044ea1ed6035be83688ec7f8686310788d9a423bbc764ed9fbbe3fa0d8e6
|
| 3 |
+
size 868211
|
data/pushes/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d780642cf7ce42a5a1e1cebc98ab558160abf107b0ad4176622f47f45400e047
|
| 3 |
+
size 10700872
|
data/stars/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:522bded17f9fc9472794e4a66165c1f5fce3765b4bf754eb059142e86917ae2c
|
| 3 |
+
size 254018
|
data/wiki_pages/2012/08/20.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e8083f53b4ad7bd430393401712a3c8f2d8ee6ab2c9bd12bc75c175b231df7f
|
| 3 |
+
size 161446
|
stats.csv
CHANGED
|
@@ -427,4 +427,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
|
|
| 427 |
2012-08-16,131252,702,67315,8129,14199,4539,0,1141,11505,4611,14209,775,0,1465,2545,0,117,0,38439393,17.5,12772947,23.3,17.5,26.1
|
| 428 |
2012-08-17,120330,648,60286,7238,13599,3996,0,998,10105,4288,15007,711,0,1099,2266,0,89,0,33835248,17.9,11417628,38.9,17.9,29.2
|
| 429 |
2012-08-18,79261,390,45839,3824,5128,2049,0,450,6764,2870,8943,443,0,800,1701,0,60,0,22584392,12.7,7845173,21.3,12.7,30.4
|
| 430 |
-
2012-08-19,88382,436,51108,4266,6018,2252,0,465,7872,2935,9998,433,0,889,1641,0,69,0,25104213,13.3,8882248,20.0,13.3,
|
|
|
|
|
|
| 427 |
2012-08-16,131252,702,67315,8129,14199,4539,0,1141,11505,4611,14209,775,0,1465,2545,0,117,0,38439393,17.5,12772947,23.3,17.5,26.1
|
| 428 |
2012-08-17,120330,648,60286,7238,13599,3996,0,998,10105,4288,15007,711,0,1099,2266,0,89,0,33835248,17.9,11417628,38.9,17.9,29.2
|
| 429 |
2012-08-18,79261,390,45839,3824,5128,2049,0,450,6764,2870,8943,443,0,800,1701,0,60,0,22584392,12.7,7845173,21.3,12.7,30.4
|
| 430 |
+
2012-08-19,88382,436,51108,4266,6018,2252,0,465,7872,2935,9998,433,0,889,1641,0,69,0,25104213,13.3,8882248,20.0,13.3,29.0
|
| 431 |
+
2012-08-20,131974,731,69860,6647,11572,4750,0,1490,11856,4661,15481,876,0,1635,2306,0,109,0,39694130,20.5,13124500,23.3,20.5,0.0
|