tamnd commited on
Commit
777783a
·
verified ·
1 Parent(s): 7a51209

Add 2012-02-21 — 134.9K 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-20** (282 days), totaling **17,333,293 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.8 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,371,897 events in 8937 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 285
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 230
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 166
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 180
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 284
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 320
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
91
- 14:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 459
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 533
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 747
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.7K
99
- 22:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 37.4K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░ 3.2M
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 | 39 | 3,237,149 | 83,003 | 831.1 MB | 396.2 MB | 17m22s | 16m55s | 21m45s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.4M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 155.4K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 ████████████░░░░░░░░░░░░░░░░░░ 149.4K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 319.9K
173
  ```
174
 
175
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 8,116,593 | 46.8% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 892,468 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,161,045 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 520,234 | 3.0% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,864 | 0.0% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,737,869 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 487,359 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 2,910,430 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 198,285 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 208,448 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 350,719 | 2.0% | Wiki page edits |
567
- | `members` | MemberEvent | 92,746 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 15,627 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
 
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-21** (283 days), totaling **17,468,166 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.8 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,373,930 events in 8953 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 166
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 180
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 284
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 321
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 462
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 536
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 747
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.7K
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.7K
99
+ 22:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 39.4K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░ 3.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 | 40 | 3,372,022 | 84,300 | 872.7 MB | 412.3 MB | 18m11s | 17m23s | 22m14s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 1.5M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 161.5K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 ██████████████░░░░░░░░░░░░░░░░ 175.8K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 330.7K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 8,166,864 | 46.8% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 898,563 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,170,970 | 6.7% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 546,632 | 3.1% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 2,521 | 0.0% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 1,748,701 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 490,609 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 2,932,812 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 199,345 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 209,634 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 352,828 | 2.0% | Wiki page edits |
567
+ | `members` | MemberEvent | 93,336 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 15,745 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c8cd15bd4b4ac8249fb005a3c00056bbc468196724e6bbea0a40bba4190cf5b
3
+ size 177033
data/creates/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61075329ad7651e606629b181f76a34212723e43dde882b42c7127c014489e5b
3
+ size 598167
data/deletes/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5cc1d854a80b4dd0899a8303e74f430dd951af3e2f5ff6becc8291b1fe88ae48
3
+ size 36094
data/forks/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02ebb3e0bb537731a79c38d5b3e6677a9b809386949bbb3ca0e5ed68fc5a6352
3
+ size 289981
data/issues/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7207072372065b55e7db21050b5396e9f842e9c644eac90958338e60b2d819aa
3
+ size 1266197
data/members/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7658cdb0a9f8a6314bd6fe07bef111dd96dc5bf0c6462ab641d4464dc3ee5c21
3
+ size 25429
data/public_events/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8451c4b3a18567c7db46ab779abe3d40f57be8513c89c7b1e18e54e690ac817e
3
+ size 7461
data/pull_requests/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d6ec85f759840dd3e8090e9fcb1710ce73cabb9ef39aca27c80fed7890fa656d
3
+ size 3028636
data/pushes/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53930333fa796cf2d237cf699de07fd56ba3f175567a73bc044c0165cab9c656
3
+ size 11012861
data/stars/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1eaaa6ee16a914470145a242c749a204dd89a4e54e85e8a7a01f8623fa435b01
3
+ size 317425
data/wiki_pages/2012/02/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df320540cf42f29f4fe662160b8fdb9cfaa7bef790ab749dffd5feb1ff9ec89c
3
+ size 126997
stats.csv CHANGED
@@ -280,4 +280,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
280
  2012-02-17,103625,0,42872,4350,7133,11471,0,511,9900,2889,19607,1274,0,1140,1914,479,85,0,30986496,22.4,13319746,47.1,22.4,32.9
281
  2012-02-18,96090,0,32991,3214,4847,20964,0,223,6822,2096,21570,527,0,651,1739,375,71,0,30093950,24.3,10683624,30.9,24.3,29.7
282
  2012-02-19,97314,0,38618,3451,5213,17933,0,288,7463,2116,18617,640,0,707,1788,380,100,0,30842576,24.3,11858980,23.2,24.3,36.4
283
- 2012-02-20,106293,0,40708,4649,6664,19749,0,361,8433,2422,19125,873,0,906,1831,481,91,0,33501533,23.8,13311814,22.8,23.8,0.0
 
 
280
  2012-02-17,103625,0,42872,4350,7133,11471,0,511,9900,2889,19607,1274,0,1140,1914,479,85,0,30986496,22.4,13319746,47.1,22.4,32.9
281
  2012-02-18,96090,0,32991,3214,4847,20964,0,223,6822,2096,21570,527,0,651,1739,375,71,0,30093950,24.3,10683624,30.9,24.3,29.7
282
  2012-02-19,97314,0,38618,3451,5213,17933,0,288,7463,2116,18617,640,0,707,1788,380,100,0,30842576,24.3,11858980,23.2,24.3,36.4
283
+ 2012-02-20,106293,0,40708,4649,6664,19749,0,361,8433,2422,19125,873,0,906,1831,481,91,0,33501533,23.8,13311814,22.8,23.8,29.6
284
+ 2012-02-21,134873,0,50271,6095,9925,26398,0,657,10832,3250,22382,1060,0,1186,2109,590,118,0,43643652,27.4,16886281,48.4,27.4,0.0