tamnd commited on
Commit
9852d40
·
verified ·
1 Parent(s): 7be8400

Add 2015-07-06 — 606.9K 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-05** (83 days), totaling **41,510,604 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.7 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 ██████████████████████████████ 41.5M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 83 | 41,510,604 | 500,127 | 12.2 GB | 6.7 GB | 56m16s | 9h49m | 2h01m |
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.2M
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 ██████████████████████████████ 1.9M
138
  ```
139
 
140
 
@@ -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,162,749 | 48.6% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,934,343 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 3,770,730 | 9.1% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,071,724 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 674,512 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 3,683,718 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,383,728 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 5,898,169 | 14.2% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 914,649 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 134,576 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 254,173 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 386,573 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 199,481 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 41,479 | 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-06** (84 days), totaling **42,117,509 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 6.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 ██████████████████████████████ 42.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 84 | 42,117,509 | 501,398 | 12.5 GB | 6.8 GB | 57m48s | 9h56m | 2h01m |
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 ██████████████████████████████ 20.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.0M
138
  ```
139
 
140
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 20,448,774 | 48.6% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,964,308 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 3,829,177 | 9.1% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,103,176 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 686,584 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 3,741,483 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,405,765 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 5,979,557 | 14.2% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 927,574 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 136,636 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 258,060 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 392,384 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 201,961 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 42,070 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4196e8185ea93cb1a3cf1520ac44d3133b27b49cf97a0e070a5b66867e620503
3
+ size 483914
data/creates/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51af3f9bb4b66291106494f7fe2c2c7a7781f9eea56e61fcc26d763ae63c8ee2
3
+ size 3138939
data/deletes/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5dde8e6b3ee8e2adc428b453cb13bbf65673d971995ba1e04dd18afe6e9f7cd
3
+ size 448759
data/forks/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adf2f770c7a148f52c18935f58be30ab5c3dcc95618098e0f459230ff85dc2b0
3
+ size 2267329
data/issue_comments/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f194e719f134d8e70c196f151bf5ef507890f0875c8f8de1e3830b5103d54582
3
+ size 11042073
data/issues/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e51dd97081910c1094660e8fc8b4492dda71ed0091d3bc1c3e21a6aa7cabfdfe
3
+ size 7423328
data/members/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e2db4d7b7e6e4221b59c675ba94a184a2be46a8bfe665fc0949a3641a3cc0c0
3
+ size 99780
data/pr_review_comments/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e13a1737874be10352ef9e3693a3587d18bdcebf7961c1ce40ee5f8f1011f91
3
+ size 4216344
data/public_events/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59e8e15c20eb7e8b122396f84df5515ea326f88374ab0ac32984168d621ea165
3
+ size 26294
data/pull_requests/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83985dd5b4062df794cc038ffb24e25ceeddaaee2b2e51f78f5bd4833ed825d2
3
+ size 5582333
data/pushes/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e53d12cc4089bfa81d94fdc25b20fa26ef84b247bb2b070ae89e6f2e2eb6b1e
3
+ size 69566208
data/releases/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e5b513a7b46e376d45fb0e4822b9a1b950a00d48bda932d59c45af462fae0f9
3
+ size 311966
data/stars/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcbc3d3b2c1bc778b46a51d152e670cf5ac2bfc16d56c21c4061cd9a4e618011
3
+ size 1927193
data/wiki_pages/2015/07/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a7c9e39917a107640480e4d4b79edf17018943887ec4d67a18f9d8cccc7a5e7
3
+ size 404191
stats.csv CHANGED
@@ -81,4 +81,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
81
  2015-07-02,571085,0,268858,27299,55111,30615,0,11576,53702,19621,77974,12654,1886,3770,4988,2351,680,0,221977408,426.6,101149234,43.3,426.6,39.8
82
  2015-07-03,507377,0,246139,23151,44889,24730,0,7150,50366,17871,71306,9977,1791,3408,4140,1990,469,0,184296180,326.6,88379451,34.5,326.6,39.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,0.0
 
 
81
  2015-07-02,571085,0,268858,27299,55111,30615,0,11576,53702,19621,77974,12654,1886,3770,4988,2351,680,0,221977408,426.6,101149234,43.3,426.6,39.8
82
  2015-07-03,507377,0,246139,23151,44889,24730,0,7150,50366,17871,71306,9977,1791,3408,4140,1990,469,0,184296180,326.6,88379451,34.5,326.6,39.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,0.0