tamnd commited on
Commit
16fe170
·
verified ·
1 Parent(s): 5873737

Add 2013-09-16 — 247.8K 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-09-15** (777 days), totaling **97,299,698 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 26.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.2 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,326,101 events in 3474 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
78
  01:00 █████████████████████████████░ 272.8K
79
  02:00 █████████████████████████████░ 271.6K
80
- 03:00 █████████████████████████████ 273.6K
81
- 04:00 █████████████████████████████ 272.7K
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,326,101 | 3474 |
107
 
108
 
109
  ### Live event schema
@@ -138,22 +138,22 @@ duckdb.sql("""
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
- 2013 ██████████████████████████████ 48.9M
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 | 243 | 48,946,713 | 201,426 | 14.9 GB | 4.6 GB | 2h27m | 6h42m | 3h10m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
- 2011 ███████░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 25.0M
157
  ```
158
 
159
 
@@ -162,7 +162,7 @@ duckdb.sql("""
162
  ```
163
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ████████████████████░░░░░░░░░░ 1.9M
165
- 2013 ██████████████████████████████ 2.8M
166
  ```
167
 
168
 
@@ -170,8 +170,8 @@ duckdb.sql("""
170
 
171
  ```
172
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
- 2012 ████████████████████████░░░░░ 1.5M
174
- 2013 ██████████████████████████████ 1.8M
175
  ```
176
 
177
 
@@ -564,20 +564,20 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
- | `pushes` | PushEvent | 48,145,657 | 49.5% | Git pushes with commits |
568
- | `issues` | IssuesEvent | 5,510,475 | 5.7% | Issue lifecycle events |
569
- | `issue_comments` | IssueCommentEvent | 8,269,902 | 8.5% | Comments on issues/PRs |
570
- | `pull_requests` | PullRequestEvent | 3,742,536 | 3.8% | PR lifecycle events |
571
- | `pr_review_comments` | PullRequestReviewCommentEvent | 702,080 | 0.7% | Line-level PR comments |
572
- | `stars` | WatchEvent | 9,267,888 | 9.5% | Repository stars |
573
- | `forks` | ForkEvent | 3,480,839 | 3.6% | Repository forks |
574
- | `creates` | CreateEvent | 13,223,235 | 13.6% | Branch/tag/repo creation |
575
- | `deletes` | DeleteEvent | 806,913 | 0.8% | Branch/tag deletion |
576
- | `releases` | ReleaseEvent | 28,488 | 0.0% | Release publications |
577
- | `commit_comments` | CommitCommentEvent | 992,093 | 1.0% | Comments on commits |
578
- | `wiki_pages` | GollumEvent | 1,861,747 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
- | `public_events` | PublicEvent | 88,811 | 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-09-17** (779 days), totaling **97,790,728 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 27.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 9.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
 
 
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,330,934 events in 3489 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
78
  01:00 █████████████████████████████░ 272.8K
79
  02:00 █████████████████████████████░ 271.6K
80
+ 03:00 █████████████████████████████ 273.6K
81
+ 04:00 █████████████████████████████ 277.5K
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,330,934 | 3489 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 49.4M
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 | 245 | 49,437,743 | 201,786 | 15.1 GB | 4.7 GB | 2h28m | 6h47m | 3h11m |
149
 
150
 
151
  ### Pushes per year
152
 
153
  ```
154
+ 2011 ███████░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 25.2M
157
  ```
158
 
159
 
 
162
  ```
163
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 737.1K
164
  2012 ████████████████████░░░░░░░░░░ 1.9M
165
+ 2013 ██████████████████████████████ 2.9M
166
  ```
167
 
168
 
 
170
 
171
  ```
172
  2011 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
+ 2012 ████████████████████████░░░░░ 1.5M
174
+ 2013 ██████████████████████████████ 1.9M
175
  ```
176
 
177
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 48,393,393 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,541,369 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,313,493 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,763,116 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 708,162 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,313,860 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,500,580 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,278,981 | 13.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 811,330 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 29,348 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 996,466 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,869,873 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 89,346 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2a88f5bc681ff585deca2e75bc2095dd3a07a7031264f40e6d0e91996e8852b
3
+ size 78986
data/creates/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ba0623c4df4287c955bcc69b79c879c37d85fd64286861a2fcab9e0e4e97de6
3
+ size 1087216
data/deletes/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc8ca2c4060391a64c26c28a721c224b32dcccfc8a2b7700a4063451a74d9c0d
3
+ size 76419
data/forks/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:773a6680c6f494acb3f02f882b610722689b96449d81018d64cc58b282ce1232
3
+ size 263011
data/issue_comments/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17988f39f97e2910578465c3c65870f336770dbff6e89044505bfdd500525a45
3
+ size 538031
data/issues/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5b8a25a065b996c8b634143c944505050c04b82096dcdcdbd9615e1df5ade99
3
+ size 353682
data/public_events/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aadc1eeba4b40f0460d0ed68aa7ab9ba03faf12463d50313f917bf73731b3ac2
3
+ size 10915
data/pull_requests/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c394977454ac87f66e55e1f95e8c940c0b49803203e8096d871901dc2a734596
3
+ size 1939807
data/pushes/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:129d2a5330b7d0ac7ed42db5c3dda1370226b78d697777af2a1b51a3d80ac669
3
+ size 19489863
data/stars/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b0f3bb328a115c0588dc3f19e02ba01ad38eab232b459623c7049fbfaedfa97
3
+ size 515792
data/wiki_pages/2013/09/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd0e26df3490a890a7ebb4574ec04c3e20d54913924ff4452909c67d742fd9e2
3
+ size 215373
stats.csv CHANGED
@@ -775,4 +775,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
775
  2013-09-12,268535,1442,134493,16234,23439,11030,0,3281,23479,9899,34666,2951,480,2493,4387,0,261,0,88959473,156.0,26821193,55.0,156.0,52.9
776
  2013-09-13,228401,1123,118533,12095,20740,9488,0,2740,20876,8272,25685,2288,509,2212,3644,0,196,0,76614855,130.6,23199870,33.6,130.6,102.4
777
  2013-09-14,168490,731,85869,12649,18797,5119,0,976,14490,5847,18531,1163,312,1293,2593,0,120,0,49669642,89.8,15590326,36.5,89.8,28.6
778
- 2013-09-15,184870,618,99340,10463,14521,5701,0,1489,17632,6854,21387,1375,352,1520,3449,0,169,0,57502426,105.5,17837203,42.9,105.5,0.0
 
 
 
775
  2013-09-12,268535,1442,134493,16234,23439,11030,0,3281,23479,9899,34666,2951,480,2493,4387,0,261,0,88959473,156.0,26821193,55.0,156.0,52.9
776
  2013-09-13,228401,1123,118533,12095,20740,9488,0,2740,20876,8272,25685,2288,509,2212,3644,0,196,0,76614855,130.6,23199870,33.6,130.6,102.4
777
  2013-09-14,168490,731,85869,12649,18797,5119,0,976,14490,5847,18531,1163,312,1293,2593,0,120,0,49669642,89.8,15590326,36.5,89.8,28.6
778
+ 2013-09-15,184870,618,99340,10463,14521,5701,0,1489,17632,6854,21387,1375,352,1520,3449,0,169,0,57502426,105.5,17837203,42.9,105.5,42.8
779
+ 2013-09-16,247809,1199,124175,16694,22336,10468,0,3009,23065,9836,27820,2261,458,2167,4064,0,257,0,82487968,149.5,24569095,41.1,149.5,0.0
780
+ 2013-09-17,243221,1178,123561,14200,21255,10112,0,3073,22907,9905,27926,2156,402,2206,4062,0,278,0,81181248,142.0,24677654,39.7,142.0,0.0