tamnd commited on
Commit
017713e
·
verified ·
1 Parent(s): 2af8ca9

Add 2011-11-26 — 56.8K 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-25** (207 days), totaling **11,507,136 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
 
@@ -71,13 +71,13 @@ 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,088,963 events in 6699 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 154
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 124
@@ -85,12 +85,12 @@ Events from today are captured in near-real-time from the GitHub Events API and
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 196
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 222
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 315
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 379
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 444
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 607
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
@@ -131,32 +131,32 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 11.5M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 207 | 11,507,136 | 55,590 | 2.1 GB | 1.1 GB | 52m58s | 43m55s | 1h35m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 5.5M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 598.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 301.6K
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,530,324 | 48.1% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 598,625 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 730,609 | 6.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 301,610 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,173,788 | 10.2% | Repository stars |
555
- | `forks` | ForkEvent | 328,149 | 2.9% | Repository forks |
556
- | `creates` | CreateEvent | 1,608,808 | 14.0% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 135,056 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 144,831 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 238,505 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 66,686 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 10,539 | 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-26** (208 days), totaling **11,563,905 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
 
 
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,088,990 events in 6712 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 217
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 157
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 124
 
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 170
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 196
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 315
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 380
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 446
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 608
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
 
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 | 208 | 11,563,905 | 55,595 | 2.1 GB | 1.1 GB | 53m19s | 44m03s | 1h36m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 5.6M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 601.4K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 302.8K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,554,894 | 48.0% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 601,441 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 733,992 | 6.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 302,833 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,179,275 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 329,615 | 2.9% | Repository forks |
556
+ | `creates` | CreateEvent | 1,624,097 | 14.0% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 135,572 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 145,357 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 239,728 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 66,925 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 10,570 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6224a01a37ad06d307d231fda2747baab6b4f58c8936db79294730123be47729
3
+ size 88849
data/creates/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:00fc1ecfc35316a49cb7976fee63376fe197b41f5e2ec3ef105545cc59d5fa21
3
+ size 305061
data/deletes/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9f5bcc2627233d17f8041477852f3999c02695d47af1f4a15dd7c86b6189f83
3
+ size 19674
data/forks/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:480e840b9542d565af463be58978f01398f6d880f62eb41e2840b3aa70bf054a
3
+ size 141620
data/issues/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1f711d184ee941a1dbb05da2c2432aa1be70158312e4e89ad44543a62751eac
3
+ size 516949
data/members/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bdb3f3cb21c0f84af7ae4c7c1f60cf26e8ff4192d5234e3748bb016de19278e
3
+ size 13467
data/public_events/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb0a141dbe21e5e425f60d17fe5164f9ce8ba1e76b60281c6e139151c3a81f2e
3
+ size 4163
data/pull_requests/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac5bca60c804d432de17f50c135085bb5e499e2b84087ade2d21d94db4839c1c
3
+ size 252990
data/pushes/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd4bf98a25fe6682ff4ba7dfcb32e19d40f44f8c39dbee27915cca975b709188
3
+ size 5511385
data/stars/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2dca78f600531ff6b1b97657ce798237a10bc309793da0f0498769161aa7f555
3
+ size 162570
data/wiki_pages/2011/11/26.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cdb1e1d56e93c1a77a0b7f70027fe022966253f44cb9d62dfcde2fe6b9cdb4b3
3
+ size 89623
stats.csv CHANGED
@@ -205,4 +205,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,38.5
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,0.0
 
 
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,38.5
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,0.0