tamnd commited on
Commit
2cd5cd9
·
verified ·
1 Parent(s): 0df8c56

Add 2011-11-28 — 80.5K 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-11-27** (209 days), totaling **11,625,880 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 2.1 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.1 GB 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,21 +71,21 @@ 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** — 1,089,011 events in 6730 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 124
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 317
91
  14:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 380
@@ -95,7 +95,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.1K
98
- 21:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 11.6M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 209 | 11,625,880 | 55,626 | 2.1 GB | 1.1 GB | 53m46s | 44m13s | 1h36m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 605.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 304.1K
160
  ```
161
 
162
 
@@ -547,18 +547,18 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
- | `pushes` | PushEvent | 5,582,565 | 48.0% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 605,135 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 737,919 | 6.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 304,125 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,184,738 | 10.2% | Repository stars |
555
- | `forks` | ForkEvent | 331,074 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,639,610 | 14.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 136,237 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 145,988 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 241,085 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 67,181 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 10,617 | 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-11-28** (210 days), totaling **11,706,364 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 2.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.1 GB 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** — 1,099,494 events in 6743 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 206
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 163
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 125
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 317
91
  14:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 380
 
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.1K
98
+ 21:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 30.6K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 11.7M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 210 | 11,706,364 | 55,744 | 2.2 GB | 1.1 GB | 54m18s | 44m26s | 1h37m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 610.9K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 306.4K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,619,165 | 48.0% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 610,929 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 747,620 | 6.4% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 306,389 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,192,071 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 333,016 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,652,837 | 14.1% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 136,891 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 146,949 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 242,647 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 67,558 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 10,686 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc4d28c9028dcbb8a657e138d19a32933ce329f10111c465c6cca45e345eb48c
3
+ size 152587
data/creates/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad9eda9ee0dbf4e091be8abd1d80b5a9a9708484581a24e797109a61094e5efb
3
+ size 384630
data/deletes/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:672a719d5d4100f6e49c81781d6487fc765fccac755047e453d4629235f1bc3d
3
+ size 25068
data/forks/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39afc06382b3ceaee5df5416f899c075c97022e08d562101ea817672abe66096
3
+ size 181736
data/issues/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:228acf4f7401cf039c056d17ba0be29a18f38f1d2a2d81cb1d4bf553de3db5e5
3
+ size 1167726
data/members/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa8b8828042c41af8ba267de088b4dc6ec4bdfebb87ee4965d2b10f7b60292e1
3
+ size 18798
data/public_events/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a97ae00c2f29d91b918f98effd3929c40476dbf9919a41b9247636f6d2e2f2a5
3
+ size 5575
data/pull_requests/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:600e3d66c96e298a1b5d1a1f77f00fd1cec7e16ed8b645fe6d19df7937853b65
3
+ size 397527
data/pushes/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ddcd71f7366a8fb002812a96729f78b41ac7db85bd71bd711f82d48f79b6a2e0
3
+ size 8039810
data/stars/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cb2a5e0eb3f50f40e0e3de51a8846b42a4ddaba1419723c9e7c34b9ee2b18afd
3
+ size 215111
data/wiki_pages/2011/11/28.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf6c2a032d5748eca8ff078b0f22167a445566d8d245569f1acb81bc6f502c69
3
+ size 124078
stats.csv CHANGED
@@ -207,4 +207,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
207
  2011-11-24,79811,0,33601,5089,8096,1967,0,0,6785,2154,18637,755,0,727,1549,397,54,0,19410406,17.3,9508473,19.1,17.3,31.3
208
  2011-11-25,58867,0,27382,2702,3630,1516,0,0,5955,1843,12942,585,0,703,1236,331,42,0,14969432,6.9,7877498,18.6,6.9,32.5
209
  2011-11-26,56769,0,24570,2816,3383,1223,0,0,5487,1466,15289,516,0,526,1223,239,31,0,12996919,8.0,7106351,20.9,8.0,28.3
210
- 2011-11-27,61975,0,27671,3694,3927,1292,0,0,5463,1459,15513,665,0,631,1357,256,47,0,14591183,9.4,7700231,27.2,9.4,0.0
 
 
207
  2011-11-24,79811,0,33601,5089,8096,1967,0,0,6785,2154,18637,755,0,727,1549,397,54,0,19410406,17.3,9508473,19.1,17.3,31.3
208
  2011-11-25,58867,0,27382,2702,3630,1516,0,0,5955,1843,12942,585,0,703,1236,331,42,0,14969432,6.9,7877498,18.6,6.9,32.5
209
  2011-11-26,56769,0,24570,2816,3383,1223,0,0,5487,1466,15289,516,0,526,1223,239,31,0,12996919,8.0,7106351,20.9,8.0,28.3
210
+ 2011-11-27,61975,0,27671,3694,3927,1292,0,0,5463,1459,15513,665,0,631,1357,256,47,0,14591183,9.4,7700231,27.2,9.4,27.5
211
+ 2011-11-28,80484,0,36600,5794,9701,2264,0,0,7333,1942,13227,654,0,961,1562,377,69,0,22026925,13.2,10712646,32.1,13.2,0.0