tamnd commited on
Commit
60e6a13
·
verified ·
1 Parent(s): 5cbfc25

Add 2012-01-22 — 58.5K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-09** (252 days), totaling **14,724,844 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.4 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
 
@@ -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,289,769 events in 8300 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 272
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 239
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 188
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 260
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 299
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 330
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 381
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 440
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 510
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 697
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.4K
98
- 21:00 ████████████████████░░░░░░░░░░ 219.4K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 628.7K
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 | 9 | 628,700 | 69,855 | 151.0 MB | 74.8 MB | 3m12s | 1m27s | 4m30s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 272.2K
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 30.4K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 16.6K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 67.7K
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 | 6,947,054 | 47.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 767,463 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 974,345 | 6.6% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 387,404 | 2.6% | PR lifecycle events |
560
- | `stars` | WatchEvent | 1,485,674 | 10.1% | Repository stars |
561
- | `forks` | ForkEvent | 414,226 | 2.8% | Repository forks |
562
- | `creates` | CreateEvent | 2,366,432 | 16.1% | Branch/tag/repo creation |
563
- | `deletes` | DeleteEvent | 171,912 | 1.2% | Branch/tag deletion |
564
- | `commit_comments` | CommitCommentEvent | 180,223 | 1.2% | Comments on commits |
565
- | `wiki_pages` | GollumEvent | 297,084 | 2.0% | Wiki page edits |
566
- | `members` | MemberEvent | 80,281 | 0.5% | Collaborator additions |
567
- | `public_events` | PublicEvent | 13,140 | 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-22** (253 days), totaling **14,783,368 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.4 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
 
 
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,522 events in 8333 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 272
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 240
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 188
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 205
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 271
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 261
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 300
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 330
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 384
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 440
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 698
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
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 687.2K
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 | 10 | 687,224 | 68,722 | 166.0 MB | 82.6 MB | 3m31s | 1m50s | 4m30s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 301.0K
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 33.2K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 18.1K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72.9K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 6,975,943 | 47.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 770,243 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 978,589 | 6.6% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 388,978 | 2.6% | PR lifecycle events |
560
+ | `stars` | WatchEvent | 1,490,934 | 10.1% | Repository stars |
561
+ | `forks` | ForkEvent | 415,873 | 2.8% | Repository forks |
562
+ | `creates` | CreateEvent | 2,377,674 | 16.1% | Branch/tag/repo creation |
563
+ | `deletes` | DeleteEvent | 172,428 | 1.2% | Branch/tag deletion |
564
+ | `commit_comments` | CommitCommentEvent | 180,918 | 1.2% | Comments on commits |
565
+ | `wiki_pages` | GollumEvent | 298,484 | 2.0% | Wiki page edits |
566
+ | `members` | MemberEvent | 80,508 | 0.5% | Collaborator additions |
567
+ | `public_events` | PublicEvent | 13,190 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
data/commit_comments/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6d7586e9047eec93ff65b613c18be0cdadd91836b44049a1eac569131729ec7
3
+ size 114544
data/creates/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e42cba36c27e6c26ad9a1f1e1e000182ba36e5ed6dd06bd8efe991213c1b6420
3
+ size 312873
data/deletes/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb4061474d3dbc39e32b359775a0f4b87e57878cde03f2f5935a8a7eb6c7b079
3
+ size 20517
data/forks/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:698dfb953dba127b2e26e64f84ee1ea6c5f4333eb1dee7ed72554673b7befeec
3
+ size 157710
data/issues/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11627cc873a1580ed2822621421805e2ebbb04933105f4eb95322cf253893870
3
+ size 607293
data/members/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d21046e8930e9f8c0df395507617840d7f7690b5273fd5d435021fe2aedef853
3
+ size 13443
data/public_events/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bc8443989e16e2bacbaf9b4b1f8d9e9a74f5319124f3227135717160abaede5
3
+ size 4646
data/pull_requests/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9aab102de8b6deecf94d44c513b897abb3d3657b9ec879d40da5b5fe61fd1531
3
+ size 310754
data/pushes/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:089e48d817444998fab0f307729a32c08b51f9fb0a942f806e02596c2bb53b4c
3
+ size 6326655
data/stars/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2921f0c023ec99e1c5e3884b15c4f3311192180d3c2a773adf62c0b0e5534be5
3
+ size 159336
data/wiki_pages/2012/01/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ccf24636a7d082047f10683ea3ae197ce8c968efb849b43366a229e6d90c592
3
+ size 110845
stats.csv CHANGED
@@ -251,3 +251,4 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
251
  2012-01-07,62376,0,27551,2764,3909,1575,0,0,6407,1612,15681,438,0,823,1326,254,36,0,15083329,9.1,7646269,18.2,9.1,27.3
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
 
 
251
  2012-01-07,62376,0,27551,2764,3909,1575,0,0,6407,1612,15681,438,0,823,1326,254,36,0,15083329,9.1,7646269,18.2,9.1,27.3
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,0.0