tamnd commited on
Commit
b393d0f
·
verified ·
1 Parent(s): 145e744

Add 2013-08-09 — 217.9K events, 11 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 **2011-02-12** to **2013-08-08** (745 days), totaling **90,324,257 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 24.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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
 
@@ -71,14 +71,14 @@ The underlying data comes from [GH Archive](https://www.gharchive.org/), created
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
- **2026-03-28** — 1,163,418 events in 2934 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
- 03:00 ██████████████████████████████ 273.0K
81
- 04:00 ████████████░░░░░░░░░░░░░░░░░ 110.8K
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -103,7 +103,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
- | 2026-03-28 | 1,163,418 | 2934 |
107
 
108
 
109
  ### Live event schema
@@ -138,22 +138,22 @@ duckdb.sql("""
138
  ```
139
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████████░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 42.0M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
- | 2013 | 211 | 41,971,272 | 198,915 | 12.8 GB | 4.0 GB | 2h09m | 5h35m | 2h45m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
- 2012 ██████████████████████░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 21.5M
157
  ```
158
 
159
 
@@ -180,7 +180,7 @@ duckdb.sql("""
180
  ```
181
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ████████████████████████░░░░░░ 3.3M
183
- 2013 ██████████████████████████████ 3.9M
184
  ```
185
 
186
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 44,652,887 | 49.4% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,105,035 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 7,628,149 | 8.4% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,473,292 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 629,462 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 8,607,122 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,200,532 | 3.5% | Repository forks |
574
- | `creates` | CreateEvent | 12,363,342 | 13.7% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 730,644 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 16,503 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 931,508 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,752,631 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 82,667 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
 
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 **2011-02-12** to **2013-08-09** (746 days), totaling **90,542,175 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 24.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 8.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
 
 
71
 
72
  Events from today are captured in near-real-time from the GitHub Events API and stored as 5-minute blocks in `today/raw/YYYY/MM/DD/HHMM.parquet`. Each block contains a generic event record with the full JSON payload preserved for later processing. Live blocks are committed to this dataset within minutes of the events occurring.
73
 
74
+ **2026-03-28** — 1,173,359 events in 2945 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.3K
78
  01:00 █████████████████████████████░ 272.7K
79
  02:00 █████████████████████████████░ 271.6K
80
+ 03:00 ██████████████████████████████ 273.1K
81
+ 04:00 ████████████░░░░░░░░░░░░░░░░░ 120.6K
82
  05:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
83
  06:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
84
  07:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,173,359 | 2945 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████████░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 42.2M
142
  ```
143
 
144
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
145
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
146
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
147
  | 2012 | 291 | 34,256,841 | 117,721 | 9.2 GB | 3.2 GB | 2h14m | 3h16m | 2h50m |
148
+ | 2013 | 212 | 42,189,190 | 199,005 | 12.9 GB | 4.0 GB | 2h10m | 5h37m | 2h46m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
+ 2012 ██████████████████████░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 21.6M
157
  ```
158
 
159
 
 
180
  ```
181
  2011 ██████████░░░░░░░░░░░░░░░░░░░░ 1.4M
182
  2012 ████████████████████████░░░░░░ 3.3M
183
+ 2013 ██████████████████████████████ 4.0M
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 44,763,665 | 49.4% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,116,974 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 7,647,112 | 8.4% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,482,047 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 632,176 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 8,626,873 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,209,782 | 3.5% | Repository forks |
574
+ | `creates` | CreateEvent | 12,387,790 | 13.7% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 732,574 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 16,882 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 933,383 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,758,697 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 82,869 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85e7b4dd112cfc523d8f5122cf0a4147a895e45e4422c09c33b50ca0a656e1d6
3
+ size 69585
data/creates/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2d4ff7065c960ce896b4d64d082211a41bbd9396e038a1908477c96028e02c5
3
+ size 883896
data/deletes/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa1f91365b02e217f23b4a3dd18d7c23b0223c1a5bfb6ed39b1b071e9426009b
3
+ size 61177
data/forks/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f3077cee4f23d432cbff7a805bb1e0a5147ca281d81b2e2ce0ee230f679e991
3
+ size 247117
data/issue_comments/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecc9e643e361a9ce3b1cac26e9df12188cb1fc5a853ad05dc1d256219e1bf9d6
3
+ size 449936
data/issues/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b722733d04bf141dc752a6c296d1a17d1ab68c0d801223a5b50d645be7da8a4d
3
+ size 297947
data/public_events/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a2cc0fb43408dffb04443ee369f4e0b4b9bcf94d84830f7bb2dab064d664f75
3
+ size 9128
data/pull_requests/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d16064fdfcfd0c02dea25b98a452ef9487f2c3e2006244200e9658326f6db41e
3
+ size 1615143
data/pushes/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:193066c3bebec13d8385d32dd5cc14d9b51472a02225a22d80c256b7f9ff820c
3
+ size 18432523
data/stars/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d388fc4c2f9e2e1d8b9f81c131af731c5ca9675cb643a2ecfc33dfe0fed4c3c5
3
+ size 456107
data/wiki_pages/2013/08/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caf44fbef5f356cb86bb184c1030bca2b4b7e22596bd90e021de77b99bcd4a5e
3
+ size 347012
stats.csv CHANGED
@@ -743,4 +743,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
743
  2013-08-05,245288,955,125455,13007,22415,9834,0,3084,23236,9948,28415,2094,401,2387,3855,0,202,0,82498885,97.4,25667075,47.0,97.4,39.8
744
  2013-08-06,260261,949,138850,13765,23270,10350,0,2842,22034,9751,29278,2069,467,2313,4114,0,209,0,84200147,140.8,26075684,43.2,140.8,32.8
745
  2013-08-07,262246,959,134621,14498,23396,10790,0,3327,23385,11163,30575,2305,472,2503,4026,0,226,0,87778881,155.6,26763479,29.9,155.6,41.9
746
- 2013-08-08,242914,837,123306,13417,22215,10042,0,2801,22290,10143,26600,2195,359,2519,5986,0,204,0,81926833,145.6,24919468,31.8,145.6,0.0
 
 
743
  2013-08-05,245288,955,125455,13007,22415,9834,0,3084,23236,9948,28415,2094,401,2387,3855,0,202,0,82498885,97.4,25667075,47.0,97.4,39.8
744
  2013-08-06,260261,949,138850,13765,23270,10350,0,2842,22034,9751,29278,2069,467,2313,4114,0,209,0,84200147,140.8,26075684,43.2,140.8,32.8
745
  2013-08-07,262246,959,134621,14498,23396,10790,0,3327,23385,11163,30575,2305,472,2503,4026,0,226,0,87778881,155.6,26763479,29.9,155.6,41.9
746
+ 2013-08-08,242914,837,123306,13417,22215,10042,0,2801,22290,10143,26600,2195,359,2519,5986,0,204,0,81926833,145.6,24919468,31.8,145.6,50.0
747
+ 2013-08-09,217918,868,110778,11939,18963,8755,0,2714,19751,9250,24448,1930,379,1875,6066,0,202,0,73780115,131.1,22869571,30.0,131.1,0.0