tamnd commited on
Commit
79571b0
·
verified ·
1 Parent(s): 95e8fd3

Add 2015-06-24 — 641.9K 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-23** (71 days), totaling **35,329,008 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.7 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 ██████████████████████████████ 35.3M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 71 | 35,329,008 | 497,591 | 10.1 GB | 5.7 GB | 47m15s | 8h36m | 1h52m |
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 ██████████████████████████████ 17.1M
121
  ```
122
 
123
 
@@ -134,7 +134,7 @@ GROUP BY repo_name ORDER BY pushes DESC LIMIT 20;
134
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
135
 
136
  ```
137
- 2015 ██████████████████████████████ 1.6M
138
  ```
139
 
140
 
@@ -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.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 | 17,146,675 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,645,546 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,204,298 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 1,762,206 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 565,427 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,124,544 | 8.8% | Repository stars |
593
- | `forks` | ForkEvent | 1,176,876 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 5,045,618 | 14.3% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 786,882 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 113,786 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 215,999 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 331,878 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 173,721 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 35,552 | 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-24** (72 days), totaling **35,970,922 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.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
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 36.0M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 72 | 35,970,922 | 499,596 | 10.3 GB | 5.8 GB | 47m54s | 8h45m | 1h52m |
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 ██████████████████████████████ 17.5M
121
  ```
122
 
123
 
 
134
  Issue events track the full lifecycle: opened, closed, reopened, labeled, assigned, and more. Use the `action` column to filter by lifecycle stage.
135
 
136
  ```
137
+ 2015 ██████████████████████████████ 1.7M
138
  ```
139
 
140
 
 
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.2M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 17,456,246 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,677,238 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,267,680 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,796,049 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 577,728 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,180,318 | 8.8% | Repository stars |
593
+ | `forks` | ForkEvent | 1,199,034 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 5,130,744 | 14.3% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 799,953 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 115,911 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 220,144 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 337,117 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 176,567 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 36,193 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcb56e7ada584fd99aace6e06bc1f3656719fef79d1b9e57518c8f3a5945a12a
3
+ size 531353
data/creates/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db0bf4bf9bf533224f5524236f770a2208390b2724ef9822d952853c9931c70e
3
+ size 3257761
data/deletes/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28ff4e2c1c948ecc835f3d9763854a7959195d3d9f9a06f52721766885f233b7
3
+ size 458803
data/forks/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f9bfc732029d563a849fd1e7886c78b80c46934b35ee8a9e9859bc6b1ae7a03e
3
+ size 2358700
data/issue_comments/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6fef40abf07c334fd30f48546eae2996eeeb6ebe55030cd851c95029cf9e98f
3
+ size 11614660
data/issues/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ad1f3cc96fb3f847a0c14808c5e6916b4c5760be5da0297f3977a208eca4093
3
+ size 7899553
data/members/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38e5d81b90820bd819c8f09401a869d479dd48ea0f7a7da88f21d9b5ecb95bea
3
+ size 111158
data/pr_review_comments/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a6fa291ea61af03e69dc9aae9c1342dac46dde4032073aae10e2d5ed045d266
3
+ size 4185109
data/public_events/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:630e4e3c744841e4213df96ba406d9eda6e5b75f307973cc525910c71162e96d
3
+ size 28067
data/pull_requests/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4a82a17d5ce9ae03db5a61c5708a2d1d77ead5efc13dc919549c1104bc98a58c
3
+ size 6198394
data/pushes/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62a926133845899d45e1b2b1585a833aab74e41d82d810945f594e8c1cf0d2f5
3
+ size 76387672
data/releases/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:249a936c1704e569f5c589d7e05a1004a093bcb5a3b1e2e9033ede1028da0d81
3
+ size 317632
data/stars/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f12b63e298ca85674b988eb9b83d0f153118287ad0f1aaeeedc7de8973127a3
3
+ size 1879441
data/wiki_pages/2015/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa5844d098c0bcf81f1924cd0ec7398c1906295d03494ea6c73df3d37c8340ca
3
+ size 423790
stats.csv CHANGED
@@ -69,4 +69,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
69
  2015-06-20,363185,0,185041,15947,27785,15296,0,3637,31394,12338,56211,6858,1306,2253,3281,1524,314,0,122815727,208.5,62243132,35.2,208.5,57.9
70
  2015-06-21,380640,0,200814,17925,26133,14950,0,4151,31908,13362,56392,6816,1178,1990,3384,1299,338,0,123512215,214.3,63406437,35.2,214.3,46.0
71
  2015-06-22,587962,0,285621,29205,59662,31414,0,12497,47450,17952,76832,13009,1998,3841,5064,2361,1056,0,231205835,431.3,105544112,34.5,431.3,55.1
72
- 2015-06-23,646664,0,310194,31884,63310,33772,0,12881,57335,20317,86551,15025,2226,4061,5510,2927,671,0,248689655,515.6,115064724,44.1,515.6,0.0
 
 
69
  2015-06-20,363185,0,185041,15947,27785,15296,0,3637,31394,12338,56211,6858,1306,2253,3281,1524,314,0,122815727,208.5,62243132,35.2,208.5,57.9
70
  2015-06-21,380640,0,200814,17925,26133,14950,0,4151,31908,13362,56392,6816,1178,1990,3384,1299,338,0,123512215,214.3,63406437,35.2,214.3,46.0
71
  2015-06-22,587962,0,285621,29205,59662,31414,0,12497,47450,17952,76832,13009,1998,3841,5064,2361,1056,0,231205835,431.3,105544112,34.5,431.3,55.1
72
+ 2015-06-23,646664,0,310194,31884,63310,33772,0,12881,57335,20317,86551,15025,2226,4061,5510,2927,671,0,248689655,515.6,115064724,44.1,515.6,44.5
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,0.0