tamnd commited on
Commit
978b3fc
·
verified ·
1 Parent(s): e684301

Add 2015-07-15 — 640.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-07-14** (92 days), totaling **46,682,722 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 14.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.6 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 ██████████████████████████████ 46.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 92 | 46,682,722 | 507,420 | 14.1 GB | 7.6 GB | 1h06m | 10h47m | 2h07m |
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 ██████████████████████████████ 22.6M
121
  ```
122
 
123
 
@@ -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 ██████████████████████████████ 2.3M
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 ██████████████████████████████ 4.2M
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 | 22,630,927 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,177,094 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 4,261,057 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,335,656 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 770,407 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,160,362 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,569,776 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 6,607,507 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,029,681 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 152,719 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 286,427 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 434,495 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 220,440 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 46,174 | 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-07-16** (94 days), totaling **47,925,642 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 14.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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 ██████████████████████████████ 47.9M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 94 | 47,925,642 | 509,847 | 14.5 GB | 7.8 GB | 1h08m | 11h01m | 2h07m |
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 ██████████████████████████████ 23.2M
121
  ```
122
 
123
 
 
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 ██████████████████████████████ 2.4M
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 ██████████████████████████████ 4.3M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 23,221,553 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,238,067 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,388,704 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,402,819 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 795,802 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 4,272,318 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,611,736 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 6,769,093 | 14.1% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,055,173 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 157,189 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 295,030 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 445,701 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 225,278 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 47,179 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58f5bed89657cc02db72d9d73a7910dbfb233a1aa63e325cd42a58166012265e
3
+ size 555296
data/creates/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38517e7dd8b822970ec1391b5319b163e7472a78c3f3cefa15b47e97cf005163
3
+ size 3369281
data/deletes/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc9bc90c4bb4346be13c83df38fe4446d7e88006a696d2597271c8a5e4ee9e3b
3
+ size 472903
data/forks/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:110959cdbc30de39b5ce427ee725001c063d4b568bc65a94549e4eb4f4a38bcc
3
+ size 2264766
data/issue_comments/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3018296c6929927f3276320454a42d35ba0176d479a6073284a0fe70f211985e
3
+ size 12015454
data/issues/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f700c8c5ecf0be4e2b5e4c4e3bc4e96bd3fd72d739ae4d321fdd74ea12b3df8f
3
+ size 8286020
data/members/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f03dec689ca93e0c18a4872defe35b5f1ddd6cb149e4d6d18926716570c0abd9
3
+ size 110210
data/pr_review_comments/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c29335f3c1e45b1e806a2134099c5314e56bd5f0cfc9ca22d8a9050485fa4cd5
3
+ size 4484598
data/public_events/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c2e214c91bcf1549abb5aa8a350d9abdb13c415c3e794fdfd72c3ee8fd4fbb5
3
+ size 22689
data/pull_requests/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e33b8f43035d326daa37bd848315919ab5c41d4d005ea55ec482976c1e34c4b
3
+ size 6101575
data/pushes/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cbfbfdf1eb44a79d166f166e07361b0dd47de1b1b35caff9f05ea067fdc44de
3
+ size 74715311
data/releases/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46009e3835f3aa22dce23b56ae296af675850d867e569221ae69582562d00bb0
3
+ size 320451
data/stars/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9807d9719c72afffb245ef6ce684c510912920d079e3d1fe6d377f4de6a2eaa
3
+ size 1954136
data/wiki_pages/2015/07/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42688dce726306b00ebe4effa8485f575cc5538b8e5d995cca8fff40121ccbd2
3
+ size 413739
stats.csv CHANGED
@@ -90,4 +90,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
90
  2015-07-11,365543,0,183055,16014,28788,16089,0,3704,34295,13439,53494,8092,1416,2092,3247,1545,273,0,123461013,221.6,60512302,34.0,221.6,46.2
91
  2015-07-12,392881,0,198478,16609,28673,15829,0,3455,34309,14138,58508,14789,1366,1943,3223,1249,312,0,126612671,227.9,62801452,27.0,227.9,30.3
92
  2015-07-13,624052,0,296005,30009,61516,32817,0,12585,56779,20863,84600,13644,2241,3966,5800,2672,555,0,240385876,411.3,111374111,37.4,411.3,42.8
93
- 2015-07-14,651313,0,311522,30911,64700,34364,0,12913,56856,22779,87235,13897,2328,4341,6244,2668,555,0,252058719,436.2,114860437,96.0,436.2,0.0
 
 
 
90
  2015-07-11,365543,0,183055,16014,28788,16089,0,3704,34295,13439,53494,8092,1416,2092,3247,1545,273,0,123461013,221.6,60512302,34.0,221.6,46.2
91
  2015-07-12,392881,0,198478,16609,28673,15829,0,3455,34309,14138,58508,14789,1366,1943,3223,1249,312,0,126612671,227.9,62801452,27.0,227.9,30.3
92
  2015-07-13,624052,0,296005,30009,61516,32817,0,12585,56779,20863,84600,13644,2241,3966,5800,2672,555,0,240385876,411.3,111374111,37.4,411.3,42.8
93
+ 2015-07-14,651313,0,311522,30911,64700,34364,0,12913,56856,22779,87235,13897,2328,4341,6244,2668,555,0,252058719,436.2,114860437,96.0,436.2,48.3
94
+ 2015-07-15,640838,0,303882,31094,65812,34330,0,13130,58267,21568,83628,13359,2333,4504,5961,2494,476,0,251540662,441.5,115086429,96.0,441.5,0.0
95
+ 2015-07-16,602082,0,286744,29879,61835,32833,0,12265,53689,20392,77958,12133,2137,4099,5245,2344,529,0,234368728,400.7,107212910,38.1,400.7,0.0