tamnd commited on
Commit
66662de
·
verified ·
1 Parent(s): d7161c9

Add 2011-12-09 — 85.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-08** (220 days), totaling **12,507,091 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,113,045 events in 6937 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 222
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 210
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 238
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 325
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 385
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 454
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 618
94
- 17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
- 21:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 44.0K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 12.5M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 220 | 12,507,091 | 56,850 | 2.4 GB | 1.2 GB | 57m50s | 46m21s | 1h41m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 659.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 328.6K
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 | 5,981,126 | 47.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 659,030 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 821,242 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 328,597 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,266,193 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 354,622 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,815,371 | 14.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 144,681 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 155,844 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 257,608 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 71,843 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 11,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-09** (221 days), totaling **12,592,991 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,125,083 events in 6983 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 238
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 284
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 326
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 386
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 455
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 620
94
+ 17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
+ 21:00 ████░░░░░░░░░░░░░░░░░░░░░░░░░ 56.0K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 12.6M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 221 | 12,592,991 | 56,981 | 2.4 GB | 1.2 GB | 58m12s | 46m32s | 1h43m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 663.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 331.1K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,018,747 | 47.8% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 663,230 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 827,186 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 331,106 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,273,972 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 356,896 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,837,330 | 14.6% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 145,554 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 156,709 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 259,025 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 72,219 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,411 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9958a5190b0f7725f7a5c4eec7200c0b7ce104a6b8c8ec32fe972b478d0bfdf3
3
+ size 136470
data/creates/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50dd1bd1904fef1a6cde4da7d9d3ded62cdc2e00970e35d4e59f175a6db5f5f3
3
+ size 444334
data/deletes/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf94810e4e485b3eea6fcf8682aed97582257040da5d09b4296949cd17253e95
3
+ size 30971
data/forks/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b54ee671a8c7306dd54d269a2fff5af92bbcdeaefe7b99c9243e1be997e18ad9
3
+ size 210466
data/issues/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebc6ae6f7060cea0832398183493d594de68ebaf35ffe1579da6426b04878d90
3
+ size 828266
data/members/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffee0a113a0166b10d10ca793532b6587d6ce28c3e5db87d8e75ca7a6f519f1f
3
+ size 19311
data/public_events/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a8e7aea0b197d9f08c2b04203b215a613a39c1d25f0ea6cd9bec152d2593f785
3
+ size 5716
data/pull_requests/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37838117898b3189109fd15dbb0138a783fa78ec26c689d8e1f05377f499d180
3
+ size 443571
data/pushes/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c104db6af9ac7574f168974fb9f900505f929f0ac99d09c8b1a04440188aa5a
3
+ size 8172586
data/stars/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f99e847d5f5809ffe2631703fabd5a6942b6744f50831c2886614361800c0eb7
3
+ size 228196
data/wiki_pages/2011/12/09.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e298e4b2a78d9308a8b78370084f5838afb083e37d22e7ed4098f37ea94b54a
3
+ size 81761
stats.csv CHANGED
@@ -218,4 +218,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
218
  2011-12-05,78067,0,37239,4033,7225,2179,0,0,8513,2158,12852,889,0,918,1588,409,64,0,20882321,11.2,10429388,20.4,11.2,26.0
219
  2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,12.4,11165296,22.9,12.4,27.7
220
  2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.0,10426536,31.6,13.0,35.6
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,0.0
 
 
218
  2011-12-05,78067,0,37239,4033,7225,2179,0,0,8513,2158,12852,889,0,918,1588,409,64,0,20882321,11.2,10429388,20.4,11.2,26.0
219
  2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,12.4,11165296,22.9,12.4,27.7
220
  2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.0,10426536,31.6,13.0,35.6
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,0.0