tamnd commited on
Commit
d5301e2
·
verified ·
1 Parent(s): d99b6bd

Add 2011-11-18 — 66.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-17** (199 days), totaling **10,971,242 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,068,561 events in 6525 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 214
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 202
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 175
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 165
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 190
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 214
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 256
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 312
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 372
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 438
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 599
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.0K
98
- 21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 11.0M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 199 | 10,971,242 | 55,131 | 2.0 GB | 1.0 GB | 50m22s | 41m05s | 1h30m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 572.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 287.9K
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,287,356 | 48.2% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 572,450 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 693,148 | 6.3% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 287,913 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,124,767 | 10.3% | Repository stars |
555
- | `forks` | ForkEvent | 312,783 | 2.9% | Repository forks |
556
- | `creates` | CreateEvent | 1,481,588 | 13.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 129,709 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 139,215 | 1.3% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 228,915 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 63,673 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 10,119 | 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-19** (201 days), totaling **11,085,756 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,077,933 events in 6589 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 214
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 178
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 144
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 162
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 175
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 121
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 128
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 166
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 215
87
  10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 190
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 259
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 312
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 375
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 441
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 601
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.2K
97
  20:00 ████████████████████████████░░ 304.0K
98
+ 21:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 9.3K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
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 | 201 | 11,085,756 | 55,153 | 2.0 GB | 1.0 GB | 50m58s | 42m02s | 1h32m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 577.3K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 290.8K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,339,783 | 48.2% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 577,299 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 699,914 | 6.3% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 290,773 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,134,245 | 10.2% | Repository stars |
555
+ | `forks` | ForkEvent | 315,983 | 2.9% | Repository forks |
556
+ | `creates` | CreateEvent | 1,511,564 | 13.6% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 130,875 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 140,375 | 1.3% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 230,774 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 64,354 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 10,211 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b20f230888a21a0a7ae0a8cac851abfc6cad148f16425ecc63cfba35161b5840
3
+ size 111850
data/creates/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efa7f4706cb3dda43feb7f4cb08f9746806350923ac466764642b3a27917d0db
3
+ size 357069
data/deletes/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e62654e8e3abbd9eef6cf2d1a15b34c1fa9c8c58d9463cb7ca7f904d02ef18e6
3
+ size 26142
data/forks/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3c060fa80f0945ec8d51cfd1531dfbb017b0144681b1c0e493095702f3d8689
3
+ size 180131
data/issues/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be851a5af1759f3c5d7081824a4de3b61ed2df5f9caf856d8796965d4513eb2d
3
+ size 665823
data/members/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e7a9b7c7ca514cf7380b848cc687607abefbb0171e0e485b33ea197e149518c
3
+ size 19556
data/public_events/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f17c8f2f76ded3cfaf20057a350ceb768bcc187f4ba56aa185ebea22dbe3fbec
3
+ size 4936
data/pull_requests/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42f1b1e9851203a170391c572023210fb51d7e3985b6119a87d36c0b9437140f
3
+ size 336196
data/pushes/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b15c660e432c899de00f1e4950e13629abcb9214395b420ddc3e3473875de5
3
+ size 6643962
data/stars/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dce201a031b895ef4096859c8b668a90619469a429d405f02f1e478d2814ed04
3
+ size 175316
data/wiki_pages/2011/11/18.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8814676372653891c8672d037879ac29699f29a07cb8cba9bc30c00df0b464f7
3
+ size 81615
stats.csv CHANGED
@@ -197,4 +197,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
197
  2011-11-14,84147,0,34765,6348,5175,2104,0,0,6522,1988,23280,1310,0,751,1389,441,74,0,21347793,39.4,11181385,28.9,39.4,27.1
198
  2011-11-15,79802,0,36717,4113,5696,2337,0,0,7651,2391,17369,792,0,779,1419,465,73,0,20836691,35.1,10361962,27.9,35.1,26.2
199
  2011-11-16,72750,0,33053,3573,5363,2137,0,0,6547,2054,16609,765,0,735,1374,469,71,0,18698031,34.7,9308851,24.1,34.7,31.3
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,0.0
 
 
 
197
  2011-11-14,84147,0,34765,6348,5175,2104,0,0,6522,1988,23280,1310,0,751,1389,441,74,0,21347793,39.4,11181385,28.9,39.4,27.1
198
  2011-11-15,79802,0,36717,4113,5696,2337,0,0,7651,2391,17369,792,0,779,1419,465,73,0,20836691,35.1,10361962,27.9,35.1,26.2
199
  2011-11-16,72750,0,33053,3573,5363,2137,0,0,6547,2054,16609,765,0,735,1374,469,71,0,18698031,34.7,9308851,24.1,34.7,31.3
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,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,0.0