tamnd commited on
Commit
1b55e58
·
verified ·
1 Parent(s): 2e54ee7

Add 2011-12-24 — 51.9K 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-23** (235 days), totaling **13,644,657 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.3 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,151,645 events in 7260 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 197
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 249
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 294
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 402
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 470
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 634
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
- 21:00 ███████░░░░░░░░░░░░░░░░░░░░░░░ 82.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 13.6M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 235 | 13,644,657 | 58,062 | 2.6 GB | 1.3 GB | 1h03m | 49m20s | 1h51m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 714.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 360.5K
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,484,155 | 47.5% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 714,530 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 901,569 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 360,473 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,372,352 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 385,278 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 2,089,315 | 15.3% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 161,950 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 168,315 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 278,163 | 2.0% | Wiki page edits |
560
- | `members` | MemberEvent | 76,623 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 12,328 | 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-24** (236 days), totaling **13,696,603 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.3 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,151,673 events in 7278 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 182
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 230
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 249
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 295
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 339
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 402
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 471
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 638
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
+ 21:00 ███████░░░░░░░░░░░░░░░░░░░░░░░ 82.3K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 13.7M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 236 | 13,696,603 | 58,036 | 2.6 GB | 1.3 GB | 1h04m | 49m27s | 1h51m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 716.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 361.4K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,501,981 | 47.5% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 716,220 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 903,893 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 361,415 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,376,392 | 10.0% | Repository stars |
555
+ | `forks` | ForkEvent | 386,358 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 2,111,605 | 15.4% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 162,405 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 168,736 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 278,903 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 76,736 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 12,353 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:950e1ed8099c54dd1e512214bb4e104d045c3e278ab4178a612578aac8bda78e
3
+ size 75650
data/creates/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:212e3d0d0c43f3f870e918908e55c31f98c17f92f78378be7e7d25c7005edb5b
3
+ size 277592
data/deletes/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0531f60034ddf933f12995fe3bd68784129c23928c076e6f706224ec93a8bfc4
3
+ size 15355
data/forks/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1ced247ba63cff99fd510864673002f45e4bd308f8231769de567ac5c0868ea
3
+ size 109675
data/issues/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0de640b505322855038dab3e3dea8c1fb4fe640bb3e4980d0acf97483547066b
3
+ size 373031
data/members/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fb4c82ba02c38f376909cbd157289ca76f5a1be7c3b35b5e45428cd7bbec986
3
+ size 8512
data/public_events/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:969ebbd92c15c195144c302db72844bdc742e999d3776f0d721875c3307a7831
3
+ size 3583
data/pull_requests/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9715c7f376c53fb3e8bd0be99e4334aee8907465bc8b5f325924790d4fe7fa6
3
+ size 191764
data/pushes/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19faf0172488855ecb44ebdc9e7c45db36ec4375bba6b341b14aad70f55e7902
3
+ size 3817127
data/stars/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dea481e9bcf045e5e21ba6209313a000557117d03e8baec477b37f62cd113dd3
3
+ size 122394
data/wiki_pages/2011/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bc29c7ed242f5ff0b0a2ccb18d81ddb8d7435e49fd7e7d41c4df3d2a2d5405a
3
+ size 59144
stats.csv CHANGED
@@ -233,4 +233,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
233
  2011-12-20,86961,0,35812,3891,5928,2446,0,0,7971,2403,22158,3619,0,916,1383,366,68,0,21150099,14.7,10229485,37.3,14.7,31.4
234
  2011-12-21,74548,0,33484,3263,5199,2390,0,0,7301,2184,17267,894,0,888,1269,334,75,0,19581301,12.7,9589768,26.9,12.7,32.8
235
  2011-12-22,79137,0,33179,5712,7410,2254,0,0,8273,2105,17047,795,0,754,1275,273,60,0,20210094,15.8,9661982,21.3,15.8,74.7
236
- 2011-12-23,65938,0,29274,3020,4152,1836,0,0,7068,1777,15976,775,0,668,1109,225,58,0,16527427,11.2,8339256,24.2,11.2,0.0
 
 
233
  2011-12-20,86961,0,35812,3891,5928,2446,0,0,7971,2403,22158,3619,0,916,1383,366,68,0,21150099,14.7,10229485,37.3,14.7,31.4
234
  2011-12-21,74548,0,33484,3263,5199,2390,0,0,7301,2184,17267,894,0,888,1269,334,75,0,19581301,12.7,9589768,26.9,12.7,32.8
235
  2011-12-22,79137,0,33179,5712,7410,2254,0,0,8273,2105,17047,795,0,754,1275,273,60,0,20210094,15.8,9661982,21.3,15.8,74.7
236
+ 2011-12-23,65938,0,29274,3020,4152,1836,0,0,7068,1777,15976,775,0,668,1109,225,58,0,16527427,11.2,8339256,24.2,11.2,27.8
237
+ 2011-12-24,51946,0,17826,1690,2324,942,0,0,4040,1080,22290,455,0,421,740,113,25,0,9635826,7.5,5053827,22.4,7.5,0.0