tamnd commited on
Commit
e0c9bce
·
verified ·
1 Parent(s): 8cfbd47

Add 2015-07-21 — 625.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-20** (98 days), totaling **49,824,554 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 15.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.1 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 ██████████████████████████████ 49.8M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 98 | 49,824,554 | 508,413 | 15.2 GB | 8.1 GB | 1h10m | 11h23m | 2h13m |
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 ██████████████████████████████ 24.1M
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 ██████████████████████████████ 2.3M
138
  ```
139
 
140
 
@@ -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.5M
157
  ```
158
 
159
 
@@ -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 █���████████████████████████████ 4.4M
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 | 24,145,817 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,326,457 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 4,563,315 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,495,390 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 827,236 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,444,725 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,675,587 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 7,032,543 | 14.1% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,098,499 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 164,540 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 306,961 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 462,172 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 232,475 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 48,837 | 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-22** (100 days), totaling **51,083,333 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 15.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.3 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 ██████████████████████████████ 51.1M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 100 | 51,083,333 | 510,833 | 15.6 GB | 8.3 GB | 1h12m | 11h37m | 2h14m |
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 ██████████████████████████████ 24.7M
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.4M
138
  ```
139
 
140
 
 
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
 
 
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 █████████████████████████████ 4.6M
175
  ```
176
 
177
 
 
584
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 24,749,467 | 48.4% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,386,369 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,687,837 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,562,028 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 852,704 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 4,558,593 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,718,041 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 7,196,094 | 14.1% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,128,105 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 169,113 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 315,161 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 472,430 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 237,417 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 49,974 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0fc37eb32bb01bac175f82364604ce15cf373a728e9f92e1e7e348e0b564dc8
3
+ size 540875
data/creates/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f84ffbefcf18e1cc5dec5b9547a05e6f02f8159a4d4a3c953f3cd26bba5f169
3
+ size 3154665
data/deletes/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:345224a3ad14b6eb9449e9c57bb6bdae197d8e8feb5f78bce415c5376f4cae82
3
+ size 481155
data/forks/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06c7b0642bc07c0d14b48b9cfde6067dfafd9e9170712fde53240490c2c97bab
3
+ size 2242858
data/issue_comments/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:727a84297aed10ddfbfbe48c89312082699c0206e57580665fc4f8caa8fa28c2
3
+ size 11577657
data/issues/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0155ecde2977e1a8b0d05a896ab08aa96b91b10d45ba02e52706f2e2c50bb67
3
+ size 7521220
data/members/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b133a7d9f48cf2ccd0e5cb568004edd2c5d4d797f4c2ec217a0c51daedcf46ff
3
+ size 98677
data/pr_review_comments/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19abad81de7224237a3cfdcdbf9d05368dfe8dfbf1504138526c26709317b7cb
3
+ size 4574330
data/public_events/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe31c9919e65033827101451617e523fc22f2f8cfbf69f2b7901f5e1cb86bdd5
3
+ size 27550
data/pull_requests/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87e96666dbe182cdeeba8cf853255a37ec7419fd6af5b2157a0c30993239091d
3
+ size 5930747
data/pushes/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2b768789df60ad4eb58bd83cfe63a2f29444e9836763b0f7196d0b706071d8a
3
+ size 72650391
data/releases/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9aaa214a4563dacb292f5e037939f9165a773cce2567dd2fd6702a5e640292a2
3
+ size 304216
data/stars/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:31b63b7e76108064823e38063eb3f9a959ece8773a89e46519086129d931c6b7
3
+ size 1922247
data/wiki_pages/2015/07/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdca7fab0a24c2853e69f7b360ebaa6dab2947b972496200851ccd98f0928981
3
+ size 370897
stats.csv CHANGED
@@ -96,4 +96,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
96
  2015-07-17,562219,0,266627,27069,59180,30510,0,11182,50658,19056,71809,13449,2081,3724,4459,1961,454,0,219336470,428.1,100207620,36.4,428.1,122.4
97
  2015-07-18,363696,0,184366,15782,29097,15561,0,4347,32364,12162,53264,7475,1529,2054,3506,1880,309,0,121066762,248.8,60502267,30.9,248.8,36.3
98
  2015-07-19,380292,0,196801,16123,28242,15929,0,4276,33189,12194,56534,8530,1632,2139,3197,1195,311,0,123859927,241.1,62718245,30.4,241.1,95.9
99
- 2015-07-20,592705,0,276470,29416,58092,30571,0,11629,56196,20439,81843,13872,2109,4014,5309,2161,584,0,227262399,418.5,104430421,38.1,418.5,0.0
 
 
 
96
  2015-07-17,562219,0,266627,27069,59180,30510,0,11182,50658,19056,71809,13449,2081,3724,4459,1961,454,0,219336470,428.1,100207620,36.4,428.1,122.4
97
  2015-07-18,363696,0,184366,15782,29097,15561,0,4347,32364,12162,53264,7475,1529,2054,3506,1880,309,0,121066762,248.8,60502267,30.9,248.8,36.3
98
  2015-07-19,380292,0,196801,16123,28242,15929,0,4276,33189,12194,56534,8530,1632,2139,3197,1195,311,0,123859927,241.1,62718245,30.4,241.1,95.9
99
+ 2015-07-20,592705,0,276470,29416,58092,30571,0,11629,56196,20439,81843,13872,2109,4014,5309,2161,584,0,227262399,418.5,104430421,38.1,418.5,29.6
100
+ 2015-07-21,625937,0,297196,29681,62658,33685,0,12949,57199,21401,81727,14602,2139,4500,5121,2472,607,0,244688612,439.2,111397485,40.2,439.2,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,0.0