tamnd commited on
Commit
d43c65b
·
verified ·
1 Parent(s): f519c4a

Add 2015-06-28 — 372.4K events, 14 files

Browse files
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-06-27** (75 days), totaling **37,566,283 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 10.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.1 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,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 37.6M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 75 | 37,566,283 | 500,883 | 10.9 GB | 6.1 GB | 49m40s | 9h04m | 1h54m |
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 ██████████████████████████████ 18.2M
121
  ```
122
 
123
 
@@ -171,7 +171,7 @@ GROUP BY repo_name ORDER BY merged_prs DESC LIMIT 20;
171
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
172
 
173
  ```
174
- 2015 ██████████████████████████████ 3.3M
175
  ```
176
 
177
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 18,238,096 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,751,970 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,413,073 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 1,877,349 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 604,821 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,318,101 | 8.8% | Repository stars |
593
- | `forks` | ForkEvent | 1,251,403 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 5,355,026 | 14.3% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 832,807 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 120,977 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 230,496 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 350,785 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 183,694 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 37,685 | 0.1% | Repo made public |
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-06-28** (76 days), totaling **37,938,651 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.1 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 ██████████████████████████████ 37.9M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 76 | 37,938,651 | 499,192 | 11.0 GB | 6.1 GB | 50m09s | 9h08m | 1h55m |
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 ██████████████████████████████ 18.4M
121
  ```
122
 
123
 
 
171
  Stars (WatchEvent in the GitHub API) reflect community interest and discovery. Starring patterns often correlate with Hacker News, Reddit, or Twitter posts. For 2012–2014 events, `repo_language`, `repo_stars_count`, and `repo_forks_count` are populated from the legacy Timeline API repository snapshot.
172
 
173
  ```
174
+ 2015 ██████████████████████████████ 3.4M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 18,436,517 | 48.6% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,767,958 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,440,510 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,892,825 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 608,455 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,350,991 | 8.8% | Repository stars |
593
+ | `forks` | ForkEvent | 1,263,255 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 5,406,113 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 839,951 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 122,224 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 232,353 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 354,401 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 185,043 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 38,055 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:902b6efec049557b17c4b81bbd58a6bb24076be4cc9ea0067430d01586ce6dff
3
+ size 295263
data/creates/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98af3b09959bf8a82c736596f8f726794200f7d2f5e711791c1fd3e8bf46ad39
3
+ size 1875843
data/deletes/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ea5d6c788776cc8baa353e4c21cbb6f590c5ff6ecbbffeba122d21eed72fcc8
3
+ size 226102
data/forks/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b367f9d1230a445daa871d07ec3508f0e6a5bce51b1839ed6edf1b15a21f93a
3
+ size 1278736
data/issue_comments/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da89383d5bb2f78ac85d7a20ddea2b3d156d6dcfd2afa0a1ea3d26dd16e5da5b
3
+ size 5088521
data/issues/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60438f6dff7b16ba94e3085d1ee9fdc284c1bd41f2e205024390c70a81949604
3
+ size 3801300
data/members/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d529c6aa61154ac00325411cc879313814771620017b881b954d6540c733b05
3
+ size 56905
data/pr_review_comments/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ed6ad73c5451482e49bda4a12bb659accc8bb69cffc44880a6d45311c333018
3
+ size 1261652
data/public_events/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b39577e871c46087fdb25559448b7e2b37445346e18639b0e58aa6277ed6eee0
3
+ size 16933
data/pull_requests/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b7375844ace24af49eb6f507e75a699e757f7d2fde26c0840bea53524170c83
3
+ size 2699744
data/pushes/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5067e0b2750ee196e48ded7f3a5792f633b876ed1e6a3caf8e02e24b78188c14
3
+ size 43957628
data/releases/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff48fa4e89b040cab2bc72d98665122d24dc196224a1214c11147883db96e745
3
+ size 191680
data/stars/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbd865a69c9f1f0ac59a4a8650d8a2609d2ef00d96306313af2c561b6cc603a3
3
+ size 1188575
data/wiki_pages/2015/06/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ea7db4ebf15e67ac42ee5f2cf4555552721b06c8af161f1047bec4c65b49b2e
3
+ size 212186
stats.csv CHANGED
@@ -73,4 +73,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
73
  2015-06-24,641914,0,309571,31692,63382,33843,0,12301,55774,22158,85126,13071,2125,4145,5239,2846,641,0,248809087,515.6,115652093,38.9,515.6,34.8
74
  2015-06-25,634985,0,308353,30310,62241,34911,0,12440,54284,20986,83114,13378,2000,4216,5488,2605,659,0,246336432,500.1,113988907,39.4,500.1,38.9
75
  2015-06-26,593359,0,283957,29117,55945,31377,0,11011,51208,19168,84509,12950,1908,4199,5072,2406,532,0,226885546,446.9,105244715,37.4,446.9,36.2
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,0.0
 
 
73
  2015-06-24,641914,0,309571,31692,63382,33843,0,12301,55774,22158,85126,13071,2125,4145,5239,2846,641,0,248809087,515.6,115652093,38.9,515.6,34.8
74
  2015-06-25,634985,0,308353,30310,62241,34911,0,12440,54284,20986,83114,13378,2000,4216,5488,2605,659,0,246336432,500.1,113988907,39.4,500.1,38.9
75
  2015-06-26,593359,0,283957,29117,55945,31377,0,11011,51208,19168,84509,12950,1908,4199,5072,2406,532,0,226885546,446.9,105244715,37.4,446.9,36.2
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,0.0