tamnd commited on
Commit
1b1face
·
verified ·
1 Parent(s): c506932

Add 2011-09-15 — 76.7K 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-14** (156 days), totaling **8,124,527 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 719.8 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** — 817,399 events in 4915 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 160
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 96
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 113
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 200
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 298
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 386
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 504
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 316.0K
97
- 20:00 █████░░░░░░░░░░░░░░░░░░░░░░░░ 54.3K
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 ██████████████████████████████ 8.1M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 156 | 8,124,527 | 52,080 | 1.4 GB | 719.8 MB | 36m00s | 29m31s | 1h09m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 414.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 206.0K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 846.7K
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,878,884 | 47.7% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 414,089 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 482,123 | 5.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 206,041 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 846,658 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 228,809 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,004,553 | 12.4% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 93,058 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 106,292 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 171,441 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 45,611 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 7,362 | 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-15** (157 days), totaling **8,201,191 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 726.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** — 828,507 events in 4953 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 161
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 108
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 117
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 98
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 114
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 160
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 238
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 299
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 388
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 508
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 316.0K
97
+ 20:00 █████░░░░░░░░░░░░░░░░░░░░░░░░ 65.3K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 8.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 157 | 8,201,191 | 52,236 | 1.4 GB | 726.5 MB | 36m18s | 29m42s | 1h10m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 417.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 208.0K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 854.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,919,193 | 47.8% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 417,659 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 486,886 | 5.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 208,016 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 854,174 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 230,888 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,017,604 | 12.4% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 93,811 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 107,020 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 172,793 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 46,108 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 7,433 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e0637b1cb3e7a0f7574c1dfc597100b0b2b8449c477a606a9ac8525125257c31
3
+ size 38046
data/creates/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b17f7c434f76a59852bae35a9c246d9cf23f61185ad64a624e69c7a1d11e53af
3
+ size 372423
data/deletes/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:187afe939496bb54b04fcb4e240cc956578055f8027af9d4436f9b79ebf1920c
3
+ size 26965
data/forks/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d356b23889574e74fb9f14c01dafc3d1a443872a74166e2741a569c2931d02b0
3
+ size 112468
data/issues/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bdc32a2039f736588d38385d9018a9559c7b88f96458ff606503a97361e1612c
3
+ size 118926
data/members/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:273c2ba8db7098ef95c5099b9ef0fff93469939b04c6f61aa7bc95a63e24f6cc
3
+ size 23214
data/public_events/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d735ca2e62438439089a4330f0cc828025ee06a3ac2d283460888c360fc72d43
3
+ size 5588
data/pull_requests/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7c8da0e9e9001c56d5a9dc1c3a52624fe14e46c4ce2eba9cb97ab96db8554e1
3
+ size 118249
data/pushes/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f6b5cf16d49f1cb30e77694e4464e99587d8c496da3a538591fc00564e840c1
3
+ size 5875787
data/stars/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cac9eef1ef532e246149a3850ce2b0919daaa45b1b0915773e9c835383d2123a
3
+ size 217644
data/wiki_pages/2011/09/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d06199b4de0645c52be277d223cebcec8e205185389ac0407f79564cff2e325f
3
+ size 104634
stats.csv CHANGED
@@ -154,4 +154,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
154
  2011-09-11,46786,0,24118,2284,2927,1255,0,0,4777,1561,7402,524,0,524,1071,307,36,0,8277171,6.5,4708751,17.9,6.5,22.0
155
  2011-09-12,66537,0,30947,3248,4551,1883,0,0,7095,2095,13619,680,0,685,1306,374,54,0,11482052,8.7,6119895,23.3,8.7,25.9
156
  2011-09-13,67122,0,34395,3743,5189,2182,0,0,7115,2107,8877,980,0,767,1207,489,71,0,12447351,8.9,6655529,17.3,8.9,29.4
157
- 2011-09-14,79499,0,36274,4046,5405,2153,0,0,7739,2128,18062,695,0,855,1553,500,89,0,13002465,8.7,6953232,16.9,8.7,0.0
 
 
154
  2011-09-11,46786,0,24118,2284,2927,1255,0,0,4777,1561,7402,524,0,524,1071,307,36,0,8277171,6.5,4708751,17.9,6.5,22.0
155
  2011-09-12,66537,0,30947,3248,4551,1883,0,0,7095,2095,13619,680,0,685,1306,374,54,0,11482052,8.7,6119895,23.3,8.7,25.9
156
  2011-09-13,67122,0,34395,3743,5189,2182,0,0,7115,2107,8877,980,0,767,1207,489,71,0,12447351,8.9,6655529,17.3,8.9,29.4
157
+ 2011-09-14,79499,0,36274,4046,5405,2153,0,0,7739,2128,18062,695,0,855,1553,500,89,0,13002465,8.7,6953232,16.9,8.7,93.0
158
+ 2011-09-15,76664,0,40309,3570,4763,1975,0,0,7516,2079,13051,753,0,728,1352,497,71,0,12587472,10.3,7013944,17.5,10.3,0.0