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

Add 2011-12-25 — 38.0K 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-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,7 +71,7 @@ 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,673 events in 7278 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
@@ -79,23 +79,23 @@ Events from today are captured in near-real-time from the GitHub Events API and
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
  ```
@@ -136,7 +136,7 @@ duckdb.sql("""
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,14 +149,14 @@ duckdb.sql("""
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,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
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
 
 
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-25** (237 days), totaling **13,734,613 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,162,541 events in 7294 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
 
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
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 237 | 13,734,613 | 57,951 | 2.6 GB | 1.3 GB | 1h04m | 49m33s | 1h51m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 717.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 362.2K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,517,481 | 47.5% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 717,607 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 905,481 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 362,153 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,379,978 | 10.0% | Repository stars |
555
+ | `forks` | ForkEvent | 387,302 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 2,124,573 | 15.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 162,659 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 169,140 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 279,401 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 76,850 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 12,382 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c478e9485bca2c1c5bea5175b3382559347b66c396960a9d26e3e48f9a92c45
3
+ size 69475
data/creates/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d60cce4e2960b7d5f5211a7253b572fa6e16d6ebd15d4f23ebf48504e70e760
3
+ size 212506
data/deletes/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8720edfd73dba27ed4cc4736fb4cc5883b95732d0b70d5fcd71db8bc65c08d99
3
+ size 12181
data/forks/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9064d09f2ba3e6f88007816941e030c3bdd138d48cbc503ae9fafbcf66bf9d13
3
+ size 101654
data/issues/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88415aba538b096a99e46b58dad576a29aa737f7b2165b413d784c7a8704fa36
3
+ size 315451
data/members/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0853bb7491fa9f53927e132469a19f398494132d87e3bd5ae628c6b58039377
3
+ size 7971
data/public_events/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2252b01a9ebbd7b0781174f92426f0adb0ac9d258773b8493400e32a8aa393e
3
+ size 3585
data/pull_requests/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c89e34332f8893657724a99b88a3e1c3adb4c20abd01a00a292f77ee561eb7e
3
+ size 154934
data/pushes/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e26dd2827acf53ff49563a864164413ed239e35db1418a066032cf8487f21f50
3
+ size 3284517
data/stars/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c1ea065bdb8addbd5223d5c35d55989e3914653d45d1631c8729980abcaa799
3
+ size 108424
data/wiki_pages/2011/12/25.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:15e68ba1f9052849c45278944771519090d6920e87d502c127fbaafee6e5a43c
3
+ size 44216
stats.csv CHANGED
@@ -234,4 +234,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
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,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,0.0