tamnd commited on
Commit
9b3b76f
·
verified ·
1 Parent(s): 25b9a6f

Add 2012-01-24 — 98.2K 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 **2012-01-25** (255 days), totaling **14,955,263 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 2.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.5 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,31 +71,31 @@ 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-27** — 1,291,567 events in 8362 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 272
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 242
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 188
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 271
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 261
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 300
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 330
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 384
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 442
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 702
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.4K
98
- 21:00 ████████████████████░░░░░░░░░ 221.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 859.1K
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
- | 2012 | 12 | 859,119 | 71,593 | 212.4 MB | 105.1 MB | 4m16s | 3m06s | 5m17s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 381.7K
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 41.5K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 23.5K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 90.0K
173
  ```
174
 
175
 
@@ -553,18 +553,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 7,056,590 | 47.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 778,574 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 992,891 | 6.6% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 394,388 | 2.6% | PR lifecycle events |
560
- | `stars` | WatchEvent | 1,507,967 | 10.1% | Repository stars |
561
- | `forks` | ForkEvent | 420,855 | 2.8% | Repository forks |
562
- | `creates` | CreateEvent | 2,410,336 | 16.1% | Branch/tag/repo creation |
563
- | `deletes` | DeleteEvent | 174,331 | 1.2% | Branch/tag deletion |
564
- | `commit_comments` | CommitCommentEvent | 183,120 | 1.2% | Comments on commits |
565
- | `wiki_pages` | GollumEvent | 301,923 | 2.0% | Wiki page edits |
566
- | `members` | MemberEvent | 81,311 | 0.5% | Collaborator additions |
567
- | `public_events` | PublicEvent | 13,371 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
 
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 **2012-01-25** (256 days), totaling **15,053,422 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 3.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.5 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-27** — 1,302,823 events in 8401 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 272
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 244
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 199
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 188
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 272
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 263
88
+ 11:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 303
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 332
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 384
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 444
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 515
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 705
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.4K
98
+ 21:00 ████████████████████░░░░░░░░░ 232.4K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 957.3K
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
+ | 2012 | 13 | 957,278 | 73,636 | 236.4 MB | 116.5 MB | 4m39s | 3m48s | 6m06s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 423.5K
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 46.2K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 26.4K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 98.7K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 7,098,434 | 47.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 783,285 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,000,041 | 6.6% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 397,287 | 2.6% | PR lifecycle events |
560
+ | `stars` | WatchEvent | 1,516,667 | 10.1% | Repository stars |
561
+ | `forks` | ForkEvent | 423,611 | 2.8% | Repository forks |
562
+ | `creates` | CreateEvent | 2,434,365 | 16.2% | Branch/tag/repo creation |
563
+ | `deletes` | DeleteEvent | 176,487 | 1.2% | Branch/tag deletion |
564
+ | `commit_comments` | CommitCommentEvent | 184,349 | 1.2% | Comments on commits |
565
+ | `wiki_pages` | GollumEvent | 303,980 | 2.0% | Wiki page edits |
566
+ | `members` | MemberEvent | 81,828 | 0.5% | Collaborator additions |
567
+ | `public_events` | PublicEvent | 13,482 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
data/commit_comments/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6fb34135ee45c74384bfd0e781f06f45918848005c628cef8b909c986f0896b
3
+ size 194924
data/creates/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f67bee305f651d8414666289e2cfd9753ef583cd33669a4efc1fe027fe14b20
3
+ size 508146
data/deletes/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c3f60cd3d12fa46a849ebcc0a18c966c93c1bcc586551b797372061bac753a0
3
+ size 42994
data/forks/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f17dca5dd083e12fd5c0d8ec799c8d9a5a2052bb4cb15ee63d996b99b6b51f1c
3
+ size 243305
data/issues/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71a9c519c55bb04faabdcb9a4fd3ead8038cb84ea3fec42dc64bd800e17526a1
3
+ size 994852
data/members/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd998f25b2de1f4d4d38e385b2ec95d995ce085267466f88efdede240823e258
3
+ size 23598
data/public_events/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4b09bc925e0df4c77af916b04b0e93d65539575bbd159c04bac5973a6173f34
3
+ size 6926
data/pull_requests/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b26454db9465f3be6b3dad73b2399040552092d3c8fd984915ef47d9885284eb
3
+ size 514540
data/pushes/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e53a7164b9b68382a9f053a5e5f187c63f547df0b2bfc634295ab2186a09e586
3
+ size 9093592
data/stars/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79aad1333b60cc681af3d5209a148f37de20f15f1ece432811728d8075ff6493
3
+ size 255584
data/wiki_pages/2012/01/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a187bf4f3cc641d1d21970d3e781a83093ea5c70891437d416ff84e6ace5bac
3
+ size 126074
stats.csv CHANGED
@@ -252,5 +252,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
252
  2012-01-08,66255,0,27530,2818,3793,1519,0,0,6398,1572,19910,491,0,735,1250,174,65,0,15076583,9.6,7680675,28.2,9.6,38.5
253
  2012-01-09,72103,0,31794,3452,5081,1960,0,0,7828,1911,16700,667,0,952,1357,343,58,0,18606446,12.5,9274698,29.5,12.5,18.9
254
  2012-01-22,58524,0,28889,2780,4244,1574,0,0,5260,1647,11242,516,0,695,1400,227,50,0,15722460,22.8,8138616,19.1,22.8,47.5
255
- 2012-01-23,83754,0,38446,3922,6725,2596,0,0,7826,2297,17972,915,0,998,1583,372,102,0,23311692,37.1,11603280,24.9,37.1,0.0
 
256
  2012-01-25,88141,0,42201,4409,7577,2814,0,0,9207,2685,14690,988,0,1204,1856,431,79,0,25334420,38.8,11969496,20.8,38.8,0.0
 
252
  2012-01-08,66255,0,27530,2818,3793,1519,0,0,6398,1572,19910,491,0,735,1250,174,65,0,15076583,9.6,7680675,28.2,9.6,38.5
253
  2012-01-09,72103,0,31794,3452,5081,1960,0,0,7828,1911,16700,667,0,952,1357,343,58,0,18606446,12.5,9274698,29.5,12.5,18.9
254
  2012-01-22,58524,0,28889,2780,4244,1574,0,0,5260,1647,11242,516,0,695,1400,227,50,0,15722460,22.8,8138616,19.1,22.8,47.5
255
+ 2012-01-23,83754,0,38446,3922,6725,2596,0,0,7826,2297,17972,915,0,998,1583,372,102,0,23311692,37.1,11603280,24.9,37.1,49.0
256
+ 2012-01-24,98159,0,41844,4711,7150,2899,0,0,8700,2756,24029,2156,0,1229,2057,517,111,0,25168006,41.9,12004535,22.2,41.9,0.0
257
  2012-01-25,88141,0,42201,4409,7577,2814,0,0,9207,2685,14690,988,0,1204,1856,431,79,0,25334420,38.8,11969496,20.8,38.8,0.0