tamnd commited on
Commit
f2d9646
·
verified ·
1 Parent(s): 51b2ac9

Add 2011-08-16 — 58.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-15** (126 days), totaling **6,401,402 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 560.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,29 +71,29 @@ 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** — 751,448 events in 4539 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 123
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 103
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 92
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 280
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 364
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 474
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
- 19:00 ████████████████████████████░░ 304.6K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -131,39 +131,39 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 6.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 126 | 6,401,402 | 50,804 | 1.1 GB | 560.1 MB | 25m28s | 25m33s | 55m49s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 3.0M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 312.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 153.7K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 645.5K
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,022,121 | 47.2% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 312,863 | 4.9% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 343,770 | 5.4% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 153,716 | 2.4% | PR lifecycle events |
554
- | `stars` | WatchEvent | 645,526 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 174,323 | 2.7% | Repository forks |
556
- | `creates` | CreateEvent | 774,318 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 73,889 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 84,149 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 135,687 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 35,906 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 5,528 | 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-16** (127 days), totaling **6,459,566 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.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 565.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** — 754,337 events in 4562 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 169
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 104
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 93
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 91
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 150
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 141
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 224
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 365
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 474
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
+ 19:00 ████████████████████████████░░ 307.4K
97
  20:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 6.5M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 127 | 6,459,566 | 50,862 | 1.1 GB | 565.9 MB | 25m49s | 25m42s | 56m14s |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 3.1M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 316.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 155.5K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 652.2K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,051,967 | 47.2% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 316,068 | 4.9% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 348,460 | 5.4% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 155,530 | 2.4% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 652,155 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 176,226 | 2.7% | Repository forks |
556
+ | `creates` | CreateEvent | 781,023 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 74,664 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 85,112 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 136,895 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 36,275 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 5,585 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c45590d7cbd79a97d451384e2bc3efcc842b7816581212c63ac530f85687dd30
3
+ size 45431
data/creates/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60df612f123d58ae19f106c9cfe0791159e8831ded89276f6a97275693aac681
3
+ size 286763
data/deletes/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48c2c5ecac780e85c3a5867c9244be11c310c7490bf7160acfbafe0a79ef98b5
3
+ size 26427
data/forks/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fbea9c2ffb8b769a3bcf6d6916d333c6d5530d954a7865e6b177d6b3f246199b
3
+ size 95795
data/issues/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8c4d9a4850e8662eed145fecb61748104ff91d1a3eb02955d86727e0a61088b
3
+ size 107985
data/members/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b97f35d50554b95d0b139b7beefa8e80b761d9f37cc5487eeb73617da929b4df
3
+ size 17409
data/public_events/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e39691e95f3b4adbdc259b65bb63b3a1117c374e96d62a6445bd0f281ab3308
3
+ size 4976
data/pull_requests/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7a5895e4fa1d2d1310147fa46af94d556405d994f031af14deb24090b969c45f
3
+ size 106671
data/pushes/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddf3b0a9ac3b6b265c258525fa76a1012b2eeb334bcb58e120253db9c1a43292
3
+ size 5088059
data/stars/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89876ff37645d9c57ef52f0a112617af6367fe5f86f1161654839258a0a4d926
3
+ size 194468
data/wiki_pages/2011/08/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ac52bd86c85594e97d0f873865e1113cb88f1c8287b189e9b1e5a47bd781df6
3
+ size 92945
stats.csv CHANGED
@@ -124,4 +124,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
124
  2011-08-12,52939,0,26876,2935,4672,1714,0,0,6066,1608,6161,827,0,793,1007,225,55,0,9792195,11.9,5242366,18.9,11.9,22.9
125
  2011-08-13,37248,0,19628,2061,2648,1133,0,0,3828,1232,4953,387,0,525,623,197,33,0,6835656,4.7,3831141,16.3,4.7,34.0
126
  2011-08-14,38847,0,20431,2055,2962,1024,0,0,3952,1058,5057,630,0,573,885,174,46,0,6895895,5.3,3783894,25.3,5.3,20.8
127
- 2011-08-15,52378,0,27440,2878,4054,1524,0,0,5441,1600,6575,542,0,705,1291,274,54,0,9814570,6.6,5450596,18.7,6.6,0.0
 
 
124
  2011-08-12,52939,0,26876,2935,4672,1714,0,0,6066,1608,6161,827,0,793,1007,225,55,0,9792195,11.9,5242366,18.9,11.9,22.9
125
  2011-08-13,37248,0,19628,2061,2648,1133,0,0,3828,1232,4953,387,0,525,623,197,33,0,6835656,4.7,3831141,16.3,4.7,34.0
126
  2011-08-14,38847,0,20431,2055,2962,1024,0,0,3952,1058,5057,630,0,573,885,174,46,0,6895895,5.3,3783894,25.3,5.3,20.8
127
+ 2011-08-15,52378,0,27440,2878,4054,1524,0,0,5441,1600,6575,542,0,705,1291,274,54,0,9814570,6.6,5450596,18.7,6.6,25.4
128
+ 2011-08-16,58164,0,29846,3205,4690,1814,0,0,6629,1903,6705,775,0,963,1208,369,57,0,10928027,9.4,6066929,21.4,9.4,0.0