tamnd commited on
Commit
2338501
·
verified ·
1 Parent(s): 76f75d7

Add 2011-09-18 — 46.8K 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-17** (159 days), totaling **8,316,187 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 737.3 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** — 837,797 events in 5009 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 161
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 108
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 117
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 101
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 165
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 158
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 241
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 302
92
- 15:00 █░░░░���░░░░░░░░░░░░░░░░░░░░░░░░ 389
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 316.0K
97
- 20:00 ██████░░░░░░░░░░░░░░░░░░░░░░░ 74.6K
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.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 159 | 8,316,187 | 52,303 | 1.4 GB | 737.3 MB | 36m53s | 29m54s | 1h11m |
140
 
141
 
142
  ### Pushes per year
@@ -149,21 +149,21 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 423.0K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 211.1K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
- 2011 ██████████████████████████████ 865.9K
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,984,952 | 47.9% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 423,012 | 5.1% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 493,701 | 5.9% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 211,112 | 2.5% | PR lifecycle events |
554
- | `stars` | WatchEvent | 865,912 | 10.4% | Repository stars |
555
- | `forks` | ForkEvent | 234,301 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,030,717 | 12.4% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 95,040 | 1.1% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 108,398 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 175,103 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 46,798 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 7,535 | 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-18** (160 days), totaling **8,362,991 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 741.7 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** — 840,041 events in 5021 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 135
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 108
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 140
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 117
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 94
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 101
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 116
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 166
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 158
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 241
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 303
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 390
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 511
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.6K
95
  18:00 ██████████████████████████████ 323.4K
96
  19:00 █████████████████████████████░ 316.0K
97
+ 20:00 ██████░░░░░░░░░░░░░░░░░░░░░░░ 76.8K
98
  21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 8.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 160 | 8,362,991 | 52,268 | 1.5 GB | 741.7 MB | 37m08s | 29m59s | 1h12m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 425.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 212.2K
160
  ```
161
 
162
 
163
  ### Stars per year
164
 
165
  ```
166
+ 2011 ██████████████████████████████ 870.9K
167
  ```
168
 
169
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 4,010,300 | 48.0% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 425,216 | 5.1% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 496,471 | 5.9% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 212,250 | 2.5% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 870,942 | 10.4% | Repository stars |
555
+ | `forks` | ForkEvent | 235,623 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,037,296 | 12.4% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 95,598 | 1.1% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 108,942 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 176,152 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 47,016 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 7,579 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18374650d4e3ad179fe755ed538e802867afb7ab3888a1fa8a7c8d4c778f1d06
3
+ size 27937
data/creates/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f72b5ae95302d6066026a735dd9c25bae7305055edffb5c3aea3e9580c09453c
3
+ size 258877
data/deletes/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ace6eb5423ce186e2f68923ce57fc5f5bcffd28cbca4072bc65b5f631111b29e
3
+ size 20282
data/forks/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:755c7607c9c8425952ca8590cbb1896768265b72ce4efbc362ff1699cab1f8de
3
+ size 71211
data/issues/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de1d79ed9530241d90eca35f75819a8236189b4c8162b5c8b36944de1b6ee85e
3
+ size 77161
data/members/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93e6636a35f296e42e8d30e6929d146c839921408f0e9d5c451ec9af747bfa3d
3
+ size 12776
data/public_events/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:316f55bc19155bc02f731e7234c28c1f5a3f9d6512f38e2d414a7952255fd5b6
3
+ size 4296
data/pull_requests/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4342c3bdba37e425b00450241393cbde9ec8cab4dc5808dc16d459277336f883
3
+ size 74314
data/pushes/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bfe14bf62f8621de161579d66bf421eb0319a51c2039e4af7ca74ffb0dc4525
3
+ size 3869994
data/stars/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bbd961d5427ec3b52d671691697e763883e72835a6b7ec3700ad4cee89b06cc
3
+ size 146337
data/wiki_pages/2011/09/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1dae74e38ebcd69b6e557497495fa337dd813c6dd11179a21f4a464a561f734a
3
+ size 80322
stats.csv CHANGED
@@ -157,4 +157,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,56.6
159
  2011-09-16,70626,0,39574,3273,4386,2078,0,0,7269,2140,7960,917,0,940,1596,424,69,0,12272286,7.9,6889405,20.3,7.9,24.9
160
- 2011-09-17,44370,0,26185,2080,2429,1018,0,0,4469,1273,5153,312,0,438,714,266,33,0,7358042,4.7,4380308,15.2,4.7,0.0
 
 
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,56.6
159
  2011-09-16,70626,0,39574,3273,4386,2078,0,0,7269,2140,7960,917,0,940,1596,424,69,0,12272286,7.9,6889405,20.3,7.9,24.9
160
+ 2011-09-17,44370,0,26185,2080,2429,1018,0,0,4469,1273,5153,312,0,438,714,266,33,0,7358042,4.7,4380308,15.2,4.7,24.1
161
+ 2011-09-18,46804,0,25348,2204,2770,1138,0,0,5030,1322,6579,558,0,544,1049,218,44,0,8395129,5.0,4643507,14.3,5.0,0.0