tamnd commited on
Commit
79bf63b
·
verified ·
1 Parent(s): 3906c4f

Add 2011-09-05 — 60.9K 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-04** (146 days), totaling **7,501,112 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 662.4 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,11 +71,11 @@ 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** — 788,743 events in 4770 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 137
@@ -85,12 +85,12 @@ Events from today are captured in near-real-time from the GitHub Events API and
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 152
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 195
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 291
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 374
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 486
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 7.5M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 146 | 7,501,112 | 51,377 | 1.3 GB | 662.4 MB | 32m35s | 28m13s | 1h04m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 379.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 187.0K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 775.6K
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,574,143 | 47.6% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 379,569 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 434,799 | 5.8% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 187,042 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 775,564 | 10.3% | Repository stars |
555
- | `forks` | ForkEvent | 209,529 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 909,084 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 85,929 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 98,580 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 158,727 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 41,812 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 6,728 | 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-05** (147 days), totaling **7,561,982 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.3 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 668.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
 
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** — 788,777 events in 4778 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 137
 
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 111
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 153
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 195
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 291
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 374
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 487
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
96
  19:00 █████████████████████████████░ 315.9K
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 7.6M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 147 | 7,561,982 | 51,442 | 1.3 GB | 668.0 MB | 32m52s | 28m21s | 1h04m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 383.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 188.8K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 783.9K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 3,603,612 | 47.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 383,118 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 439,990 | 5.8% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 188,800 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 783,858 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 211,408 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 916,661 | 12.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 86,600 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 99,379 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 160,005 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 42,165 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 6,780 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:695d8ded272696130fe6956b141b349b09e303f788829c5e694083014555d7c8
3
+ size 41052
data/creates/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f22a4bc81fb86816e58fe9ffab76d8c3911c2c1f4449b32f1bfb26f7d64ded2
3
+ size 308063
data/deletes/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a67813fc68f8a2723585c5d5dd72781af7ce47a19733faa79a852e6acd99e87d
3
+ size 23933
data/forks/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1022b7f96ba5858ff85908595783787ad9ad6cd096ff6e67d6a6ff847eca363f
3
+ size 94867
data/issues/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd17fe25f314d3ddbd4d7a033dc2b8ea22931b47ce37586c33c4988b8e8041ef
3
+ size 112317
data/members/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7fac733f1d4d767cc81d085e563860f259e64183488c4f8a738f5a2727dc7b3d
3
+ size 18195
data/public_events/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f2a5b7f47af138b9a28777a58743711b82f62096b5886114728f3bec94fb4f0b
3
+ size 4692
data/pull_requests/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:49678c507e2aa84c80c2dbf23d75ae53e73c5cd4722c7d9c27dbc30a30e72607
3
+ size 110054
data/pushes/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7930e556303ba1c1cf748c1bdd4e9ba57cdc2f1a6f3fbfddd7078e88e09fbb43
3
+ size 4887086
data/stars/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daa35561a608749e4e7e32ea63acbdab0d03295ee6bb41e62acc2c71f6e16c2d
3
+ size 226375
data/wiki_pages/2011/09/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f56e1c2cd562ad7db2310ed2437d37134ed9e6ea888b8bd80b074b859076f09
3
+ size 96914
stats.csv CHANGED
@@ -144,4 +144,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
144
  2011-09-01,65069,0,32061,4976,6001,2197,0,0,7014,1883,7695,674,0,747,1367,380,74,0,11700096,7.6,6501684,19.5,7.6,28.5
145
  2011-09-02,60128,0,29556,3907,5134,1821,0,0,6572,1875,8163,596,0,907,1188,343,66,0,10786770,7.5,5623793,32.7,7.5,25.3
146
  2011-09-03,40999,0,21006,2365,3240,1149,0,0,4568,1296,5313,416,0,658,748,199,41,0,7320966,4.3,4136396,19.0,4.3,31.2
147
- 2011-09-04,43027,0,22469,2418,3148,1122,0,0,4776,1286,5665,425,0,598,892,183,45,0,7784069,5.5,4145947,19.1,5.5,0.0
 
 
144
  2011-09-01,65069,0,32061,4976,6001,2197,0,0,7014,1883,7695,674,0,747,1367,380,74,0,11700096,7.6,6501684,19.5,7.6,28.5
145
  2011-09-02,60128,0,29556,3907,5134,1821,0,0,6572,1875,8163,596,0,907,1188,343,66,0,10786770,7.5,5623793,32.7,7.5,25.3
146
  2011-09-03,40999,0,21006,2365,3240,1149,0,0,4568,1296,5313,416,0,658,748,199,41,0,7320966,4.3,4136396,19.0,4.3,31.2
147
+ 2011-09-04,43027,0,22469,2418,3148,1122,0,0,4776,1286,5665,425,0,598,892,183,45,0,7784069,5.5,4145947,19.1,5.5,25.8
148
+ 2011-09-05,60870,0,29469,3549,5191,1758,0,0,8294,1879,7577,671,0,799,1278,353,52,0,10812183,7.8,5923548,16.9,7.8,0.0