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

Add 2011-09-04 — 43.0K 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-03** (145 days), totaling **7,458,085 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 658.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,25 +71,25 @@ 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,719 events in 4758 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 155
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 107
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 136
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 110
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 156
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 148
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 152
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
91
- 14:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 289
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 373
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 486
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.3K
@@ -136,7 +136,7 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 145 | 7,458,085 | 51,435 | 1.3 GB | 658.4 MB | 32m16s | 28m07s | 1h04m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 377.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 185.9K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 770.8K
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,551,674 | 47.6% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 377,151 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 431,651 | 5.8% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 185,920 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 770,788 | 10.3% | Repository stars |
555
- | `forks` | ForkEvent | 208,243 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 903,419 | 12.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 85,504 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 97,982 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 157,835 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 41,629 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 6,683 | 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-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
 
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
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 115
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 95
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
 
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
  ### 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
 
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
 
data/commit_comments/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92a4a45d4b80f1b066806e0fca0ee0dcf9fba8a46d712d928f7c25308ea91c40
3
+ size 32609
data/creates/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecd1523f65a717281acc71b012cce2b56590f2c1188b63889e4f058863ec9590
3
+ size 236776
data/deletes/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98171d26267b9219cab02d4679ab6aa8fac560b989f3a0ee1c954a44c012597b
3
+ size 17665
data/forks/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:090861dc40ce68d011cac490cd4c7057d1af419d5e1da586b1a7b67e41506666
3
+ size 72952
data/issues/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad3e100c436be2a40cfbc333de29a8431ea203a24bc18e24b5b7fda58d6f0379
3
+ size 83098
data/members/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bccd8d322d6c9ee340a196000f4f751b35f21aa4ff906ff51a063a1c64b196c
3
+ size 11183
data/public_events/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fc7024ff949606d2bd41796a6eec411f7cfccfce9ac8ecbaefea44d9333e488d
3
+ size 4268
data/pull_requests/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbb181e0623eba2debdc5a54c72a8e9c5ea33745569ee5f5c3bbcd5f789afc6b
3
+ size 75305
data/pushes/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1139c12e7d0328b56500660f379593f0cb2edbb02747f240361aa7376cadee47
3
+ size 3398703
data/stars/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:784896b1f095fb93652e191f9c0c370f5e89dfa3857c862fa47a90cb8ac81b52
3
+ size 140889
data/wiki_pages/2011/09/04.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:198cbdfc2eb333c9933cd55d8c6aedd8d5ba7aa85f41a1d364c20844bb23a2df
3
+ size 72499
stats.csv CHANGED
@@ -143,4 +143,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
143
  2011-08-31,61408,0,30991,3457,5226,2080,0,0,7425,2009,6951,859,0,875,1160,310,65,0,11297695,9.5,6223313,28.6,9.5,23.9
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,0.0
 
 
143
  2011-08-31,61408,0,30991,3457,5226,2080,0,0,7425,2009,6951,859,0,875,1160,310,65,0,11297695,9.5,6223313,28.6,9.5,23.9
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