tamnd commited on
Commit
d7161c9
·
verified ·
1 Parent(s): 5bd2aae

Add 2011-12-08 — 74.6K events, 11 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ 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-07** (219 days), totaling **12,432,471 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.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
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -71,25 +71,25 @@ 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,015 events in 6916 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 209
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 175
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 222
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
90
- 13:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 324
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 384
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 453
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 618
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
@@ -131,32 +131,32 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 12.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 219 | 12,432,471 | 56,769 | 2.3 GB | 1.2 GB | 57m29s | 46m09s | 1h41m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 5.9M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 653.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 326.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,945,976 | 47.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 653,748 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 814,268 | 6.5% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 326,201 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,258,676 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 352,486 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,803,481 | 14.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 143,902 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 155,075 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 256,312 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 71,485 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 11,255 | 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-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
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
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
 
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
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 6.0M
146
  ```
147
 
148
 
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
 
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
 
data/commit_comments/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7218d759f3cc8b91ab6cabb1a5592da2c2ee40c1f84dced43de4d95aa2682f68
3
+ size 122883
data/creates/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c8434c778945ec2d4bb1bf26d8a9921e75914c91a2c2843eed4d62d78259ede7
3
+ size 350732
data/deletes/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:843b94389ee444ce628a8996ea498672fe89d0349c78ad3826e8baba5c808e23
3
+ size 27249
data/forks/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bae8676e179a13794943e76ec6195362b89b0fa63203a04e098c48634ac8a2b
3
+ size 216845
data/issues/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d56fcca69c76154b1cb0122051983624d07aef079a82d18a635d9b2b3f4b276
3
+ size 1024861
data/members/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba31d4473be33de9ea52e211bc414e973ed382fcf8fd01b346af528951e42e9a
3
+ size 18058
data/public_events/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9aacdab09f3d25bed13207e2de8f30b9f95b7fe53709280685a89d8772b15e49
3
+ size 5656
data/pull_requests/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02004380eca626c6a1cf1f840c5835887e841c3298fe80f2d6074f6b301c81ea
3
+ size 424099
data/pushes/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:690e14561993d14bf44dadbd05324b5d432266958b75078c373e2a76d7525901
3
+ size 7548101
data/stars/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27d6d837052fd916e37f6a3f465cc8daf3c5b8f891f2e07a758e90328c96719e
3
+ size 226659
data/wiki_pages/2011/12/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54d9134fe5d1cd19034762bbc8db96209aeb7feefaf35e410823cf8237eef960
3
+ size 106285
stats.csv CHANGED
@@ -217,4 +217,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
217
  2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,9.1,8259169,19.1,9.1,25.7
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,0.0
 
 
217
  2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,9.1,8259169,19.1,9.1,25.7
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