tamnd commited on
Commit
87fbe49
·
verified ·
1 Parent(s): 90da5c7

Add 2011-10-04 — 80.4K 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-03** (175 days), totaling **9,282,718 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 828.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,24 +71,24 @@ 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,001 events in 5195 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 142
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 112
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 96
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 102
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 118
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
90
- 13:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 247
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 309
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 395
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 521
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 9.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 175 | 9,282,718 | 53,044 | 1.6 GB | 828.7 MB | 42m00s | 31m40s | 1h18m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 479.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 239.4K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 969.9K
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,471,315 | 48.2% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 479,197 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 567,308 | 6.1% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 239,436 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 969,874 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 264,263 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,164,701 | 12.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 108,479 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 120,395 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 196,692 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 52,918 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 8,534 | 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-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
 
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
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 248
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 310
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 395
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 521
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 9.4M
135
  ```
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
 
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
 
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
 
data/commit_comments/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fe66bf03192a321059b35b47cf1a285bd4cf087cd495993bf17695788a798b6
3
+ size 47647
data/creates/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6097a9aecd1ec716f37eeba6d503e4942b3e0f837dfd3aab342d81d98c1f1233
3
+ size 374681
data/deletes/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea117a3a0bfdbf2e3eaba7726ab9de35330f848dc4baf1677e111804cf23b133
3
+ size 28941
data/forks/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:432cd09d58d1b7f958e4f597f47d47f219974a446695a3eebb323ebfd3871a05
3
+ size 108829
data/issues/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e41976cb10b74eb6fe8698dee5a9c7367130e2f8a37a375a6ba85c3121270dd6
3
+ size 132887
data/members/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:740801cf61f0567785874124049585627a8ef847bc0859e7b0f655c4b44443c3
3
+ size 24983
data/public_events/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca4d122992aa30d8bd4e1d9332471679fcd15aa754018d2aacd8f7670315e116
3
+ size 5849
data/pull_requests/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:12da69f432c9806fc434081cf54ea83a70c6ab965779f977952207cf14f18778
3
+ size 132293
data/pushes/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6d5f8881b7aeb83d1571ed5378ca506a1628abc79a89bd0495e355a65e4a2bf
3
+ size 6350417
data/stars/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6df2a63b359ef609fef3a28c64c9553dd95367c04c0d630815131e486438ab27
3
+ size 225131
data/wiki_pages/2011/10/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e019b01908aaa99ea0e792c86c43d517502ea7ff2e59d35f80d4b30bb5da95f
3
+ size 119003
stats.csv CHANGED
@@ -173,4 +173,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
173
  2011-09-30,68805,0,32614,3435,4779,2028,0,0,6732,2164,13041,1419,0,801,1353,376,63,0,11811553,7.1,6690617,21.1,7.1,22.8
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,0.0
 
 
173
  2011-09-30,68805,0,32614,3435,4779,2028,0,0,6732,2164,13041,1419,0,801,1353,376,63,0,11811553,7.1,6690617,21.1,7.1,22.8
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