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

Add 2012-02-20 — 106.3K 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-19** (281 days), totaling **17,227,000 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.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,23 +71,23 @@ 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,369,813 events in 8919 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 285
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 264
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 165
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 284
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 320
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 401
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 459
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 533
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 747
@@ -96,7 +96,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
96
  19:00 █████████████████████████████░ 316.4K
97
  20:00 ████████████████████████████░░ 304.5K
98
  21:00 ████████████████████████░░░░░░ 263.7K
99
- 22:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░░ 35.3K
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
102
 
@@ -132,13 +132,13 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 3.1M
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 | 38 | 3,130,856 | 82,390 | 799.1 MB | 383.5 MB | 17m00s | 16m32s | 21m08s |
142
 
143
 
144
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 150.7K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
- 2012 ██████████░░░░░░░░░░░░░░░░░░░░ 129.6K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 311.4K
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,075,885 | 46.9% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 887,819 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,154,381 | 6.7% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 500,485 | 2.9% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 1,503 | 0.0% | Line-level PR comments |
561
- | `stars` | WatchEvent | 1,729,436 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 484,937 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 2,891,305 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 197,412 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 207,542 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 348,888 | 2.0% | Wiki page edits |
567
- | `members` | MemberEvent | 92,265 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 15,536 | 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-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
 
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
 
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
 
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
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 155.4K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ██████████████████████████████ 370.9K
164
+ 2012 ████████████░░░░░░░░░░░░░░░░░░ 149.4K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ██████░░░░░░░░░░░░░░░░░░░░░░░░ 319.9K
173
  ```
174
 
175
 
 
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
 
data/commit_comments/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62f2d6877519483d2f5d66b6b40429a68584f97e0adce01df6af84b8328220ec
3
+ size 140467
data/creates/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e507da488cc4acfa43021c6919acef9e9aabe68c4482cf6c3436597a52776029
3
+ size 477041
data/deletes/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9230667f672e91dd36855c82339122589fed7087c2d06954320dde664d7cd8b4
3
+ size 29686
data/forks/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4713b706961d032e21999ca614e7ae292bea0ac0cf8748cbe04d560133838ab
3
+ size 224266
data/issues/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2ea759d70c6045c85ada63df61c24606e359c6b53e3593d3e6cc7b53adc96bf
3
+ size 1045362
data/members/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40049c7ec5dd989fc9d05a5c2f2e58326ea5853a0b056ed240ae1583e66706f1
3
+ size 23862
data/public_events/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f115e3abaa9db0ceb123f42267d8f9bd206c039b31c5e4373261c1685c71944
3
+ size 6429
data/pull_requests/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22f1cc9e7becc1fd2d2f5e12ec4e10e06b6b6a35253d8c58abf7424855102de0
3
+ size 2229786
data/pushes/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3d294a7cfbf3d9f8b6523a783570ff2c85fce244d3238ddbf01648124941301
3
+ size 8775320
data/stars/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3ee29d953839b8b7692a620d2c616e30763f3315d50c7fc93d8c1b72aa2c841
3
+ size 249596
data/wiki_pages/2012/02/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afe7a9b04d34fc88ee4df3afe655afac86dbbae1e84c75e78220ef4517005c0d
3
+ size 109999
stats.csv CHANGED
@@ -279,4 +279,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
279
  2012-02-16,93342,0,42061,4445,7203,2653,0,434,9493,2690,19754,900,0,999,2159,469,82,0,25355997,14.8,11870527,48.0,14.8,38.7
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,0.0
 
 
279
  2012-02-16,93342,0,42061,4445,7203,2653,0,434,9493,2690,19754,900,0,999,2159,469,82,0,25355997,14.8,11870527,48.0,14.8,38.7
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