tamnd commited on
Commit
71d497a
·
verified ·
1 Parent(s): 7e54c24

Add 2015-07-31 — 588.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-30** (108 days), totaling **55,809,126 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 17.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.0 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 ██████████████████████████████ 55.8M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 108 | 55,809,126 | 516,751 | 17.2 GB | 9.0 GB | 1h18m | 12h34m | 2h22m |
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 ██████████████████████████████ 27.0M
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 ██████████████████████████████ 5.0M
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 | 26,979,735 | 48.3% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,604,695 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 5,131,910 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,798,002 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 939,208 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,975,672 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,871,401 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 7,918,533 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,238,902 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 186,658 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 343,750 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 511,131 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 255,552 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 53,977 | 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-08-01** (110 days), totaling **56,747,879 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 17.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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 ██████████████████████████████ 56.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 110 | 56,747,879 | 515,889 | 17.6 GB | 9.2 GB | 1h19m | 12h45m | 2h23m |
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 ██████████████████████████████ 27.4M
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 ██████████████████████████████ 5.1M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 27,443,129 | 48.4% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,649,351 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 5,215,743 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,844,856 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 954,171 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 5,060,149 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,901,453 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 8,046,438 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,260,193 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 190,437 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 348,994 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 518,712 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 259,446 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 54,807 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:645eca9ba1ad0ee5e46da80066e8a327317e1ee387030bddd08ffdca713cb961
3
+ size 481166
data/creates/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a47cd4e6a77c703752c58ee8659e9db7fb3308c219ad68d4e1518c04b7e7b7b2
3
+ size 2968271
data/deletes/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af81c844ac40867be04c124e72824d9851a290e7a182d00f3b4666ff79b71a34
3
+ size 457564
data/forks/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9605dcacc0afab4a03984ab6c5e5bec7bf6c12a1e72753f60fd79b2aad7705d6
3
+ size 2126465
data/issue_comments/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6215fe7c654028deab7fae3b656030c64ee46e1d57fd7e072817fe9bb303f6bd
3
+ size 10410474
data/issues/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81fccb855fc66b13c9f202890d2bd83d3af9c275419a001d6f148d8374f4ffc8
3
+ size 6988218
data/members/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:670c6a5a5289bc70316408ff980ac5c9430a0f980fc011bfd251555ae4a794c1
3
+ size 88111
data/pr_review_comments/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c37eb39e81e135a48b958b4ae3baf7be0bf0c953bb7e628a92f767ee74135ae2
3
+ size 3914590
data/public_events/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf4e57c79b3af0269800f38e08b03a0f8d0b84aa3caf9b544c68cc08aa1941c6
3
+ size 23268
data/pull_requests/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53cd7e632308505a038a60f2b4b9c82fafac861030df221e333dd1c282e07534
3
+ size 5850918
data/pushes/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b406d6e36cacffac5bfbbcbc3e92f135157deb4ed1cd9296f6dbbbdd0bccddf
3
+ size 69861385
data/releases/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b62eebfc84936b3b5c0875d04060150fb8cc29fc897ba801f215765b0b61d408
3
+ size 338148
data/stars/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41d81515d30156424b7260ecc436339835638c85e8f463ee9efa6e2c1726232d
3
+ size 1771363
data/wiki_pages/2015/07/31.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b400efcef8054cf23d1711654ea4918d3326a0c2bfcf2600a5f2b4b1c87d0147
3
+ size 344601
stats.csv CHANGED
@@ -106,4 +106,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
106
  2015-07-27,620567,0,295636,30288,61089,33120,0,12839,58227,20429,80431,13590,2222,4338,5329,2423,606,0,242770233,489.7,112156643,35.7,489.7,42.6
107
  2015-07-28,659616,0,314082,30340,65904,35546,0,13967,60027,21931,89128,13649,2460,4051,5407,2483,641,0,258590143,467.5,118003268,37.6,467.5,172.2
108
  2015-07-29,662867,0,320941,31333,66516,35306,0,12823,58022,21181,86196,15126,2478,4309,5300,2770,566,0,258285897,460.7,118477200,37.1,460.7,68.3
109
- 2015-07-30,653601,0,319166,29389,63201,35205,0,13705,58243,20414,85572,13468,2362,4064,5513,2788,511,0,253447077,443.6,115802246,40.6,443.6,0.0
 
 
 
106
  2015-07-27,620567,0,295636,30288,61089,33120,0,12839,58227,20429,80431,13590,2222,4338,5329,2423,606,0,242770233,489.7,112156643,35.7,489.7,42.6
107
  2015-07-28,659616,0,314082,30340,65904,35546,0,13967,60027,21931,89128,13649,2460,4051,5407,2483,641,0,258590143,467.5,118003268,37.6,467.5,172.2
108
  2015-07-29,662867,0,320941,31333,66516,35306,0,12823,58022,21181,86196,15126,2478,4309,5300,2770,566,0,258285897,460.7,118477200,37.1,460.7,68.3
109
+ 2015-07-30,653601,0,319166,29389,63201,35205,0,13705,58243,20414,85572,13468,2362,4064,5513,2788,511,0,253447077,443.6,115802246,40.6,443.6,53.4
110
+ 2015-07-31,588460,0,284724,28452,56593,32135,0,11445,52723,18730,76832,13575,2342,3475,4600,2332,502,0,229954312,439.3,105624542,38.5,439.3,0.0
111
+ 2015-08-01,350293,0,178670,16204,27240,14719,0,3518,31754,11322,51073,7716,1437,1769,2981,1562,328,0,116625451,252.9,58879722,35.0,252.9,0.0