tamnd commited on
Commit
742aca9
·
verified ·
1 Parent(s): 6ef99ca

Add 2011-12-10 — 61.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-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,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,125,083 events in 6983 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
@@ -80,22 +80,22 @@ Events from today are captured in near-real-time from the GitHub Events API and
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,12 +131,12 @@ duckdb.sql("""
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,14 +149,14 @@ duckdb.sql("""
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,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
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
 
 
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-10** (222 days), totaling **12,654,862 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,126,848 events in 7004 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
 
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 132
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 213
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 239
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 284
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 326
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 387
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 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 57.7K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
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 | 222 | 12,654,862 | 57,003 | 2.4 GB | 1.2 GB | 58m31s | 46m40s | 1h43m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 666.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 332.5K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,046,031 | 47.8% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 666,754 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 831,575 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 332,506 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,279,642 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 358,444 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,852,752 | 14.6% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 146,367 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 157,268 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 259,978 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 72,479 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,460 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c056376fdcf81a477763d86759214bf97ebdc9827939fcbb8ff6e6b7cd80619
3
+ size 85593
data/creates/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c7224c142128f09affac068e32ddefa56ebecb5422cb0d9ef3c7ae01d6615686
3
+ size 316726
data/deletes/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f6322a4f2b4b6b09375cdf7682d421b6f543b94033ffbfb19e6b98b45417c96
3
+ size 22044
data/forks/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e49c2464142fc8d0962aeb82b2f04a7f5df6f10282bd80823ccda324d1db5246
3
+ size 153071
data/issues/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ada4da1a1e8155e62446f766e462c647592837e3e8870155673ab3e2ea385839
3
+ size 639905
data/members/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a4449cf1f60f798345ec9b28e223530a98b32d1b87b6b8d32003b3892216d23
3
+ size 14222
data/public_events/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74e5ee451e413b14d6b594bbeb3d8a24c46eb2b904aa426fc60087d7a7273c77
3
+ size 4495
data/pull_requests/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5dbfe36ca3679be461b1821a25a385e9c2ac55e1afe428ecd2373cd7954e53cf
3
+ size 270189
data/pushes/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93b56d548016084adb692c84af744d5fc35c05a7928716d1bd16342210fc91d1
3
+ size 5851672
data/stars/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:80c48a3b36f713e0c15a8d8cf4b63e9b60ba2ab0e4bff456888d8ab0926dbeae
3
+ size 166624
data/wiki_pages/2011/12/10.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f6566fa11a6f68dd0254bc3e2b7141ead4bbb7bc8e0f2f59701a5571c25c29c
3
+ size 57382
stats.csv CHANGED
@@ -219,4 +219,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
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,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,0.0