tamnd commited on
Commit
b73ff84
·
verified ·
1 Parent(s): ac6cd8c

Add 2011-09-29 — 70.3K 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-28** (170 days), totaling **8,982,885 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 800.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,11 +71,11 @@ 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** — 864,801 events in 5159 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 166
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 139
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
@@ -89,12 +89,12 @@ Events from today are captured in near-real-time from the GitHub Events API and
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 247
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 309
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 394
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 519
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 316.0K
97
- 20:00 █████████░░░░░░░░░░░░░░░░░░░░░ 101.4K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 9.0M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 170 | 8,982,885 | 52,840 | 1.6 GB | 800.7 MB | 40m30s | 31m05s | 1h16m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 4.3M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 460.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 230.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 939.0K
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 | 4,322,920 | 48.1% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 460,525 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 543,234 | 6.0% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 230,939 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 938,955 | 10.5% | Repository stars |
555
- | `forks` | ForkEvent | 255,306 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,120,962 | 12.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 105,006 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 116,656 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 189,517 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 51,022 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 8,237 | 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-29** (171 days), totaling **9,053,208 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 807.5 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** — 867,404 events in 5168 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 180
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 139
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
 
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 247
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 309
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 395
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 520
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 316.0K
97
+ 20:00 █████████░░░░░░░░░░░░░░░░░░░░░ 104.0K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 9.1M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 171 | 9,053,208 | 52,942 | 1.6 GB | 807.5 MB | 40m51s | 31m11s | 1h17m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 4.4M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 464.4K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 233.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 946.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 4,358,345 | 48.1% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 464,360 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 548,629 | 6.1% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 233,155 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 946,185 | 10.5% | Repository stars |
555
+ | `forks` | ForkEvent | 257,462 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,131,201 | 12.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 105,700 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 117,582 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 191,235 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 51,447 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 8,301 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc1798a6ae56201a375e8081b13f7b1d0b81b43197acb0da71dc156cebdc6c13
3
+ size 45350
data/creates/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe4b76257a8057fcb92f21de405d6ba2f2df4ba745a20872fd7e6f7c97557d0f
3
+ size 380868
data/deletes/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7644a9bf222b8ea74613fa469614a46f77f8034ad34a0c33eafa2918885c7eb8
3
+ size 27506
data/forks/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1d36b15320793fe1f16cad9beac28d16f65c9306d0c51d26b92cfbfee8b144d
3
+ size 108910
data/issues/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:945afa1b8b00e3b0ed8158b46134af8f8096418f202d9a76a53da94cad7dbd82
3
+ size 129475
data/members/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f0cbe46699cc017e74ec99cdfa42b650828efa1fe28b66fd867de77dd90ccb53
3
+ size 21217
data/public_events/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1e84695f9da99dde7cab19fccb857570f8a15a1d44ee0b88e70a417605d02a4
3
+ size 5374
data/pull_requests/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d679ffa85d53178515cc617f5d5e9447719edfbd3978e1e19a0c8add4ef15ae6
3
+ size 128185
data/pushes/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3dd89cc01c555e84454699a42a2083d51f413b34a408c0cb6ef53bb9d2e6ad6
3
+ size 5876982
data/stars/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c21e930f977cf9343318eb78bd0324acf6ea673354a1a74813e2904a41b4b00a
3
+ size 216812
data/wiki_pages/2011/09/29.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0bdf5b95db7b93c20188b06f48929014d5202851f4b9dd2bc7a6a8c2baa2ccf
3
+ size 128642
stats.csv CHANGED
@@ -168,4 +168,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
168
  2011-09-25,47205,0,24900,2370,3082,1234,0,0,5154,1365,6720,514,0,547,1065,209,45,0,8451891,5.0,4832794,16.2,5.0,28.8
169
  2011-09-26,64645,0,32747,3699,5114,2092,0,0,7129,2054,8457,657,0,745,1417,477,57,0,11717437,7.2,6603542,16.4,7.2,24.0
170
  2011-09-27,74861,0,36484,4167,5913,2393,0,0,7518,2253,9654,3461,0,1055,1392,490,81,0,12979043,5.0,7171563,18.6,5.0,26.5
171
- 2011-09-28,73365,0,36191,5635,6370,2274,0,0,7628,2198,9272,722,0,972,1591,451,61,0,13053783,5.6,7362768,18.1,5.6,0.0
 
 
168
  2011-09-25,47205,0,24900,2370,3082,1234,0,0,5154,1365,6720,514,0,547,1065,209,45,0,8451891,5.0,4832794,16.2,5.0,28.8
169
  2011-09-26,64645,0,32747,3699,5114,2092,0,0,7129,2054,8457,657,0,745,1417,477,57,0,11717437,7.2,6603542,16.4,7.2,24.0
170
  2011-09-27,74861,0,36484,4167,5913,2393,0,0,7518,2253,9654,3461,0,1055,1392,490,81,0,12979043,5.0,7171563,18.6,5.0,26.5
171
+ 2011-09-28,73365,0,36191,5635,6370,2274,0,0,7628,2198,9272,722,0,972,1591,451,61,0,13053783,5.6,7362768,18.1,5.6,20.6
172
+ 2011-09-29,70323,0,35425,3835,5395,2216,0,0,7230,2156,10239,694,0,926,1718,425,64,0,12573321,5.7,7069321,20.7,5.7,0.0