tamnd commited on
Commit
d01eca5
·
verified ·
1 Parent(s): 5517167

Add 2012-01-06 — 84.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-05** (248 days), totaling **14,439,641 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.8 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,188,550 events in 7465 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 234
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 224
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 205
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 239
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 243
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 259
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 298
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 405
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 482
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 644
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.3K
98
- 21:00 ███████████░░░░░░░░░░░░░░░░░░░ 119.0K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343.5K
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 | 5 | 343,497 | 68,699 | 83.0 MB | 40.9 MB | 1m38s | 43s | 2m03s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148.4K
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 17.0K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.0K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 38.2K
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,823,279 | 47.3% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 754,059 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 955,206 | 6.6% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 379,878 | 2.6% | PR lifecycle events |
560
- | `stars` | WatchEvent | 1,456,215 | 10.1% | Repository stars |
561
- | `forks` | ForkEvent | 406,671 | 2.8% | Repository forks |
562
- | `creates` | CreateEvent | 2,294,720 | 15.9% | Branch/tag/repo creation |
563
- | `deletes` | DeleteEvent | 169,579 | 1.2% | Branch/tag deletion |
564
- | `commit_comments` | CommitCommentEvent | 176,605 | 1.2% | Comments on commits |
565
- | `wiki_pages` | GollumEvent | 291,704 | 2.0% | Wiki page edits |
566
- | `members` | MemberEvent | 79,201 | 0.5% | Collaborator additions |
567
- | `public_events` | PublicEvent | 12,918 | 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-06** (249 days), totaling **14,524,110 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.8 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,190,818 events in 7480 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 234
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 224
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 239
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 243
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 261
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 299
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 405
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 482
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 645
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.3K
98
+ 21:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 428.0K
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 | 6 | 427,966 | 71,327 | 104.5 MB | 51.4 MB | 1m56s | 57s | 2m38s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185.3K
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 21.3K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 11.5K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 47.1K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 6,860,179 | 47.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 758,429 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 961,562 | 6.6% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 382,350 | 2.6% | PR lifecycle events |
560
+ | `stars` | WatchEvent | 1,465,041 | 10.1% | Repository stars |
561
+ | `forks` | ForkEvent | 409,131 | 2.8% | Repository forks |
562
+ | `creates` | CreateEvent | 2,314,141 | 15.9% | Branch/tag/repo creation |
563
+ | `deletes` | DeleteEvent | 170,316 | 1.2% | Branch/tag deletion |
564
+ | `commit_comments` | CommitCommentEvent | 177,713 | 1.2% | Comments on commits |
565
+ | `wiki_pages` | GollumEvent | 293,151 | 2.0% | Wiki page edits |
566
+ | `members` | MemberEvent | 79,510 | 0.5% | Collaborator additions |
567
+ | `public_events` | PublicEvent | 12,981 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
data/commit_comments/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2bb5d620b4b9062b5f58692537f7d098173ce42b834f91e4ee8f25051675259
3
+ size 205695
data/creates/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea1eb42b7429db6886acdaa86bd8babc57b25c6859fea8e4c023f639f87da48f
3
+ size 454727
data/deletes/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ff44a2679df8e872fd5f14b5d1d5ba4957017ba20eb6589f5ed88e8a32470d09
3
+ size 27896
data/forks/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdc695e1151b29d58cf47c31967fdb77af4342354cb1a4f733b098f694634875
3
+ size 220897
data/issues/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efb4c4055b4f6471cb77fc6051217194f7d5ec9a9bc0d61b30425d85b6667486
3
+ size 1006770
data/members/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1ab62603bd2f8b9a7e3ce3418f6e7d817ca052b8a3a648b803b27ca52569cae
3
+ size 16568
data/public_events/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3baac863de80ac01fe92f17ea7ee522cf9c7f1062de910259aa983f9d3e9105
3
+ size 5043
data/pull_requests/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eca4d3150b9f04743f6d35d0edebe6c303cf3ad274086b3658281888d28e7e8f
3
+ size 489879
data/pushes/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14477a0250462a8a2238ac5828da5894001f34f7605245e7a2826d18a9964d50
3
+ size 8206627
data/stars/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db03e23220a0734b5ff22f8d5232c73fb3f163ace25408974ea3a02591d72006
3
+ size 254733
data/wiki_pages/2012/01/06.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0520f2149d1de73951ca0a6061931bc36ff83dc67990610a06b08cb9ca2a0feb
3
+ size 115573
stats.csv CHANGED
@@ -246,4 +246,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
246
  2012-01-02,68933,0,28956,3172,4478,1675,0,0,8269,1995,16992,1074,0,751,1303,221,47,0,16879523,10.1,8320156,19.7,10.1,30.1
247
  2012-01-03,77308,0,33436,4307,5513,2131,0,0,8923,2194,17424,673,0,921,1472,264,50,0,20075486,9.3,9673051,21.3,9.3,28.7
248
  2012-01-04,70253,0,30707,3904,4907,1943,0,0,7733,2045,16207,577,0,829,1065,268,68,0,18181462,7.3,9085617,20.6,7.3,36.7
249
- 2012-01-05,80678,0,35956,3795,6143,2439,0,0,8221,2353,18054,931,0,917,1430,369,70,0,21619419,8.8,10452033,19.8,8.8,0.0
 
 
246
  2012-01-02,68933,0,28956,3172,4478,1675,0,0,8269,1995,16992,1074,0,751,1303,221,47,0,16879523,10.1,8320156,19.7,10.1,30.1
247
  2012-01-03,77308,0,33436,4307,5513,2131,0,0,8923,2194,17424,673,0,921,1472,264,50,0,20075486,9.3,9673051,21.3,9.3,28.7
248
  2012-01-04,70253,0,30707,3904,4907,1943,0,0,7733,2045,16207,577,0,829,1065,268,68,0,18181462,7.3,9085617,20.6,7.3,36.7
249
+ 2012-01-05,80678,0,35956,3795,6143,2439,0,0,8221,2353,18054,931,0,917,1430,369,70,0,21619419,8.8,10452033,19.8,8.8,35.4
250
+ 2012-01-06,84469,0,36900,4370,6356,2472,0,0,8826,2460,19421,737,0,1108,1447,309,63,0,22553888,14.0,11004408,17.5,14.0,0.0