tamnd commited on
Commit
40cffdc
·
verified ·
1 Parent(s): 87fbe49

Add 2011-10-05 — 82.0K 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-10-04** (176 days), totaling **9,363,123 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 835.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,18 +71,18 @@ 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** — 871,033 events in 5211 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 97
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 102
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 120
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
@@ -136,34 +136,34 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 176 | 9,363,123 | 53,199 | 1.6 GB | 835.9 MB | 42m24s | 31m49s | 1h19m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 4.5M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 483.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 241.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 977.1K
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,516,038 | 48.2% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 483,187 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 572,976 | 6.1% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 241,748 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 977,104 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 266,432 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,175,066 | 12.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 109,219 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 121,382 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 198,277 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 53,477 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 8,611 | 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-10-05** (177 days), totaling **9,445,171 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 843.3 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** — 871,056 events in 5221 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 186
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 169
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 98
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 102
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 177 | 9,445,171 | 53,362 | 1.6 GB | 843.3 MB | 42m50s | 31m58s | 1h19m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 4.6M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 487.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 243.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 983.9K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 4,564,340 | 48.3% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 487,070 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 578,244 | 6.1% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 243,894 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 983,850 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 268,819 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,184,375 | 12.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 110,176 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 122,314 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 199,862 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 53,911 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 8,710 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:716ae6add8d233535f920ed20bfb70761e2298a046b30ebf7ea59190ce09a58d
3
+ size 46248
data/creates/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d541b48b0691f55c296d788bb21250cc1b8bd05a0249e41397ddeff41b27eb85
3
+ size 364045
data/deletes/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9c19333460d9de3bfa115ca080b901193b9137c6cec77613b9de888d998b394
3
+ size 29769
data/forks/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b967820d46e18da0699bf45f72b82fb834be4d30a16ae03f9b9336602d8f82a2
3
+ size 115470
data/issues/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04164c48dbb5775c47192a8301d9bacfadfca7c9302c978f095c320697f1f667
3
+ size 129026
data/members/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72fdd45372b1a2b5f2c68a3eb4a212ab92718d9582afdbcf0dd0edcc148823de
3
+ size 21232
data/public_events/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2467d8d21d8fff5396a6be292b2fdfcd3ed1b112b801b776e1bd83bd79046a4
3
+ size 6685
data/pull_requests/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:962241b29a818d7e101e3f1bfcf7a82e7deab1dc98326cef8271f7d13184be8a
3
+ size 126349
data/pushes/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1136b565b0c211645f067969af2ec24a1fa239d266846eeecf9f2f4854dd525c
3
+ size 6657475
data/stars/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48a5772b8dbba36f70624f8d521dc668549ea44befac153a458031cf33aa1090
3
+ size 203253
data/wiki_pages/2011/10/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a950de14c0100d958e9ac7633c321fbd353a1253604beb8f7970a8fadab3f5a0
3
+ size 85470
stats.csv CHANGED
@@ -174,4 +174,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
174
  2011-10-01,42038,0,21850,2209,2741,1098,0,0,4834,1367,5635,353,0,551,1038,326,36,0,7364176,5.8,4288347,14.8,5.8,26.0
175
  2011-10-02,48992,0,25672,3364,3749,1149,0,0,5012,1335,6125,376,0,568,1302,298,42,0,8337427,6.6,4875313,18.1,6.6,21.4
176
  2011-10-03,69675,0,32834,5829,7410,2006,0,0,7111,1935,8699,631,0,893,1764,471,92,0,11764755,9.2,6412189,15.5,9.2,33.6
177
- 2011-10-04,80405,0,44723,3990,5668,2312,0,0,7230,2169,10365,740,0,987,1585,559,77,0,13097541,9.1,7550661,24.0,9.1,0.0
 
 
174
  2011-10-01,42038,0,21850,2209,2741,1098,0,0,4834,1367,5635,353,0,551,1038,326,36,0,7364176,5.8,4288347,14.8,5.8,26.0
175
  2011-10-02,48992,0,25672,3364,3749,1149,0,0,5012,1335,6125,376,0,568,1302,298,42,0,8337427,6.6,4875313,18.1,6.6,21.4
176
  2011-10-03,69675,0,32834,5829,7410,2006,0,0,7111,1935,8699,631,0,893,1764,471,92,0,11764755,9.2,6412189,15.5,9.2,33.6
177
+ 2011-10-04,80405,0,44723,3990,5668,2312,0,0,7230,2169,10365,740,0,987,1585,559,77,0,13097541,9.1,7550661,24.0,9.1,20.3
178
+ 2011-10-05,82048,0,48302,3883,5268,2146,0,0,6746,2387,9309,957,0,932,1585,434,99,0,13342187,9.3,7785022,26.2,9.3,0.0