tamnd commited on
Commit
a28f0a6
·
verified ·
1 Parent(s): f28bfb0

Add 2011-11-21 — 62.9K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-20** (202 days), totaling **11,145,007 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.0 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
 
@@ -71,31 +71,31 @@ 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,082,149 events in 6621 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 215
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 178
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 149
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 192
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 261
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 313
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 375
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 443
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 602
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.1K
98
- 21:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 13.4K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 11.1M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 202 | 11,145,007 | 55,173 | 2.0 GB | 1.0 GB | 51m18s | 42m25s | 1h33m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 579.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 292.0K
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,367,554 | 48.2% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 579,746 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 702,976 | 6.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 291,992 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,139,778 | 10.2% | Repository stars |
555
- | `forks` | ForkEvent | 317,569 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,526,775 | 13.7% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 131,480 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 140,843 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 231,770 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 64,648 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 10,270 | 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-21** (203 days), totaling **11,207,870 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.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.0 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
 
 
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,084,604 events in 6644 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 151
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 122
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 169
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 262
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 313
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 376
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 444
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 605
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.1K
98
+ 21:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 15.9K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 11.2M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 203 | 11,207,870 | 55,211 | 2.0 GB | 1.0 GB | 51m40s | 42m45s | 1h33m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 583.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 293.8K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,397,894 | 48.2% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 583,143 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 707,891 | 6.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 293,819 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,145,826 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 319,445 | 2.9% | Repository forks |
556
+ | `creates` | CreateEvent | 1,538,080 | 13.7% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 132,100 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 141,556 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 233,133 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 65,057 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 10,320 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a840454e06f99ff8f4d8a4bfbb079b12536092956f532cba8d48bc80a9cd1c3b
3
+ size 116561
data/creates/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae8fdef0e44db5ad27390a320595b9b315b123b893c47624154ca6557af474e5
3
+ size 327199
data/deletes/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5390854507fa421642ec5bd024c36367e0d34582f44f0503c5cbc1eb046f576
3
+ size 23189
data/forks/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8bc5cee8cebbaf4e8dc5d749fe1a393bfbef6a71d9950f4bd872920a45529527
3
+ size 177242
data/issues/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd7b4c8814e07799666025e3a2716e71733e857b447252d974197ef5748e2af6
3
+ size 696565
data/members/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b1f5013b2da5b93813fef75b2569c539f10d38c9845012cdb5fa15d01ae6f1d
3
+ size 21661
data/public_events/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec3b3ef769fc902a16697ccd155bf00de8de15133ab12dee9e5f64546eb524a9
3
+ size 4573
data/pull_requests/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d911e399d98b0ce8e6e8fc8d1918309231a051a1df523ce1f009aad720134212
3
+ size 345591
data/pushes/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b55d23c64f27f7d24bb1398b636737884535fe46533d713d4db11bd1eec49c22
3
+ size 6421185
data/stars/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a475ad8133c7009db05e58a30e1b112bdd965264d41a23575c2057535e9de16c
3
+ size 179001
data/wiki_pages/2011/11/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:294f2d1153a83ca13c3d26b7be2952161afb49b98b1fd3cee4f0a95e2633dfc3
3
+ size 82259
stats.csv CHANGED
@@ -200,4 +200,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
200
  2011-11-17,82971,0,36551,3677,5382,2291,0,0,7301,2310,22061,770,0,902,1207,440,79,0,20566537,39.4,10289686,20.8,39.4,103.5
201
  2011-11-18,66232,0,30596,2934,4300,1849,0,0,5791,1874,15981,748,0,693,1022,390,54,0,16912775,32.8,8602596,18.7,32.8,24.2
202
  2011-11-19,48282,0,21831,1915,2466,1011,0,0,3687,1326,13995,418,0,467,837,291,38,0,10887031,24.6,5952108,17.6,24.6,23.7
203
- 2011-11-20,59251,0,27771,2447,3062,1219,0,0,5533,1586,15211,605,0,468,996,294,59,0,13566479,22.9,7244675,20.3,22.9,0.0
 
 
200
  2011-11-17,82971,0,36551,3677,5382,2291,0,0,7301,2310,22061,770,0,902,1207,440,79,0,20566537,39.4,10289686,20.8,39.4,103.5
201
  2011-11-18,66232,0,30596,2934,4300,1849,0,0,5791,1874,15981,748,0,693,1022,390,54,0,16912775,32.8,8602596,18.7,32.8,24.2
202
  2011-11-19,48282,0,21831,1915,2466,1011,0,0,3687,1326,13995,418,0,467,837,291,38,0,10887031,24.6,5952108,17.6,24.6,23.7
203
+ 2011-11-20,59251,0,27771,2447,3062,1219,0,0,5533,1586,15211,605,0,468,996,294,59,0,13566479,22.9,7244675,20.3,22.9,22.1
204
+ 2011-11-21,62863,0,30340,3397,4915,1827,0,0,6048,1876,11305,620,0,713,1363,409,50,0,16816825,20.0,8395026,21.1,20.0,0.0