tamnd commited on
Commit
610d4d0
·
verified ·
1 Parent(s): 4900c3e

Add 2011-08-23 — 63.2K 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-08-22** (133 days), totaling **6,778,670 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 595.2 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,7 +71,7 @@ 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** — 762,748 events in 4631 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
@@ -80,17 +80,17 @@ Events from today are captured in near-real-time from the GitHub Events API and
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 106
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 131
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 93
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 287
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 366
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 476
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.8K
@@ -136,7 +136,7 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 133 | 6,778,670 | 50,967 | 1.2 GB | 595.2 MB | 27m44s | 26m35s | 58m46s |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 336.4K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 164.8K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 691.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 | 3,208,730 | 47.3% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 336,372 | 5.0% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 376,661 | 5.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 164,804 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 691,398 | 10.2% | Repository stars |
555
- | `forks` | ForkEvent | 186,497 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 820,003 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 77,907 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 89,165 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 143,795 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 37,834 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 5,898 | 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-08-23** (134 days), totaling **6,841,846 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.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 601.2 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** — 762,762 events in 4639 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
 
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 106
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 131
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 92
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 287
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 367
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 477
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.8K
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 134 | 6,841,846 | 51,058 | 1.2 GB | 601.2 MB | 28m10s | 26m45s | 59m12s |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 340.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 166.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 699.4K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,240,209 | 47.4% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 340,102 | 5.0% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 381,713 | 5.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 166,714 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 699,447 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 188,506 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 827,406 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 78,719 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 90,009 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 145,169 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 38,271 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 5,975 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d18dc53831f8f50451ad52e4745ec41d3037d762f6fdf5fc6839f14a614c8dc
3
+ size 42719
data/creates/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8fc7258a136b049d8457d4caf0ff5d27c3a035367dd6878197b189b065c17ae2
3
+ size 307897
data/deletes/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6d991cfd4825e4a154bf0053eee8095e6362ee2efe666329ef4f31bf8e16395
3
+ size 30204
data/forks/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecbc41e444f3dc3daee7a7395d973cb60ba0805859c3d9aea457a7f91508bce3
3
+ size 100160
data/issues/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52cd261b20ff59fd0b635fcbcad36a57774b16af2ef1cae505f617b187b9fbee
3
+ size 121980
data/members/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c0594fe65a70dac8387473174d98ba0432c78b6a93e9d817b335f9e7aa686f2
3
+ size 19351
data/public_events/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cbb305d3040a6379d3194b384878b0020372012bf64593492060434ace8af38
3
+ size 5482
data/pull_requests/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7563f89fc226cf03b9bf759b3ae4622f571da52f6de6f4137bcb8246b7300e8
3
+ size 112644
data/pushes/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:135b989ae2c2ab785612789cc3f27babd918b7d01de5dcf19b3a4e18f69ee3f9
3
+ size 5251603
data/stars/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af07cc2f6ea3e8bae8cdb6c628602e0f32c0e613e522910620d34432dae62d95
3
+ size 228950
data/wiki_pages/2011/08/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d9698acb028c5b167bfa23e219956d73c3dec1adc31f7da532f782681dcbc87
3
+ size 106369
stats.csv CHANGED
@@ -131,4 +131,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
131
  2011-08-19,60442,0,27818,4744,6901,1779,0,0,7202,1877,7142,530,0,720,1375,296,58,0,10436247,10.4,5550963,21.0,10.4,21.7
132
  2011-08-20,35099,0,17616,1793,2203,775,0,0,5551,1301,4288,260,0,431,675,170,36,0,6109284,4.7,3457636,16.2,4.7,23.8
133
  2011-08-21,38946,0,20881,1808,2399,972,0,0,4864,1327,5010,323,0,358,804,169,31,0,7101157,7.5,3968252,16.4,7.5,29.1
134
- 2011-08-22,61464,0,29470,3733,5344,1870,0,0,7472,1964,8262,717,0,911,1340,316,65,0,10887133,9.7,5915255,17.2,9.7,0.0
 
 
131
  2011-08-19,60442,0,27818,4744,6901,1779,0,0,7202,1877,7142,530,0,720,1375,296,58,0,10436247,10.4,5550963,21.0,10.4,21.7
132
  2011-08-20,35099,0,17616,1793,2203,775,0,0,5551,1301,4288,260,0,431,675,170,36,0,6109284,4.7,3457636,16.2,4.7,23.8
133
  2011-08-21,38946,0,20881,1808,2399,972,0,0,4864,1327,5010,323,0,358,804,169,31,0,7101157,7.5,3968252,16.4,7.5,29.1
134
+ 2011-08-22,61464,0,29470,3733,5344,1870,0,0,7472,1964,8262,717,0,911,1340,316,65,0,10887133,9.7,5915255,17.2,9.7,25.8
135
+ 2011-08-23,63176,0,31479,3730,5052,1910,0,0,8049,2009,7403,812,0,844,1374,437,77,0,11556642,10.0,6327359,26.0,10.0,0.0