tamnd commited on
Commit
2a60eca
·
verified ·
1 Parent(s): 082b532

Add 2015-04-26 — 436.5K 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-04-25** (12 days), totaling **7,029,123 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 2.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.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 ██████████████████████████████ 7.0M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 12 | 7,029,123 | 585,760 | 2.4 GB | 1.1 GB | 12m49s | 2h12m | 21m03s |
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 ██████████████████████████████ 3.5M
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 ██████████████████████████████ 315.2K
138
  ```
139
 
140
 
@@ -153,7 +153,7 @@ GROUP BY repo_name ORDER BY opened DESC LIMIT 20;
153
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
154
 
155
  ```
156
- 2015 ██████████████████████████████ 341.9K
157
  ```
158
 
159
 
@@ -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 ██��███████████████████████████ 601.4K
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 | 3,477,370 | 49.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 315,201 | 4.5% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 613,618 | 8.7% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 341,904 | 4.9% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 109,517 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 601,425 | 8.6% | Repository stars |
593
- | `forks` | ForkEvent | 230,411 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 1,027,215 | 14.6% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 137,124 | 2.0% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 20,383 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 40,776 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 68,275 | 1.0% | Wiki page edits |
599
- | `members` | MemberEvent | 39,282 | 0.6% | Collaborator additions |
600
- | `public_events` | PublicEvent | 6,622 | 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-04-26** (13 days), totaling **7,465,605 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 2.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.2 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 ██████████████████████████████ 7.5M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 13 | 7,465,605 | 574,277 | 2.5 GB | 1.2 GB | 14m15s | 2h20m | 24m20s |
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 ██████████████████████████████ 3.7M
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 ██████████████████████████████ 332.3K
138
  ```
139
 
140
 
 
153
  Pull request events cover the full review cycle: opened, merged, closed, review requested, and synchronized (new commits pushed). The `merged` field indicates whether a PR was merged when closed.
154
 
155
  ```
156
+ 2015 ██████████████████████████████ 358.8K
157
  ```
158
 
159
 
 
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 █████████████████████████████ 638.5K
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 3,714,290 | 49.8% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 332,280 | 4.5% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 641,332 | 8.6% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 358,843 | 4.8% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 113,390 | 1.5% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 638,458 | 8.6% | Repository stars |
593
+ | `forks` | ForkEvent | 245,631 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 1,090,442 | 14.6% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 144,823 | 1.9% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 21,671 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 43,010 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 73,049 | 1.0% | Wiki page edits |
599
+ | `members` | MemberEvent | 41,313 | 0.6% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 7,073 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abd9ff4bc6efe1c5e2e3db7d5da2af621cc4a7148886e06cfadfac335b14adb6
3
+ size 305873
data/creates/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bcb9f927f77fcf9c6e34475e4f396b289867ca0ba4c3a9ac97a72427ce0bf4d7
3
+ size 2326140
data/deletes/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d93e877ecfa0b7b5f87ac29fa973b09fd1c51b4fc469b6bc3d486e038d50c7e9
3
+ size 250731
data/forks/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a79d8f3f48d8f87efb49cf265c35ed9f2195dc85793324486536f324beae241
3
+ size 1551211
data/issue_comments/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08a0a9a9dda8af94012eedf756277f02966fca6edb4b62a1203dff9a7d0742f5
3
+ size 5378129
data/issues/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b4476631821fa56896e8a3e5ca6f18f07c3f4d91394fa0012e6504efb1623185
3
+ size 4033183
data/members/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:704028e55efa7c0e5a5fba0578ea766a158c59f290b708da9e14bcd9360b4b3f
3
+ size 82354
data/pr_review_comments/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12038fa089d090cec836a3f0e0990f5da12fc37e05541fcd327f4b1324ffc649
3
+ size 1145405
data/public_events/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd40e80a1cc5cf2c683a4528383d5dd940f441ae81b287143a912b4c99a55d4a
3
+ size 20947
data/pull_requests/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ac7d063f876a413d803cb78172e2686c8a8083d61b12a7085b9c779f9549266
3
+ size 2928037
data/pushes/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc9477f7b58dc663d527763602fe53530e9634d045869cb084ae5f53f076810c
3
+ size 53399983
data/releases/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6126dc39bf3b7ac46817833f77f2447574575d0fe6176bb2bb2680263fe0436
3
+ size 198304
data/stars/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3dc47394150173abb9d0675ac18ec9fe2436cda3b0b7d13c62e045aef6eb87e0
3
+ size 1239448
data/wiki_pages/2015/04/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfd205b910aff87d2cf8dcb2be060e375d99db45c03ee647617b607d5c294d4e
3
+ size 261329
stats.csv CHANGED
@@ -10,4 +10,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
10
  2015-04-22,678896,0,331645,31008,61513,34498,0,11331,57781,21627,99594,13318,1854,4056,6454,3591,626,0,252126695,836.3,119829680,147.4,836.3,132.7
11
  2015-04-23,629079,0,313343,28191,57370,31921,0,10733,53146,20696,85732,12531,1803,3705,6048,3221,639,0,235636079,796.8,112101907,72.0,796.8,113.6
12
  2015-04-24,609134,0,299760,27520,55062,31630,0,11140,52431,19721,83934,12410,1879,3721,6429,2955,542,0,231154564,787.7,107823200,93.7,787.7,80.7
13
- 2015-04-25,387062,0,200387,15915,26831,16300,0,3375,33739,13771,60147,7120,1079,2028,3742,2262,366,0,126477864,426.4,63692260,91.5,426.4,0.0
 
 
10
  2015-04-22,678896,0,331645,31008,61513,34498,0,11331,57781,21627,99594,13318,1854,4056,6454,3591,626,0,252126695,836.3,119829680,147.4,836.3,132.7
11
  2015-04-23,629079,0,313343,28191,57370,31921,0,10733,53146,20696,85732,12531,1803,3705,6048,3221,639,0,235636079,796.8,112101907,72.0,796.8,113.6
12
  2015-04-24,609134,0,299760,27520,55062,31630,0,11140,52431,19721,83934,12410,1879,3721,6429,2955,542,0,231154564,787.7,107823200,93.7,787.7,80.7
13
+ 2015-04-25,387062,0,200387,15915,26831,16300,0,3375,33739,13771,60147,7120,1079,2028,3742,2262,366,0,126477864,426.4,63692260,91.5,426.4,197.7
14
+ 2015-04-26,436482,0,236920,17079,27714,16939,0,3873,37033,15220,63227,7699,1288,2234,4774,2031,451,0,138266376,499.3,73121074,85.5,499.3,0.0