tamnd commited on
Commit
b22dd5c
·
verified ·
1 Parent(s): f870b08

Add 2012-02-10 — 84.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 **2012-02-09** (271 days), totaling **16,373,625 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.6 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,32 +71,32 @@ 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,344,736 events in 8702 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 280
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 255
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 267
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 314
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 337
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 391
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 452
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 524
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 731
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.6K
99
- 22:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 10.5K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 2.3M
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 | 28 | 2,277,481 | 81,338 | 570.1 MB | 279.9 MB | 11m33s | 13m26s | 15m36s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.0M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 110.8K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 64.1K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 232.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 | 7,705,073 | 47.1% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 847,928 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,096,184 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 434,938 | 2.7% | PR lifecycle events |
560
- | `stars` | WatchEvent | 1,650,193 | 10.1% | Repository stars |
561
- | `forks` | ForkEvent | 462,207 | 2.8% | Repository forks |
562
- | `creates` | CreateEvent | 2,714,771 | 16.6% | Branch/tag/repo creation |
563
- | `deletes` | DeleteEvent | 189,189 | 1.2% | Branch/tag deletion |
564
- | `commit_comments` | CommitCommentEvent | 199,221 | 1.2% | Comments on commits |
565
- | `wiki_pages` | GollumEvent | 331,343 | 2.0% | Wiki page edits |
566
- | `members` | MemberEvent | 88,235 | 0.5% | Collaborator additions |
567
- | `public_events` | PublicEvent | 14,737 | 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-02-10** (272 days), totaling **16,458,405 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.7 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,347,510 events in 8723 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 280
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 256
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 267
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 316
89
+ 12:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 338
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 391
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 453
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 525
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 733
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.6K
99
+ 22:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 13.2K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 2.4M
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 | 29 | 2,362,261 | 81,457 | 591.7 MB | 290.6 MB | 12m10s | 14m00s | 16m17s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 1.1M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░░ 116.2K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 66.4K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 240.2K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 7,742,956 | 47.0% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 853,271 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,102,830 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 437,292 | 2.7% | PR lifecycle events |
560
+ | `stars` | WatchEvent | 1,658,217 | 10.1% | Repository stars |
561
+ | `forks` | ForkEvent | 464,632 | 2.8% | Repository forks |
562
+ | `creates` | CreateEvent | 2,733,032 | 16.6% | Branch/tag/repo creation |
563
+ | `deletes` | DeleteEvent | 190,064 | 1.2% | Branch/tag deletion |
564
+ | `commit_comments` | CommitCommentEvent | 200,083 | 1.2% | Comments on commits |
565
+ | `wiki_pages` | GollumEvent | 333,005 | 2.0% | Wiki page edits |
566
+ | `members` | MemberEvent | 88,611 | 0.5% | Collaborator additions |
567
+ | `public_events` | PublicEvent | 14,806 | 0.1% | Repo made public |
568
 
569
  ## How it's built
570
 
data/commit_comments/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a95c988b7d58291ac3359d6cc5548ad6aa567ef4535d4c7fbf3e5d90007c3330
3
+ size 126395
data/creates/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e214715acb24d4cbf15c64bb2eee12c7d5f465670f28b336815ba0c1c3393aa
3
+ size 454461
data/deletes/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d31a293c84daf093e432da4bf6f7e919c1eb9c280e613ad806a3e8ef7658c4b
3
+ size 29554
data/forks/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:778c75e0c196462e693ea882f96ec39b580f550b56754c5161f637673c47792b
3
+ size 221428
data/issues/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:866d525bc12f6bcda98e28992952bcd4650973fd973cd0948eb6cd18c54e40cc
3
+ size 1028077
data/members/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00f82ff137b185f3a79b3642a4d192fc35c7f6061f3babb182dab13c4cd19787
3
+ size 20552
data/public_events/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8bf481c4c8fdf120e171aa838b3b517e68f99a6a17a12f2112ce1de096b4236
3
+ size 5642
data/pull_requests/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f3ff8d6bc6ccbb686d91bf763dc3290d8daa010c0a61921e319b08c38320f37
3
+ size 427118
data/pushes/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a362bd055d2e325f21f94800761bb32bee34e6790e2a036c37fc54c28aa6ac8e
3
+ size 8521842
data/stars/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea0f6239e8b1513039e5591db7f2125f658774ed5d8038460646df20205687a9
3
+ size 240320
data/wiki_pages/2012/02/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2eb949b008622e44cbdc885d2b6cafa66dbe348481db6236d0269a172fe3b15d
3
+ size 132769
stats.csv CHANGED
@@ -269,4 +269,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
269
  2012-02-06,83466,0,36670,3836,5952,2314,0,0,9281,2406,18830,706,0,1117,1887,387,80,0,21559141,31.9,10505074,22.7,31.9,29.1
270
  2012-02-07,81572,0,38320,4188,5925,2384,0,0,9036,2372,15416,786,0,826,1855,378,86,0,22050125,38.8,11157597,34.6,38.8,32.4
271
  2012-02-08,93511,0,40416,4431,6400,2607,0,0,9739,2646,22947,861,0,1008,1976,397,83,0,24684634,37.2,12468021,53.3,37.2,83.5
272
- 2012-02-09,92143,0,41608,4532,6955,2695,0,0,9764,2828,19041,1418,0,952,1725,539,86,0,24563625,40.7,11710516,42.0,40.7,0.0
 
 
269
  2012-02-06,83466,0,36670,3836,5952,2314,0,0,9281,2406,18830,706,0,1117,1887,387,80,0,21559141,31.9,10505074,22.7,31.9,29.1
270
  2012-02-07,81572,0,38320,4188,5925,2384,0,0,9036,2372,15416,786,0,826,1855,378,86,0,22050125,38.8,11157597,34.6,38.8,32.4
271
  2012-02-08,93511,0,40416,4431,6400,2607,0,0,9739,2646,22947,861,0,1008,1976,397,83,0,24684634,37.2,12468021,53.3,37.2,83.5
272
+ 2012-02-09,92143,0,41608,4532,6955,2695,0,0,9764,2828,19041,1418,0,952,1725,539,86,0,24563625,40.7,11710516,42.0,40.7,41.8
273
+ 2012-02-10,84780,0,37883,5343,6646,2354,0,0,8024,2425,18261,875,0,862,1662,376,69,0,22645001,33.6,11208158,36.2,33.6,0.0