tamnd commited on
Commit
82ddd34
·
verified ·
1 Parent(s): 50589a4

Add 2015-07-26 — 419.1K 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-25** (103 days), totaling **52,793,412 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 16.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.5 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 ██████████████████████████████ 52.8M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 103 | 52,793,412 | 512,557 | 16.2 GB | 8.5 GB | 1h15m | 11h58m | 2h17m |
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 ██████████████████████████████ 25.5M
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.6M
157
  ```
158
 
159
 
@@ -584,20 +584,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
- | `pushes` | PushEvent | 25,528,908 | 48.4% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,463,876 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 4,843,538 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,644,008 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 881,148 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,706,634 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,773,635 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 7,500,609 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,168,657 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 175,727 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 324,840 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 486,484 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 244,075 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 51,273 | 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-26** (104 days), totaling **53,212,475 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 16.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 53.2M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 104 | 53,212,475 | 511,658 | 16.3 GB | 8.6 GB | 1h15m | 12h03m | 2h17m |
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 ██████████████████████████████ 25.7M
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.7M
157
  ```
158
 
159
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 25,729,910 | 48.4% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,483,345 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,875,200 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,658,825 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 885,874 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 4,741,153 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,787,446 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 7,577,206 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,183,069 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 177,136 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 326,988 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 489,582 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 245,088 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 51,653 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7bb7b7723e41fb353c9130989ebc3b458a5eb09c47f5841122ccabe6c3ace92
3
+ size 331242
data/creates/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f782dc73849a169a9330f89c85cd298f2e23ce54424622e9c72924a35b72e4b
3
+ size 2484961
data/deletes/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:752b87dcf171d0f55562aaf955a27db0fa2f7bda3d1686f37a5fc95fc8053e18
3
+ size 287082
data/forks/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:325ee07674f63a5f4ab68b1cd9eb89846a534e78a922af401190ad130254843d
3
+ size 1409717
data/issue_comments/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27c4fb1a08fe53afeb1e44e43b637e22633a65dc0f04bc27815c6e0369bddb8b
3
+ size 5903074
data/issues/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35d2e7f1b4f7cc8ca52fde4b6decc5a9854830995e8ad2ee2fae29982e470584
3
+ size 4605643
data/members/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea3c9bcf92af9623f6e48bb076191ecc31f2331031e8b424033b71fbdcefb1eb
3
+ size 44980
data/pr_review_comments/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cddd7a90574b3395c4537bd891797b38289d6862dffafa8840236b6b281b8484
3
+ size 1406718
data/public_events/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69129dbc2b635f256d57e1f5700ef001250bd8864fd460fe8abf28f9f46312a9
3
+ size 16514
data/pull_requests/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc5d0da2e2e25f472631a63af3e0c84ded712956767015694c3353f849919068
3
+ size 2592189
data/pushes/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6706be3b0fbd32ea69fa0e105cf6bf95af8531995d773d751713e7def19084e7
3
+ size 44171598
data/releases/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:000ffd7b07e9a814d3efe5501f52072318f1fa126b8f24a0e584503dc2c34dd6
3
+ size 194345
data/stars/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:78d191ce1fbb312636f37a4a75357c44a1dc0886ae677f9a933efc7134530612
3
+ size 1176042
data/wiki_pages/2015/07/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b4d67a813a8ed7a4c4fbc6874023d5f2f6d271dd01ea20b9990bd9494530bbc
3
+ size 177308
stats.csv CHANGED
@@ -101,4 +101,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
101
  2015-07-22,632842,0,306454,30231,61864,32953,0,12519,56669,21053,81824,15004,2434,3700,5137,2470,530,0,244147623,430.8,112928902,42.2,430.8,35.3
102
  2015-07-23,673389,0,310400,30887,65820,34558,0,12446,58266,22154,103593,19850,2342,4150,5671,2793,459,0,254854305,464.1,116223895,95.3,464.1,36.8
103
  2015-07-24,636724,0,282641,29410,60365,31813,0,11744,55652,20452,117036,13406,2956,3383,5005,2344,517,0,234611221,470.5,105078198,36.7,470.5,53.2
104
- 2015-07-25,399966,0,186400,17210,29516,15609,0,4254,34123,12988,83886,7296,1316,2146,3378,1521,323,0,126277355,282.1,62077645,33.9,282.1,0.0
 
 
101
  2015-07-22,632842,0,306454,30231,61864,32953,0,12519,56669,21053,81824,15004,2434,3700,5137,2470,530,0,244147623,430.8,112928902,42.2,430.8,35.3
102
  2015-07-23,673389,0,310400,30887,65820,34558,0,12446,58266,22154,103593,19850,2342,4150,5671,2793,459,0,254854305,464.1,116223895,95.3,464.1,36.8
103
  2015-07-24,636724,0,282641,29410,60365,31813,0,11744,55652,20452,117036,13406,2956,3383,5005,2344,517,0,234611221,470.5,105078198,36.7,470.5,53.2
104
+ 2015-07-25,399966,0,186400,17210,29516,15609,0,4254,34123,12988,83886,7296,1316,2146,3378,1521,323,0,126277355,282.1,62077645,33.9,282.1,32.0
105
+ 2015-07-26,419063,0,201002,19469,31662,14817,0,4726,34519,13811,76597,14412,1409,2148,3098,1013,380,0,129304972,305.8,64801413,28.3,305.8,0.0