tamnd commited on
Commit
849926a
·
verified ·
1 Parent(s): 17a9310

Add 2011-11-23 — 86.2K 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-22** (204 days), totaling **11,282,284 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.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,7 +71,7 @@ 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,086,169 events in 6658 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
@@ -81,12 +81,12 @@ Events from today are captured in near-real-time from the GitHub Events API and
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 123
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 262
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 313
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 377
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 444
@@ -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 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 17.4K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,32 +131,32 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 █████████████████████████████ 11.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 204 | 11,282,284 | 55,305 | 2.1 GB | 1.0 GB | 51m59s | 43m07s | 1h34m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 5.4M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 586.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 295.8K
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,432,400 | 48.1% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 586,653 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 712,999 | 6.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 295,815 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,152,947 | 10.2% | Repository stars |
555
- | `forks` | ForkEvent | 321,670 | 2.9% | Repository forks |
556
- | `creates` | CreateEvent | 1,554,851 | 13.8% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 132,842 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 142,314 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 234,288 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 65,523 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 10,376 | 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-23** (205 days), totaling **11,368,458 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.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,087,737 events in 6670 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
 
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 123
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 129
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 313
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 377
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 444
 
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.1K
98
+ 21:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 19.0K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ████████���█████████████████████ 11.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 205 | 11,368,458 | 55,455 | 2.1 GB | 1.0 GB | 52m20s | 43m31s | 1h34m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 5.5M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 590.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 298.1K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,469,341 | 48.1% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 590,834 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 718,883 | 6.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 298,127 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,161,048 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 324,152 | 2.9% | Repository forks |
556
+ | `creates` | CreateEvent | 1,577,229 | 13.9% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 133,716 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 143,401 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 235,720 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 65,958 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 10,443 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c922a35f50baea1fdc0944364a0ebd9697a7e3c3b0b4a263f3b3e95a55787af9
3
+ size 154743
data/creates/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ae2ccf74ce6cc05d28ae7b002fecaa7e96e1e6ba7b32204c531f9dbdb82e408
3
+ size 449741
data/deletes/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e999471b7ccb997f390d6218ef5dbaa999d50b29022162cd052071b04d76470
3
+ size 30286
data/forks/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:11e1ee357df4cb8f54ff1357c297785078a9c886ad66a9ae317c18148dbe0dc3
3
+ size 219198
data/issues/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d38b34a051e2a0713b3467d9d2f229c81e3e11e84525e87c683efe092e615281
3
+ size 878296
data/members/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2e1b7e96ab73d6ac049d4832bcb329136d901a2110374392eabbedb3f6bc7704
3
+ size 21620
data/public_events/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d684df8770288664c6fffcaf6ac47aa01f52a9fcd5964c6334d797cd49c66dd6
3
+ size 5384
data/pull_requests/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:997ae17a72f7ef5ceaeb4e704ab93d9d1484f172c996ba06d1675c65f6a0af55
3
+ size 409147
data/pushes/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f942708b687b4aabbfb7bd2f01e145862e5c50275b4bc2cce1139f735362a586
3
+ size 7891852
data/stars/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03c8a4e35807011c5b87bd3a9dc06d94cbb71b5148797dc0712085bb95a981db
3
+ size 230219
data/wiki_pages/2011/11/23.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a24fac526b9f04a944dd15e6540586820d59465a29b5f4041bc5cbf5c0a5c8c
3
+ size 83661
stats.csv CHANGED
@@ -202,4 +202,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,29.9
205
- 2011-11-22,74414,0,34506,3510,5108,1996,0,0,7121,2225,16771,742,0,758,1155,466,56,0,19321301,22.2,9714292,19.0,22.2,0.0
 
 
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,29.9
205
+ 2011-11-22,74414,0,34506,3510,5108,1996,0,0,7121,2225,16771,742,0,758,1155,466,56,0,19321301,22.2,9714292,19.0,22.2,29.5
206
+ 2011-11-23,86174,0,36941,4181,5884,2312,0,0,8101,2482,22378,874,0,1087,1432,435,67,0,21051693,23.4,10374147,21.5,23.4,0.0