tamnd commited on
Commit
23237c9
·
verified ·
1 Parent(s): b5a5619

Add 2015-07-17 — 562.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-07-16** (94 days), totaling **47,925,642 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 14.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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,12 +104,12 @@ duckdb.sql("""
104
  ## Events per year
105
 
106
  ```
107
- 2015 ██████████████████████████████ 47.9M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
- | 2015 | 94 | 47,925,642 | 509,847 | 14.5 GB | 7.8 GB | 1h08m | 11h01m | 2h08m |
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 ██████████████████████████████ 23.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 ██████████████████████████████ 2.2M
138
  ```
139
 
140
 
@@ -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.3M
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 | 23,221,553 | 48.5% | Git pushes with commits |
588
- | `issues` | IssuesEvent | 2,238,067 | 4.7% | Issue lifecycle events |
589
- | `issue_comments` | IssueCommentEvent | 4,388,704 | 9.2% | Comments on issues/PRs |
590
- | `pull_requests` | PullRequestEvent | 2,402,819 | 5.0% | PR lifecycle events |
591
- | `pr_review_comments` | PullRequestReviewCommentEvent | 795,802 | 1.7% | Line-level PR comments |
592
- | `stars` | WatchEvent | 4,272,318 | 8.9% | Repository stars |
593
- | `forks` | ForkEvent | 1,611,736 | 3.4% | Repository forks |
594
- | `creates` | CreateEvent | 6,769,093 | 14.1% | Branch/tag/repo creation |
595
- | `deletes` | DeleteEvent | 1,055,173 | 2.2% | Branch/tag deletion |
596
- | `releases` | ReleaseEvent | 157,189 | 0.3% | Release publications |
597
- | `commit_comments` | CommitCommentEvent | 295,030 | 0.6% | Comments on commits |
598
- | `wiki_pages` | GollumEvent | 445,701 | 0.9% | Wiki page edits |
599
- | `members` | MemberEvent | 225,278 | 0.5% | Collaborator additions |
600
- | `public_events` | PublicEvent | 47,179 | 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-18** (96 days), totaling **48,851,557 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 14.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 7.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
  ## Events per year
105
 
106
  ```
107
+ 2015 ██████████████████████████████ 48.9M
108
  ```
109
 
110
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
111
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
112
+ | 2015 | 96 | 48,851,557 | 508,870 | 14.8 GB | 7.9 GB | 1h09m | 11h12m | 2h09m |
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 ██████████████████████████████ 23.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.3M
138
  ```
139
 
140
 
 
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
 
585
  | Table | GitHub Event | Events | % | Description |
586
  |-------|-------------|-------:|---:|-------------|
587
+ | `pushes` | PushEvent | 23,672,546 | 48.5% | Git pushes with commits |
588
+ | `issues` | IssuesEvent | 2,280,918 | 4.7% | Issue lifecycle events |
589
+ | `issue_comments` | IssueCommentEvent | 4,476,981 | 9.2% | Comments on issues/PRs |
590
+ | `pull_requests` | PullRequestEvent | 2,448,890 | 5.0% | PR lifecycle events |
591
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 811,331 | 1.7% | Line-level PR comments |
592
+ | `stars` | WatchEvent | 4,355,340 | 8.9% | Repository stars |
593
+ | `forks` | ForkEvent | 1,642,954 | 3.4% | Repository forks |
594
+ | `creates` | CreateEvent | 6,894,166 | 14.1% | Branch/tag/repo creation |
595
+ | `deletes` | DeleteEvent | 1,076,097 | 2.2% | Branch/tag deletion |
596
+ | `releases` | ReleaseEvent | 160,799 | 0.3% | Release publications |
597
+ | `commit_comments` | CommitCommentEvent | 300,808 | 0.6% | Comments on commits |
598
+ | `wiki_pages` | GollumEvent | 453,666 | 0.9% | Wiki page edits |
599
+ | `members` | MemberEvent | 229,119 | 0.5% | Collaborator additions |
600
+ | `public_events` | PublicEvent | 47,942 | 0.1% | Repo made public |
601
 
602
  ## How it's built
603
 
data/commit_comments/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e22a7a769f943e2bb0001ec26f7b9e69eb5496a8408d2b10969b659d6bf504d
3
+ size 468577
data/creates/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d0e88bf726687f4e603b8cc96bd475501c825e39c2fe12de2899b18cbfc1efa
3
+ size 2835860
data/deletes/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:abcf393a02738a33732306bd9be6af0c62399381c0fd81de486dd9529255f563
3
+ size 440853
data/forks/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:325f40fa954599aabc3e37ed9b562d2f64cc004bedca79863e21e1e9483c4d0d
3
+ size 2078102
data/issue_comments/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:033877097f06f7a78ac99885eaa7ce8cc6939c9f1239bbb1d5be802af92b1655
3
+ size 10461069
data/issues/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:23721abd569fd71b858ad7323f9fb6f3dfe692350f627aa354f6b94c40321de7
3
+ size 7246847
data/members/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57858587a8811751cd1b06d41dee4089827fb8fe72070fa93490a752dc4b96ae
3
+ size 81753
data/pr_review_comments/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2bef6b34bc24b0112e750f257ab48c92e15899c008a8cdba59eda3334a6e408
3
+ size 3739074
data/public_events/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01a1a5dd9a8abd56944bc2e2a7a58fd9e89049e170050531a75d097b2d612701
3
+ size 21686
data/pull_requests/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9182eb5453d10dad2f070c198429855746bf94f08faabeb8c7c89cd3f368672e
3
+ size 5443647
data/pushes/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:38c59e72005fac791a3adfed5794937756bb39c7c8d075e6b41202d0240cc2cd
3
+ size 65114838
data/releases/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f40ac3ab7432a75bd3dc8824bbeab5c4c1bf88e44f3ccb833d7a4b73ba210744
3
+ size 290674
data/stars/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dff38f82426f4bf963f2bf6b3c3bb7cf300b3e5876eaa89dd9e5250cf6419d5
3
+ size 1718202
data/wiki_pages/2015/07/17.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f367250dc42fa6436338dca912750e67a2df99bbe4fb7ea857d83a772fc969d
3
+ size 266438
stats.csv CHANGED
@@ -92,4 +92,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
92
  2015-07-13,624052,0,296005,30009,61516,32817,0,12585,56779,20863,84600,13644,2241,3966,5800,2672,555,0,240385876,411.3,111374111,37.4,411.3,42.8
93
  2015-07-14,651313,0,311522,30911,64700,34364,0,12913,56856,22779,87235,13897,2328,4341,6244,2668,555,0,252058719,436.2,114860437,96.0,436.2,48.3
94
  2015-07-15,640838,0,303882,31094,65812,34330,0,13130,58267,21568,83628,13359,2333,4504,5961,2494,476,0,251540662,441.5,115086429,96.0,441.5,46.7
95
- 2015-07-16,602082,0,286744,29879,61835,32833,0,12265,53689,20392,77958,12133,2137,4099,5245,2344,529,0,234368728,400.7,107212910,38.1,400.7,0.0
 
 
 
92
  2015-07-13,624052,0,296005,30009,61516,32817,0,12585,56779,20863,84600,13644,2241,3966,5800,2672,555,0,240385876,411.3,111374111,37.4,411.3,42.8
93
  2015-07-14,651313,0,311522,30911,64700,34364,0,12913,56856,22779,87235,13897,2328,4341,6244,2668,555,0,252058719,436.2,114860437,96.0,436.2,48.3
94
  2015-07-15,640838,0,303882,31094,65812,34330,0,13130,58267,21568,83628,13359,2333,4504,5961,2494,476,0,251540662,441.5,115086429,96.0,441.5,46.7
95
+ 2015-07-16,602082,0,286744,29879,61835,32833,0,12265,53689,20392,77958,12133,2137,4099,5245,2344,529,0,234368728,400.7,107212910,38.1,400.7,47.9
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,0.0
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,0.0