tamnd commited on
Commit
40c07c6
·
verified ·
1 Parent(s): a0065bd

Add 2015-06-04 — 637.2K 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-03** (51 days), totaling **24,323,853 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 7.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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 ██████████████████████████████ 24.3M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 51 | 24,323,853 | 476,938 | 7.6 GB | 3.9 GB | 40m14s | 6h46m | 1h30m |
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 ██████████████████████████████ 11.8M
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.1M
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 | 11,787,252 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 1,123,235 | 4.6% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 2,176,286 | 8.9% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 1,203,814 | 4.9% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 379,481 | 1.6% | Line-level PR comments |
592
- | `stars` | WatchEvent | 2,155,116 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 812,021 | 3.3% | Repository forks |
594
- | `creates` | CreateEvent | 3,536,819 | 14.5% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 542,136 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 76,829 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 148,469 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 232,114 | 1.0% | Wiki page edits |
599
- | `members` | MemberEvent | 125,689 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 24,592 | 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-04** (52 days), totaling **24,961,102 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 7.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.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
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 25.0M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 52 | 24,961,102 | 480,021 | 7.8 GB | 4.0 GB | 41m03s | 7h02m | 1h32m |
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 ██████████████████████████████ 12.1M
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 ██████████████████████████████ 1.2M
138
  ```
139
 
140
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 12,097,666 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 1,153,745 | 4.6% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 2,238,281 | 9.0% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 1,237,035 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 390,356 | 1.6% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 2,211,106 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 832,907 | 3.3% | Repository forks |
594
+ | `creates` | CreateEvent | 3,621,530 | 14.5% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 555,076 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 78,805 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 152,605 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 238,275 | 1.0% | Wiki page edits |
599
+ | `members` | MemberEvent | 128,487 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 25,228 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb84a48a59f462417002a87fb3416294a3610bc7379c73b1f6893ca5c5c9ade8
3
+ size 527547
data/creates/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff2c91f2ff42e9d3fbc94faffc7bb66f09284d95c0a18eb859ac838fdd3df8d9
3
+ size 3269579
data/deletes/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfe94ade6d818f22c25fd9cf03b9c2f30eb25cb274c67fce9d0a3d49e049642d
3
+ size 455181
data/forks/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbe1b9005f94b098652936e3f2a493e36d8d0d18439139d282cd0fb6cecca60b
3
+ size 2196756
data/issue_comments/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54d707f5d0cde46aa094f92d572dd76e8d63f947810e08e0810a9a1e2c67cdde
3
+ size 11214394
data/issues/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dbb9eb3bffc1daa251f8ed3ea2b1a14b25f648e4b939085e1ae62033219ddc0
3
+ size 7480536
data/members/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4146d8d9fc6a2da4c3ed8e37c91af543ef0715a503d3e81a48f24f5a43723f0
3
+ size 110389
data/pr_review_comments/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4eca4d8dbeecd39216afda11dcb2ac77dde3ca8801f0f446a5933d588960799
3
+ size 3521935
data/public_events/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd71e7d197272daf958267d19d6b5cb0e28fa44b1269ec2aeea48fef1e6facb2
3
+ size 25878
data/pull_requests/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5516a8e89c57ed9c37b9c10c5f75c2c9dd7bc8a857de403593a3455979a1ef96
3
+ size 5919352
data/pushes/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c596fe53de4ec01b2a5130c0084e3353e863f2c88f751c857b4227e3bfe17f39
3
+ size 74945415
data/releases/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6461b3b384a6dd8c222426e684bfa7c773fb34e0442d6e7401dab956604a8651
3
+ size 303885
data/stars/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f39ae1ce0770266d9d5fae8e6596feb851926016c2807145efab0ab9246f512
3
+ size 1924016
data/wiki_pages/2015/06/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cffc99f70bdf63f7e08fb337fab9100798a8cc0476432b179d6fe5f6b919b4a9
3
+ size 375409
stats.csv CHANGED
@@ -49,4 +49,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
49
  2015-05-31,402631,0,219616,17829,29456,16548,0,3805,33539,12070,53606,7099,1434,1999,3812,1430,388,0,132891496,460.3,67891696,28.0,460.3,133.2
50
  2015-06-01,603624,0,293891,29065,58976,31471,0,10552,51700,18992,81417,12669,2017,3861,5914,2502,597,0,231023939,791.3,107956383,57.6,791.3,110.0
51
  2015-06-02,625426,0,299920,30924,63329,32758,0,11731,52723,19436,84849,14281,2137,4046,5969,2750,573,0,241450784,848.0,112084581,40.7,848.0,545.2
52
- 2015-06-03,658796,0,314565,33502,66333,34403,0,12346,57292,21791,88075,14337,2252,3874,6409,3014,603,0,253787134,994.3,118228569,46.9,994.3,0.0
 
 
49
  2015-05-31,402631,0,219616,17829,29456,16548,0,3805,33539,12070,53606,7099,1434,1999,3812,1430,388,0,132891496,460.3,67891696,28.0,460.3,133.2
50
  2015-06-01,603624,0,293891,29065,58976,31471,0,10552,51700,18992,81417,12669,2017,3861,5914,2502,597,0,231023939,791.3,107956383,57.6,791.3,110.0
51
  2015-06-02,625426,0,299920,30924,63329,32758,0,11731,52723,19436,84849,14281,2137,4046,5969,2750,573,0,241450784,848.0,112084581,40.7,848.0,545.2
52
+ 2015-06-03,658796,0,314565,33502,66333,34403,0,12346,57292,21791,88075,14337,2252,3874,6409,3014,603,0,253787134,994.3,118228569,46.9,994.3,95.8
53
+ 2015-06-04,637249,0,310414,30510,61995,33221,0,10875,55990,20886,84711,12940,1976,4136,6161,2798,636,0,240821733,971.8,112270272,48.9,971.8,0.0