tamnd commited on
Commit
37077a5
·
verified ·
1 Parent(s): 3e93985

Add 2011-09-08 — 65.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-09-07** (149 days), totaling **7,695,020 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 1.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 680.7 MB 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,30 +71,30 @@ 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** — 803,210 events in 4812 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 158
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 137
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 196
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
- 14:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 292
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 376
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 493
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
97
- 20:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 40.2K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 7.7M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 149 | 7,695,020 | 51,644 | 1.3 GB | 680.7 MB | 33m37s | 28m37s | 1h06m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 391.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 193.1K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 800.3K
167
  ```
168
 
169
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 3,669,292 | 47.7% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 391,007 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 451,003 | 5.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 193,098 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 800,258 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 215,618 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 933,087 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 88,065 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 101,259 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 162,865 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 42,920 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 6,942 | 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-09-08** (150 days), totaling **7,760,611 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 1.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 686.9 MB 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** — 806,499 events in 4838 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 158
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 293
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 379
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 496
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
97
+ 20:00 ███░░░░░░░░░░░░░░░░░░░░░░░░░░ 43.5K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 7.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 150 | 7,760,611 | 51,737 | 1.4 GB | 686.9 MB | 33m55s | 28m47s | 1h06m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 395.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 195.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 808.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,701,555 | 47.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 395,022 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 456,234 | 5.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 195,243 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 808,238 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 217,674 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 941,386 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 88,941 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 102,166 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 164,195 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 43,338 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 7,013 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c81972c3af1efc1eb8becf953457e19e5a146d867d7f9628f8eac8a05bcc7ae
3
+ size 41713
data/creates/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9df20d162b2d6b3d452e5132854769da856f69b643bb98031da6b176c0621cc
3
+ size 345113
data/deletes/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02505e34f04777ba1f792223de9052c4d153fa3b3addc6d1e75f3cef3cab5cee
3
+ size 30652
data/forks/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:91e1f54d0bf83dcc573f5bc5a4047efd88bde757e1479490a43bca425ba78600
3
+ size 103762
data/issues/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c73f364bdfab284dbafb77fa0ad176b9652391955d8cfa0075c126878a122860
3
+ size 125654
data/members/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe876eda481d5eab93c2e053c4785e52878b7623b8da03c86dcbfa2155bb8df7
3
+ size 20314
data/public_events/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc652b869cd43e198c1158984ae680439f7afa4c512565935c2520c040fbab67
3
+ size 5548
data/pull_requests/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e380481717b44d7b6446cd023e0217ac06a7f2aa96c7b31047b75df36f15670
3
+ size 125082
data/pushes/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95956a02ccc5473bc5d3592c739b89d081fc6f902f2153befeb5b4972c208b0f
3
+ size 5357791
data/stars/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f2d36f0ad6b12cff075db29be431c3f16dc2ec346a8d449fd6bfe25d8d0950d
3
+ size 231961
data/wiki_pages/2011/09/08.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97a4fa331b9a4dd4d6f81dd2f5527fdf5e4be35bbc5af0c387addb05bee9ffa1
3
+ size 104180
stats.csv CHANGED
@@ -147,4 +147,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
147
  2011-09-04,43027,0,22469,2418,3148,1122,0,0,4776,1286,5665,425,0,598,892,183,45,0,7784069,5.5,4145947,19.1,5.5,25.8
148
  2011-09-05,60870,0,29469,3549,5191,1758,0,0,8294,1879,7577,671,0,799,1278,353,52,0,10812183,7.8,5923548,16.9,7.8,31.5
149
  2011-09-06,64897,0,31770,3931,5558,2105,0,0,8114,2005,7866,706,0,897,1491,375,79,0,11942825,7.8,6347701,25.4,7.8,31.2
150
- 2011-09-07,68141,0,33910,3958,5455,2193,0,0,8286,2205,8560,759,0,983,1369,380,83,0,12682680,9.0,6983329,20.4,9.0,0.0
 
 
147
  2011-09-04,43027,0,22469,2418,3148,1122,0,0,4776,1286,5665,425,0,598,892,183,45,0,7784069,5.5,4145947,19.1,5.5,25.8
148
  2011-09-05,60870,0,29469,3549,5191,1758,0,0,8294,1879,7577,671,0,799,1278,353,52,0,10812183,7.8,5923548,16.9,7.8,31.5
149
  2011-09-06,64897,0,31770,3931,5558,2105,0,0,8114,2005,7866,706,0,897,1491,375,79,0,11942825,7.8,6347701,25.4,7.8,31.2
150
+ 2011-09-07,68141,0,33910,3958,5455,2193,0,0,8286,2205,8560,759,0,983,1369,380,83,0,12682680,9.0,6983329,20.4,9.0,29.3
151
+ 2011-09-08,65591,0,32263,4015,5231,2145,0,0,7980,2056,8299,876,0,907,1330,418,71,0,12136006,9.2,6491770,17.8,9.2,0.0