tamnd commited on
Commit
2744599
·
verified ·
1 Parent(s): 6addb49

Add 2015-07-08 — 660.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-07-07** (85 days), totaling **42,755,939 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 12.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.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,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 42.8M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 85 | 42,755,939 | 503,011 | 12.7 GB | 6.9 GB | 59m16s | 10h03m | 2h02m |
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 ██████████████████████████████ 20.7M
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 ██████████████████████████████ 2.0M
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 ██████████████████████████████ 2.1M
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 █��████████████████████████████ 3.8M
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 | 20,749,216 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,994,445 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,890,823 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,136,107 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 700,094 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,803,630 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,429,298 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 6,064,852 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 941,142 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 138,841 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 261,934 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 397,974 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 204,839 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 42,744 | 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-09** (87 days), totaling **44,061,876 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 13.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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 ██████████████████████████████ 44.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 87 | 44,061,876 | 506,458 | 13.2 GB | 7.1 GB | 1h02m | 10h18m | 2h03m |
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 ██████████████████████████████ 21.4M
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 ██████████████████████████████ 2.1M
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 ██████████████████████████████ 2.2M
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 █████████████████████████████ 3.9M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 21,363,066 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,055,500 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,019,877 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,205,281 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 726,643 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,922,843 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,477,548 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 6,245,355 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 967,468 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 143,189 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 270,168 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 410,820 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 210,163 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 43,955 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d31f9700dfa65bf5ad5c4d3bb64644a85999ee47a7be8e4f3dbf53249d1763fc
3
+ size 527643
data/creates/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d91b37cbb6ba76945e28ef4fc5dd8e5814d13dc610177799ab3aaac13b23e381
3
+ size 3473242
data/deletes/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fba2443803c39e92624345e8f5e33cd52f582358805d7162a7e17575439390b
3
+ size 491346
data/forks/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13d5f5011ec5001546abb7be352a364aaf927a64f70fbee30f9d98af61ad8b54
3
+ size 2486365
data/issue_comments/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b2798ee2e87d1dff26eff1bf35bfdb572bd1a944bb6ddd8be59cf481b95cd29
3
+ size 11831539
data/issues/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8ce2f9ffc496875835ab8a5830e6de5fa747c5838f8a7d9049c33e44c7b4724
3
+ size 7764466
data/members/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:809892df0de082f513a446b3ec7353c33ecfaee87adfbbd81745e845f6bc2cc3
3
+ size 107327
data/pr_review_comments/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bdf492438c0f5664f85c4bc36e1b37aaa8f50575b94677c0c7c1781fa954350
3
+ size 4313473
data/public_events/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c315e5318e764be6308e45f3d41d7271b1ee27b12aa9f99a786de6ced642465
3
+ size 28161
data/pull_requests/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c70a16fc51b394bdebdb3766e4309cb1b14f2d2dd5e8452df5290ca1599a2064
3
+ size 6167707
data/pushes/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f69a92dd47cbc5d95fec47de571c2abf820f5d779437ac08337f27bdb52be039
3
+ size 75293971
data/releases/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1464793f5b51996044259f42e472fc81a047b226f0504063bbda4ec243233bd3
3
+ size 437007
data/stars/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4db184e85dccdee2ba2a0a66dcecb9a68ab76e1d45dddcf6a7226648348dd556
3
+ size 2044248
data/wiki_pages/2015/07/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:274bdf19d943d0619ab9c96e9ab567e458de66df103421b3f6cf78702dfea376
3
+ size 517953
stats.csv CHANGED
@@ -83,4 +83,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
83
  2015-07-04,337117,0,175348,14324,24418,13171,0,3128,31796,11212,48975,7534,1155,1615,2878,1288,275,0,109470741,202.8,55544409,32.4,202.8,99.2
84
  2015-07-05,348161,0,179634,15036,25591,14003,0,3839,32293,11716,51003,7290,1260,1561,3588,1062,285,0,113940432,203.3,57460379,28.0,203.3,27.3
85
  2015-07-06,606905,0,286025,29965,58447,31452,0,12072,57765,22037,81388,12925,2060,3887,5811,2480,591,0,233158959,393.5,106938651,92.0,393.5,44.5
86
- 2015-07-07,638430,0,300442,30137,61646,32931,0,13510,62147,23533,85295,13568,2205,3874,5590,2878,674,0,245556010,433.9,111271146,88.3,433.9,0.0
 
 
 
83
  2015-07-04,337117,0,175348,14324,24418,13171,0,3128,31796,11212,48975,7534,1155,1615,2878,1288,275,0,109470741,202.8,55544409,32.4,202.8,99.2
84
  2015-07-05,348161,0,179634,15036,25591,14003,0,3839,32293,11716,51003,7290,1260,1561,3588,1062,285,0,113940432,203.3,57460379,28.0,203.3,27.3
85
  2015-07-06,606905,0,286025,29965,58447,31452,0,12072,57765,22037,81388,12925,2060,3887,5811,2480,591,0,233158959,393.5,106938651,92.0,393.5,44.5
86
+ 2015-07-07,638430,0,300442,30137,61646,32931,0,13510,62147,23533,85295,13568,2205,3874,5590,2878,674,0,245556010,433.9,111271146,88.3,433.9,48.4
87
+ 2015-07-08,660454,0,309231,30865,64683,34807,0,13190,61383,24305,91920,13665,2179,4240,6736,2630,620,0,253716521,457.3,115484448,97.7,457.3,0.0
88
+ 2015-07-09,645483,0,304619,30190,64371,34367,0,13359,57830,23945,88583,12661,2169,3994,6110,2694,591,0,251902325,446.0,114270917,94.8,446.0,0.0