tamnd commited on
Commit
948e682
·
1 Parent(s): eea7cba

Add 2011-04-22 — 40.8K 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-04-21** (46 days), totaling **1,927,317 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 363.9 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 192.0 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,10 +71,10 @@ 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** — 146,210 events in 893 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 29
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22
@@ -88,11 +88,11 @@ Events from today are captured in near-real-time from the GitHub Events API and
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 40
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 33
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 51
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 72
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
94
  17:00 ██████████████████████████████ 119.9K
95
- 18:00 ██████░░░░░░░░░░░░░░░░░░░░░░░ 25.5K
96
  19:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
97
  20:00 ░░░░░░░░��░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 1.9M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 46 | 1,927,317 | 41,898 | 363.9 MB | 192.0 MB | 6m41s | 8m18s | 17m31s |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 88.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 46.4K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 227.4K
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 | 1,053,935 | 54.7% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 88,475 | 4.6% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 44,673 | 2.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 46,372 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 227,431 | 11.8% | Repository stars |
555
- | `forks` | ForkEvent | 57,720 | 3.0% | Repository forks |
556
- | `creates` | CreateEvent | 286,393 | 14.9% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 27,230 | 1.4% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 28,243 | 1.5% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 51,323 | 2.7% | Wiki page edits |
560
- | `members` | MemberEvent | 13,688 | 0.7% | Collaborator additions |
561
- | `public_events` | PublicEvent | 1,834 | 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-04-22** (47 days), totaling **1,968,149 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 371.6 MB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 196.1 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** — 148,756 events in 898 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 32
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 29
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 25
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22
 
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 40
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 33
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 51
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 73
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 127
94
  17:00 ██████████████████████████████ 119.9K
95
+ 18:00 ██████░░░░░░░░░░░░░░░░░░░░░░░ 28.1K
96
  19:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
97
  20:00 ░░░░░░░░��░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 2.0M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 47 | 1,968,149 | 41,875 | 371.6 MB | 196.1 MB | 6m46s | 8m25s | 17m52s |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 90.4K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 47.3K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 232.4K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 1,075,977 | 54.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 90,411 | 4.6% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 47,139 | 2.4% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 47,275 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 232,408 | 11.8% | Repository stars |
555
+ | `forks` | ForkEvent | 58,891 | 3.0% | Repository forks |
556
+ | `creates` | CreateEvent | 291,516 | 14.8% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 27,693 | 1.4% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 28,878 | 1.5% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 52,157 | 2.7% | Wiki page edits |
560
+ | `members` | MemberEvent | 13,943 | 0.7% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 1,861 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:579da2ac221f3a337fd683bd4ca5647122a6a45b1dde4c484b9c7395588bbfbf
3
+ size 32935
data/creates/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67d5614c6261ec0dfdc7e95214fab32acc081272e9d6095b74be93a0130581c0
3
+ size 133936
data/deletes/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d7edda2c2da8ff73bab924ab6c09e8f08a3a2c5c3ab4b0686b744382fb0829f
3
+ size 17919
data/forks/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dcdf3b56dfc92d7c7454cb6d8f31ce9adf956fc2e964dfb99ea5833a0ada5bf
3
+ size 54018
data/issues/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68f8a5b392ea60664d66317f989e3d3b62684cea3d348b6cb6f7b2ba53a15722
3
+ size 69949
data/members/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:703028e802e6463ce4171125174980b58fd90f8401535ce16401e66890650f9b
3
+ size 12693
data/public_events/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:946bdfa4d1298f7ae852975d5cd1a480f36801d146bccbf8681552c1e9620d41
3
+ size 4036
data/pull_requests/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:291c2182e448161f42b2a09e16629a5a51222a33f59290e4dbffb8a6597f624c
3
+ size 62488
data/pushes/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6f0e76ce12e1fbfc9100ad6054f0722608c0b407122d40a67d67652130b3023
3
+ size 3585316
data/stars/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c89f637d013ff4f55285e47a9c8aedcf973ed1a612d35656bfcc0aa109d5d80c
3
+ size 176947
data/wiki_pages/2011/04/22.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db84fcfc1fe385fa8bf2b073ee7ef4343da53d328b3878ad2b41d32be7b6953a
3
+ size 65261
stats.csv CHANGED
@@ -44,4 +44,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
44
  2011-04-18,48579,0,25039,2801,3761,1160,0,0,5815,1322,5913,463,0,724,1220,316,45,0,9347197,6.5,4620283,5.0,6.5,20.5
45
  2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,9.7,5125619,6.2,9.7,24.2
46
  2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,7.0,5166490,6.6,7.0,22.6
47
- 2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,7.2,4898444,5.2,7.2,0.0
 
 
44
  2011-04-18,48579,0,25039,2801,3761,1160,0,0,5815,1322,5913,463,0,724,1220,316,45,0,9347197,6.5,4620283,5.0,6.5,20.5
45
  2011-04-19,53531,0,27114,2577,3496,1204,0,0,6151,1428,8293,586,0,711,1566,336,69,0,10266549,9.7,5125619,6.2,9.7,24.2
46
  2011-04-20,50137,0,25412,3213,4257,1098,0,0,5779,1412,6087,470,0,655,1302,407,45,0,9656219,7.0,5166490,6.6,7.0,22.6
47
+ 2011-04-21,49520,0,25584,2486,3274,1153,0,0,6214,1466,6219,878,0,749,1172,287,38,0,9646534,7.2,4898444,5.2,7.2,21.1
48
+ 2011-04-22,40832,0,22042,1936,2466,903,0,0,4977,1171,5123,463,0,635,834,255,27,0,8101358,6.9,4215498,4.9,6.9,0.0