tamnd commited on
Commit
3530b4d
·
verified ·
1 Parent(s): f227e3a

Add 2011-12-27 — 62.6K 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-26** (238 days), totaling **13,777,774 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.7 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,162,541 events in 7294 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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 234
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 231
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 250
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 295
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 472
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 638
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.3K
98
- 21:00 ████████░░░░░░░░░░░░░░░░░░░░░ 93.1K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -136,27 +136,27 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 238 | 13,777,774 | 57,889 | 2.7 GB | 1.3 GB | 1h04m | 49m40s | 1h52m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 6.5M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 719.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 363.2K
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,537,316 | 47.4% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 719,484 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 908,108 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 363,223 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,384,981 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 388,561 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 2,134,285 | 15.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 163,030 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 169,538 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 280,237 | 2.0% | Wiki page edits |
560
- | `members` | MemberEvent | 76,997 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 12,408 | 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-27** (239 days), totaling **13,840,388 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.7 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,167,016 events in 7323 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 201
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 182
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 232
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 252
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 296
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 403
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 638
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.3K
98
+ 21:00 ████████░░░░░░░░░░░░░░░░░░░░░ 97.6K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 239 | 13,840,388 | 57,909 | 2.7 GB | 1.3 GB | 1h05m | 49m50s | 1h52m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 6.6M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 722.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 364.7K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,563,984 | 47.4% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 722,846 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 912,478 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 364,685 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,392,018 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 390,224 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 2,149,945 | 15.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 163,665 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 170,057 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 281,231 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 77,186 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 12,463 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b3de9a1fc2403554085ebe05b757514eea2528cb2730a3fd1204882fb3d2340
3
+ size 90132
data/creates/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c173bc7e6ac0b274d130cb4eccddcf6acd7abc411ab256fdcbbf78d6a5e9e1b5
3
+ size 329138
data/deletes/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e86eab5abe9b502d5e85f48d249152b63e7f0873788597c67e1737d97b307ae9
3
+ size 22964
data/forks/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40d2388b29b819d721353c8becc77133fa3917c06942bf3fac041a5182fa772f
3
+ size 158644
data/issues/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc85d00045f218520f185d6e26c021abd0ef278f40370c93f8a73d2a580e22f3
3
+ size 742748
data/members/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5444f204339ed6ba4550ffcac95a8201a65287532e5738f65ac3e3092570bbd
3
+ size 11698
data/public_events/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:934fba838c6cf69892de9b208122eb9604c2d8936890999e43663d7945ae27d5
3
+ size 4642
data/pull_requests/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f1ad8e9b84e19972cf59e5988c832720d9ca6324d05d0a2443e53cba69b7904
3
+ size 287122
data/pushes/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65811eed23b61d741b09ff0ec14f46508372ee025d70d27000cd23132af545ab
3
+ size 5860461
data/stars/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:189bbed833a5f9b51d898a62b8244f53f612dc999676482fd7aa0bd8d0d810ee
3
+ size 205122
data/wiki_pages/2011/12/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:126f7134d76749009d19ca963236691b73a78d79dabad0e481f2c23216aac19b
3
+ size 60677
stats.csv CHANGED
@@ -236,4 +236,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,21.9
238
  2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,5.8,4314914,19.4,5.8,25.3
239
- 2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.8,5607691,17.2,6.8,0.0
 
 
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,21.9
238
  2011-12-25,38010,0,15500,1387,1588,738,0,0,3586,944,12968,254,0,404,498,114,29,0,7795657,5.8,4314914,19.4,5.8,25.3
239
+ 2011-12-26,43161,0,19835,1877,2627,1070,0,0,5003,1259,9712,371,0,398,836,147,26,0,10618201,6.8,5607691,17.2,6.8,36.6
240
+ 2011-12-27,62614,0,26668,3362,4370,1462,0,0,7037,1663,15660,635,0,519,994,189,55,0,15105587,9.6,7773348,19.5,9.6,0.0