tamnd commited on
Commit
f3f9e4b
·
verified ·
1 Parent(s): d2cae84

Add 2015-06-22 — 588.0K 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-06-21** (69 days), totaling **34,094,382 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 9.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.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 ██████████████████████████████ 34.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 69 | 34,094,382 | 494,121 | 9.6 GB | 5.5 GB | 45m56s | 8h20m | 1h50m |
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 ██████████████████████████████ 16.6M
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 ██████████████████████████████ 3.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 | 16,550,860 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,584,457 | 4.6% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,081,326 | 9.0% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 1,697,020 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 540,049 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,019,759 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,138,607 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 4,882,235 | 14.3% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 758,848 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 109,562 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 208,097 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 321,304 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 168,433 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 33,825 | 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-06-22** (70 days), totaling **34,682,344 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 9.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 5.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 ██████████████████████████████ 34.7M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 70 | 34,682,344 | 495,462 | 9.9 GB | 5.6 GB | 46m31s | 8h27m | 1h51m |
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 ██████████████████████████████ 16.8M
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 ██████████████████████████████ 3.1M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 16,836,481 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,613,662 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,140,988 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,728,434 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 552,546 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,067,209 | 8.8% | Repository stars |
593
+ | `forks` | ForkEvent | 1,156,559 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 4,959,067 | 14.3% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 771,857 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 111,560 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 211,938 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 326,368 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 170,794 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 34,881 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64bbc289b859bd149baef62518a432f63bea1e84ff9eec546d6c957572c5e189
3
+ size 503011
data/creates/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd1c533ccdfbf321c61aa682d781c429a631f89669d420239c6ab7e70a8b500d
3
+ size 3003123
data/deletes/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df7bb2c8e36679f20d6ffff25d528a34721f8d03641975307634162b65cbbd19
3
+ size 448176
data/forks/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:607125edb50a9c1e4e5245cf06b4e9dd3106dc4a83b3703fc76cf884e6b56c9e
3
+ size 1997140
data/issue_comments/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25de40e27f0a6192dd5188ea4666e7e54a1ea722214019df29f75e0be0d4fc5e
3
+ size 10884465
data/issues/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a33198e5f05ae4ec58dbb442e81a8f7e29fefe9226bb941c4c946ce8e85c6df
3
+ size 7219570
data/members/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45f272d8b17af66804b697fcff154fced3e0762b7c62274a0b007c44c3c3a354
3
+ size 95363
data/pr_review_comments/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0e6f30416f0de1a6012323c681754afad2e9c373cbf21af0870281b244b1c94
3
+ size 4184739
data/public_events/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:898b7cbffa06819ed52f60e633f73c7a176d891b1fb533e3efa201d14b5913f2
3
+ size 34321
data/pull_requests/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d133fb30bd9a8e11bbb58ee88f4398b8721e4d0a536140514178512eaaea9acb
3
+ size 5674290
data/pushes/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fd123475302abdabed2169aae139c5be1979eabd38af904464e24fc326ec2f6
3
+ size 69084631
data/releases/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bc1bf6c1359f4e2a3a4c174a36b09bedc6a2a18aeb0a7bf2313ad870325d042
3
+ size 380501
data/stars/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e3a430b7c5ff26f8bd412d74403ed76aa66d1f2a0d3e6333573243a1b9bffa4
3
+ size 1672939
data/wiki_pages/2015/06/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81c84756a71e1c904351cefa9dc03685b54779e433effeeb55922618dd1bae6d
3
+ size 361843
stats.csv CHANGED
@@ -67,4 +67,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
67
  2015-06-18,643028,0,305235,30191,63671,34765,0,12851,56158,22475,86874,15452,2289,4149,5531,2819,568,0,249303880,476.0,114024000,26.8,476.0,44.5
68
  2015-06-19,586267,0,283514,26819,56591,32125,0,10311,51668,20693,78248,12975,1889,3877,4579,2476,502,0,225542300,408.1,104549422,37.7,408.1,45.0
69
  2015-06-20,363185,0,185041,15947,27785,15296,0,3637,31394,12338,56211,6858,1306,2253,3281,1524,314,0,122815727,208.5,62243132,35.2,208.5,57.9
70
- 2015-06-21,380640,0,200814,17925,26133,14950,0,4151,31908,13362,56392,6816,1178,1990,3384,1299,338,0,123512215,214.3,63406437,35.2,214.3,0.0
 
 
67
  2015-06-18,643028,0,305235,30191,63671,34765,0,12851,56158,22475,86874,15452,2289,4149,5531,2819,568,0,249303880,476.0,114024000,26.8,476.0,44.5
68
  2015-06-19,586267,0,283514,26819,56591,32125,0,10311,51668,20693,78248,12975,1889,3877,4579,2476,502,0,225542300,408.1,104549422,37.7,408.1,45.0
69
  2015-06-20,363185,0,185041,15947,27785,15296,0,3637,31394,12338,56211,6858,1306,2253,3281,1524,314,0,122815727,208.5,62243132,35.2,208.5,57.9
70
+ 2015-06-21,380640,0,200814,17925,26133,14950,0,4151,31908,13362,56392,6816,1178,1990,3384,1299,338,0,123512215,214.3,63406437,35.2,214.3,46.0
71
+ 2015-06-22,587962,0,285621,29205,59662,31414,0,12497,47450,17952,76832,13009,1998,3841,5064,2361,1056,0,231205835,431.3,105544112,34.5,431.3,0.0