tamnd commited on
Commit
97894b7
·
verified ·
1 Parent(s): d54a87a

Add 2013-09-18 — 240.0K 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-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,7 +71,7 @@ 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,332,958 events in 3499 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
@@ -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,332,958 | 3499 |
107
 
108
 
109
  ### Live event schema
@@ -138,14 +138,14 @@ duckdb.sql("""
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 | 3h12m |
149
 
150
 
151
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
- 2013 ██████████████████████████████ 25.2M
157
  ```
158
 
159
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
  ### Pull requests per year
170
 
171
  ```
172
- 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ████████████████████████░░░░░░ 1.5M
174
  2013 ██████████████████████████████ 1.9M
175
  ```
@@ -179,8 +179,8 @@ duckdb.sql("""
179
 
180
  ```
181
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 1.4M
182
- 2012 ████████████████████░░░░░░░░░ 3.3M
183
- 2013 ██████████████████████████████ 4.6M
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 | 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
 
 
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-18** (780 days), totaling **98,030,737 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.1 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,332,977 events in 3510 blocks
75
 
76
  ```
77
  00:00 █████████████████████████░░░░░ 235.4K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 1,332,977 | 3510 |
107
 
108
 
109
  ### Live event schema
 
138
  ```
139
  2011 ████████░░░░░░░░░░░░░░░░░░░░░░ 14.1M
140
  2012 ████████████████████░░░░░░░░░░ 34.3M
141
+ 2013 ██████████████████████████████ 49.7M
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 | 246 | 49,677,752 | 201,942 | 15.2 GB | 4.7 GB | 2h29m | 6h49m | 3h13m |
149
 
150
 
151
  ### Pushes per year
 
153
  ```
154
  2011 ███████░░░░░░░░░░░░░░░░░░░░░░░ 6.7M
155
  2012 ███████████████████░░░░░░░░░░░ 16.5M
156
+ 2013 ██████████████████████████████ 25.3M
157
  ```
158
 
159
 
 
169
  ### Pull requests per year
170
 
171
  ```
172
+ 2011 █████░░░░░░░░░░░░░░░░░░░░░░░░ 370.9K
173
  2012 ████████████████████████░░░░░░ 1.5M
174
  2013 ██████████████████████████████ 1.9M
175
  ```
 
179
 
180
  ```
181
  2011 █████████░░░░░░░░░░░░░░░░░░░░░ 1.4M
182
+ 2012 ████████████████████░░░░░░░░░ 3.3M
183
+ 2013 ██████████████████████████████ 4.7M
184
  ```
185
 
186
 
 
564
 
565
  | Table | GitHub Event | Events | % | Description |
566
  |-------|-------------|-------:|---:|-------------|
567
+ | `pushes` | PushEvent | 48,517,285 | 49.5% | Git pushes with commits |
568
+ | `issues` | IssuesEvent | 5,553,980 | 5.7% | Issue lifecycle events |
569
+ | `issue_comments` | IssueCommentEvent | 8,334,886 | 8.5% | Comments on issues/PRs |
570
+ | `pull_requests` | PullRequestEvent | 3,773,308 | 3.8% | PR lifecycle events |
571
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 711,205 | 0.7% | Line-level PR comments |
572
+ | `stars` | WatchEvent | 9,335,302 | 9.5% | Repository stars |
573
+ | `forks` | ForkEvent | 3,510,099 | 3.6% | Repository forks |
574
+ | `creates` | CreateEvent | 13,306,307 | 13.6% | Branch/tag/repo creation |
575
+ | `deletes` | DeleteEvent | 813,449 | 0.8% | Branch/tag deletion |
576
+ | `releases` | ReleaseEvent | 29,748 | 0.0% | Release publications |
577
+ | `commit_comments` | CommitCommentEvent | 998,866 | 1.0% | Comments on commits |
578
+ | `wiki_pages` | GollumEvent | 1,874,096 | 1.9% | Wiki page edits |
579
  | `members` | MemberEvent | 102,637 | 0.1% | Collaborator additions |
580
+ | `public_events` | PublicEvent | 89,570 | 0.1% | Repo made public |
581
 
582
  ## How it's built
583
 
data/commit_comments/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be10aa72d91129a2efbaa123fe0a84ddce0a06989323c11bc4b41ab46c566101
3
+ size 82866
data/creates/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:075dd7607dbc1a46edbed921b68b8f26a4030143bf89cb834cf4b1d9228b0672
3
+ size 1006917
data/deletes/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea296d385ee7cb1a98c6e36493199f4135f343220bb5604b3a67c2dc5b60bdc5
3
+ size 71499
data/forks/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24845dcec8239394568262c7dbfaebab97e3f9aebd1fa0a30fc837b2a2a21a1f
3
+ size 253340
data/issue_comments/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd72553a11838d08078e6df724b6ead8ba2d9b5991f2c405358a4ff915ac1d62
3
+ size 514743
data/issues/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a2c359c87c68097debc05093a3017af042656555f39bc91bbad578992024d2d
3
+ size 324730
data/public_events/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:940b6033011eada55d4e82ca3c94231e88f3d7b4f026105b1c240f62db1f66e3
3
+ size 9931
data/pull_requests/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4159ef399dbd3f6542e8c82cfeaaa5b2e9123b0fe29f5f4add6469b85e8ac74f
3
+ size 1843682
data/pushes/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51f05fd8e1c0b521d63c827b53a457e9d9d3a9ac3e14f2b91942bd26e36139c4
3
+ size 19349438
data/stars/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9f486883e766fc0016912c98a23f17bb8a7784f25c691495cda4bfbeb1f7682
3
+ size 477676
data/wiki_pages/2013/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5d1d959d1a0d51762ee97e78ed709d49a233ef69538d83cee992756f1dc8ebd
3
+ size 221132
stats.csv CHANGED
@@ -777,4 +777,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,52.5
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
 
 
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,52.5
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,58.0
781
+ 2013-09-18,240009,1225,123892,12611,21393,10192,0,3043,21442,9519,27326,2119,400,2400,4223,0,224,0,80616582,147.8,24155954,46.9,147.8,0.0