tamnd commited on
Commit
ba0a551
·
verified ·
1 Parent(s): 8377ae2

Add 2011-12-11 — 58.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-12-10** (222 days), totaling **12,654,862 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.2 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,126,848 events in 7004 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 171
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 132
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 213
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 239
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 284
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 326
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 387
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 455
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 620
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
- 21:00 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 57.7K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -136,27 +136,27 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 222 | 12,654,862 | 57,003 | 2.4 GB | 1.2 GB | 58m31s | 46m40s | 1h43m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
- 2011 ██████████████████████████████ 6.0M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 666.8K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 332.5K
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 | 6,046,031 | 47.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 666,754 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 831,575 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 332,506 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,279,642 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 358,444 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,852,752 | 14.6% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 146,367 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 157,268 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 259,978 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 72,479 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 11,460 | 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-12-11** (223 days), totaling **12,713,052 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.2 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,129,322 events in 7021 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 172
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 214
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 241
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 327
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 387
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 455
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 622
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
+ 21:00 █████░░░░░░░░░░░░░░░░░░░░░░░░░ 60.2K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 223 | 12,713,052 | 57,009 | 2.4 GB | 1.2 GB | 58m47s | 46m50s | 1h44m |
140
 
141
 
142
  ### Pushes per year
143
 
144
  ```
145
+ 2011 ██████████████████████████████ 6.1M
146
  ```
147
 
148
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 669.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 333.7K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,072,902 | 47.8% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 669,104 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 834,891 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 333,653 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,285,097 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 359,897 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,867,807 | 14.7% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 147,011 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 157,929 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 260,992 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 72,670 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,493 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bf18a0bf15565c9951111b9164e217d48549c02017a2aaf7860eefec65fb6c0d
3
+ size 105247
data/creates/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfb9ebea988de15129eff45bae6265f88fa6437c046a00ac5712df34d66f6bf1
3
+ size 306892
data/deletes/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53e0154bfe72bd42a7384bbc2d4ea99ec9a9f7c3ff42c9f9f773acb4521d8bad
3
+ size 22572
data/forks/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ab14554d5dd533d693af32484ccc8745bd92b3d6a3596b79be911645e6d780cb
3
+ size 146163
data/issues/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b713aaf21607d95dbc42bccc8751e96a9d44eb95a4a71f17750f7e0a05931ca2
3
+ size 522764
data/members/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62c44ceb23efee5a71381f0863c7903d7c5a753f964a9c5bc3ef08194ed354da
3
+ size 11996
data/public_events/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90e11ab32aca99e6a6ab91c353b9091d9a8cffeaf8ac3dbd8b39f16bf9fc4e03
3
+ size 4008
data/pull_requests/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2e7767f7a08d7f820bdf137a36ece7487d0e5d86ac4ab417eaf91e21f0ded13
3
+ size 241911
data/pushes/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9bc43885208471faaf59260c8a7ea6198bdcd9f57bdb4064dd19e5a62e8799d
3
+ size 5816926
data/stars/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1eff4878d3e8fcb59dbdb46c765346a1ab7d6c165c23aa45fc5971de2f70de3
3
+ size 164544
data/wiki_pages/2011/12/11.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca841e154c825ddedb3945f0330409dec1d582a7195793032e66e2dac0895ddb
3
+ size 79196
stats.csv CHANGED
@@ -220,4 +220,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
220
  2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.0,10426536,31.6,13.0,35.6
221
  2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,11.4,10071428,20.7,11.4,85.8
222
  2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,11.2,10601648,21.7,11.2,28.0
223
- 2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,0.0
 
 
220
  2011-12-07,74789,0,36999,3576,5446,2493,0,0,7629,2233,12994,606,0,975,1358,413,67,0,20936943,13.0,10426536,31.6,13.0,35.6
221
  2011-12-08,74620,0,35150,5282,6974,2396,0,0,7517,2136,11890,779,0,769,1296,358,73,0,20299164,11.4,10071428,20.7,11.4,85.8
222
  2011-12-09,85900,0,37621,4200,5944,2509,0,0,7779,2274,21959,873,0,865,1417,376,83,0,21363304,11.2,10601648,21.7,11.2,28.0
223
+ 2011-12-10,61871,0,27284,3524,4389,1400,0,0,5670,1548,15422,813,0,559,953,260,49,0,14574716,8.3,7581923,18.9,8.3,35.3
224
+ 2011-12-11,58190,0,26871,2350,3316,1147,0,0,5455,1453,15055,644,0,661,1014,191,33,0,13702958,9.9,7422219,16.8,9.9,0.0