tamnd commited on
Commit
91ce78b
·
verified ·
1 Parent(s): 4b4958d

Add 2011-12-03 — 62.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-02** (214 days), totaling **12,062,217 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.1 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,23 +71,23 @@ 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,109,005 events in 6829 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 182
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 131
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 199
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 232
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 273
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 318
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 382
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 451
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 614
@@ -95,7 +95,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.1K
98
- 21:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░��40.1K
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 | 214 | 12,062,217 | 56,365 | 2.3 GB | 1.1 GB | 55m37s | 45m15s | 1h38m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 636.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 316.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 | 5,771,591 | 47.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 636,631 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 788,634 | 6.5% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 316,190 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,223,142 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 342,206 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,723,832 | 14.3% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 140,094 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 150,802 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 249,060 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 69,474 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 10,955 | 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-03** (215 days), totaling **12,125,111 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.1 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,110,860 events in 6845 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 181
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 131
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 199
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 234
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 280
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 321
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 382
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 451
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 614
 
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.1K
98
+ 21:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 41.9K
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 | 215 | 12,125,111 | 56,395 | 2.3 GB | 1.1 GB | 55m55s | 45m24s | 1h39m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 639.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 317.6K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,800,388 | 47.8% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 639,685 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 792,335 | 6.5% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 317,627 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,228,677 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 343,990 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,739,420 | 14.3% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 140,687 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 151,347 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 250,405 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 69,938 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,006 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55539edac21b57454bd9ee957fbce46d0a1917636dbe2e52993c75d0a469d552
3
+ size 88534
data/creates/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba83db5b5fc48ccbba3598da2e4c690bd96394d5bfc70b631f83450611f1fb22
3
+ size 324272
data/deletes/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99cb3098ed1057975eee08391d49177a356780dc026f4bcd46ef3d3bccc65169
3
+ size 20391
data/forks/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c94d106f38d207d2c80fb3acb7a1b6e46617716cda13fd270ecfc221ece511d
3
+ size 166863
data/issues/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fab7de302d28b7853ee3109b8f097f9ea0d333dc5b73a2ff5f845481af69b548
3
+ size 629492
data/members/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a4bcfb5c749c780361b69934fae38e1bafef89bb1f98ec5121894652868067d
3
+ size 22127
data/public_events/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11869147e88acf1957ecf2ea91ae81d95b19f680b575fd3c165a50dc3f2024c4
3
+ size 4640
data/pull_requests/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b118de7ead569a46fbd4e4384501647d9c4f24ffb17e6f295d20c11c7d5c557
3
+ size 263682
data/pushes/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:348b70a2240882ff5f9c9be068e4f3e366ee3b06aa7e39bd1787a5812e782d2b
3
+ size 5837288
data/stars/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45421229c92b8e4f9f2b258ecd7a0862712b0f4310e618fb5c2355c8feac9b23
3
+ size 164647
data/wiki_pages/2011/12/03.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01a82325226e0e12a7ed4cc90c35fbef83bcec43ce8729f7bd927939b60660ee
3
+ size 75836
stats.csv CHANGED
@@ -212,4 +212,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
212
  2011-11-29,101701,0,34260,12898,23319,2088,0,0,6979,2066,16529,609,0,1019,1414,463,57,0,26204872,17.9,11151899,20.2,17.9,27.9
213
  2011-11-30,78831,0,38026,5076,6064,2400,0,0,7511,2361,13601,730,0,907,1599,483,73,0,21758401,11.2,10750994,18.2,11.2,29.5
214
  2011-12-01,90051,0,42363,4201,6255,2941,0,0,8927,2438,18559,822,0,1020,1896,552,77,0,24307839,10.9,12132867,20.7,10.9,25.1
215
- 2011-12-02,85270,0,37777,3527,5376,2372,0,0,7654,2325,22306,1042,0,907,1504,418,62,0,21154484,9.1,10550313,19.7,9.1,0.0
 
 
212
  2011-11-29,101701,0,34260,12898,23319,2088,0,0,6979,2066,16529,609,0,1019,1414,463,57,0,26204872,17.9,11151899,20.2,17.9,27.9
213
  2011-11-30,78831,0,38026,5076,6064,2400,0,0,7511,2361,13601,730,0,907,1599,483,73,0,21758401,11.2,10750994,18.2,11.2,29.5
214
  2011-12-01,90051,0,42363,4201,6255,2941,0,0,8927,2438,18559,822,0,1020,1896,552,77,0,24307839,10.9,12132867,20.7,10.9,25.1
215
+ 2011-12-02,85270,0,37777,3527,5376,2372,0,0,7654,2325,22306,1042,0,907,1504,418,62,0,21154484,9.1,10550313,19.7,9.1,29.4
216
+ 2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,8.8,7597772,18.6,8.8,0.0