tamnd commited on
Commit
a0065bd
·
verified ·
1 Parent(s): 3d59106

Add 2015-06-03 — 658.8K 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-02** (50 days), totaling **23,665,057 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 7.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.8 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 ██████████████████████████████ 23.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 50 | 23,665,057 | 473,301 | 7.4 GB | 3.8 GB | 39m27s | 6h30m | 1h21m |
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 ██████████████████████████████ 11.5M
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 ██████████████████████████████ 2.1M
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 | 11,472,687 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,089,733 | 4.6% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 2,109,953 | 8.9% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 1,169,411 | 4.9% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 367,135 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 2,097,824 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 790,230 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 3,448,744 | 14.6% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 527,799 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 74,577 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 144,595 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 225,705 | 1.0% | Wiki page edits |
599
- | `members` | MemberEvent | 122,675 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 23,989 | 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-03** (51 days), totaling **24,323,853 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 7.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.9 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 ██████████████████████████████ 24.3M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 51 | 24,323,853 | 476,938 | 7.6 GB | 3.9 GB | 40m14s | 6h46m | 1h30m |
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 ██████████████████████████████ 11.8M
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 ██████████████████████████████ 2.2M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 11,787,252 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,123,235 | 4.6% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 2,176,286 | 8.9% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,203,814 | 4.9% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 379,481 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 2,155,116 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 812,021 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 3,536,819 | 14.5% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 542,136 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 76,829 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 148,469 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 232,114 | 1.0% | Wiki page edits |
599
+ | `members` | MemberEvent | 125,689 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 24,592 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ace21081a93133cdf1489fc4cdc47bb7426cb01d9d2949bce72d453f6d14b5ba
3
+ size 523149
data/creates/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8251890dac95572a2c177db63d95945d7c14884ac44b627494e14e528a9a8857
3
+ size 3458577
data/deletes/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab096a1a90d793da91716ee76bb5fc5d3d281ec78e9952078e232ff9f28ca51a
3
+ size 492638
data/forks/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1171c18aee9ff74c4cca7282cdb382880ba3b6e405c0ae525ab363a1b112ee28
3
+ size 2306405
data/issue_comments/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08a60bce74eac131b2f03bf8e2575463987d717735a5dfbb6ac6e27cfc94e6c8
3
+ size 12071888
data/issues/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d4226586df97c395a1af5bb1f07da00f3c44c5ab13f6b4ba0b60eab7c8c5fe1
3
+ size 8380083
data/members/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd54b6f70d54529d074c1438240c5cf45f2223fe140184902f1f6f69ddfb65c2
3
+ size 114706
data/pr_review_comments/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40ca783f433cd31a2c5d3615dd5638269271290d5a22e2e965b40bb0fa6fb606
3
+ size 4201727
data/public_events/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:884cdc452fc66051ccf38d24606598783d59f4246198edbf196576a28bcae88c
3
+ size 26394
data/pull_requests/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28c351b915443226834f989f7acf68007c402bb2476b792d30cde930e7004633
3
+ size 6106917
data/pushes/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b88043b05a1bf9c51a06da8b3acfb6396e02c32ca5647cd3491b6ae24c558e
3
+ size 77891128
data/releases/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5838c25f4cf214b90587f015991de86a7fe381295d9bff972cdfee7896a2cb6
3
+ size 307055
data/stars/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86190031f4629915a1ba40ab0a953fb0bf81808eb8a61468eb8f39e40ea56076
3
+ size 1969192
data/wiki_pages/2015/06/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb981f7351b3ad0a84e40c5b46d8e7ae4e292f18df244ed65956f8de7b64a8e3
3
+ size 378710
stats.csv CHANGED
@@ -48,4 +48,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
48
  2015-05-30,375058,0,195320,16791,27770,16206,0,3766,33729,12217,52587,7253,1373,2019,3590,2061,376,0,125585978,439.3,63237569,28.2,439.3,206.7
49
  2015-05-31,402631,0,219616,17829,29456,16548,0,3805,33539,12070,53606,7099,1434,1999,3812,1430,388,0,132891496,460.3,67891696,28.0,460.3,133.2
50
  2015-06-01,603624,0,293891,29065,58976,31471,0,10552,51700,18992,81417,12669,2017,3861,5914,2502,597,0,231023939,791.3,107956383,57.6,791.3,110.0
51
- 2015-06-02,625426,0,299920,30924,63329,32758,0,11731,52723,19436,84849,14281,2137,4046,5969,2750,573,0,241450784,848.0,112084581,40.7,848.0,0.0
 
 
48
  2015-05-30,375058,0,195320,16791,27770,16206,0,3766,33729,12217,52587,7253,1373,2019,3590,2061,376,0,125585978,439.3,63237569,28.2,439.3,206.7
49
  2015-05-31,402631,0,219616,17829,29456,16548,0,3805,33539,12070,53606,7099,1434,1999,3812,1430,388,0,132891496,460.3,67891696,28.0,460.3,133.2
50
  2015-06-01,603624,0,293891,29065,58976,31471,0,10552,51700,18992,81417,12669,2017,3861,5914,2502,597,0,231023939,791.3,107956383,57.6,791.3,110.0
51
+ 2015-06-02,625426,0,299920,30924,63329,32758,0,11731,52723,19436,84849,14281,2137,4046,5969,2750,573,0,241450784,848.0,112084581,40.7,848.0,545.2
52
+ 2015-06-03,658796,0,314565,33502,66333,34403,0,12346,57292,21791,88075,14337,2252,3874,6409,3014,603,0,253787134,994.3,118228569,46.9,994.3,0.0