tamnd commited on
Commit
07810b1
·
verified ·
1 Parent(s): 38467d8

Add 2011-12-12 — 86.8K 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 **2011-12-11** (223 days), totaling **12,713,052 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.2 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,129,322 events in 7021 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 214
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 241
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 327
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 387
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 455
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 622
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
- 21:00 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 60.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 12.7M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 223 | 12,713,052 | 57,009 | 2.4 GB | 1.2 GB | 58m47s | 46m50s | 1h44m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 669.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 333.7K
160
  ```
161
 
162
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 6,072,902 | 47.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 669,104 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 834,891 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 333,653 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,285,097 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 359,897 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,867,807 | 14.7% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 147,011 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 157,929 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 260,992 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 72,670 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 11,493 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
 
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 **2011-12-12** (224 days), totaling **12,799,838 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.2 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,132,366 events in 7053 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 136
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 215
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 243
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 288
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 328
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 389
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 456
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 625
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
+ 21:00 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 63.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 12.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 224 | 12,799,838 | 57,142 | 2.4 GB | 1.2 GB | 59m12s | 47m02s | 1h44m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 673.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 336.0K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,111,641 | 47.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 673,123 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 840,882 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 335,986 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,293,199 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 362,093 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,889,252 | 14.8% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 147,860 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 159,005 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 262,487 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 73,124 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,580 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d944416552c1080c990204d07e206a5dd2d0cfebe580385cf58ef8ff0bc92ddf
3
+ size 157845
data/creates/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:29502ce06e314a249b4d65019b7ca32e4e2fa85bc57e1056419cdde5a3c8d5da
3
+ size 427015
data/deletes/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65b348f5dd4c10ea58a07cd7cabacc1426b2eee3a5b83f93f0b17fa2cb2448aa
3
+ size 31092
data/forks/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a758de095a410ebdf58a22da17e64ca1add086285076b20dbb3207fd1104a7c
3
+ size 201293
data/issues/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e069c83b41092e4c4dd8de3d00d10c9301f329998ef4133e0890bc4afa7a30a1
3
+ size 872051
data/members/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1547f6bac0d8cc6700f1ff19f07e8f9b2c63b1463e19f58917c719aeeb95f02a
3
+ size 19932
data/public_events/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9670b3698346dc1ee18ba30f99a2ce0bf50dec3d094491f20633630bc3f3482
3
+ size 6144
data/pull_requests/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e80a1440843432b22633d5d5c99253adec623c82360989ee740c7bd7972bf20
3
+ size 428910
data/pushes/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19fa083629fc566489889b7091b702e257b2e97cb6f5c8c7d30d27f89e7dbf67
3
+ size 8534919
data/stars/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e3d2aec0e9a9762c5bcda5644aff8c2f440f095c56c486f4bde86becd22f737
3
+ size 242167
data/wiki_pages/2011/12/12.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:280cab72ada4ebdc7dc926e664764eff027b988ca889a2dd9c07f2f77b01b5cc
3
+ size 116599
stats.csv CHANGED
@@ -221,4 +221,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
221
  2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,11.4,10071428,20.7,11.4,85.8
222
  2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,11.2,10601648,21.7,11.2,28.0
223
  2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,35.3
224
- 2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,9.9,7422219,16.8,9.9,0.0
 
 
221
  2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,11.4,10071428,20.7,11.4,85.8
222
  2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,11.2,10601648,21.7,11.2,28.0
223
  2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,35.3
224
+ 2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,9.9,7422219,16.8,9.9,35.3
225
+ 2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,11.8,11037967,24.2,11.8,0.0