tamnd commited on
Commit
bfa81d4
·
verified ·
1 Parent(s): 07810b1

Add 2011-12-13 — 82.7K 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-12** (224 days), totaling **12,799,838 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,12 +71,12 @@ 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,132,366 events in 7053 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 211
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 187
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
@@ -84,11 +84,11 @@ Events from today are captured in near-real-time from the GitHub Events API and
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 215
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 243
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 288
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 328
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 389
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 456
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 625
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 12.8M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 224 | 12,799,838 | 57,142 | 2.4 GB | 1.2 GB | 59m12s | 47m02s | 1h44m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 673.1K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 336.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 | 6,111,641 | 47.7% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 673,123 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 840,882 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 335,986 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,293,199 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 362,093 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,889,252 | 14.8% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 147,860 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 159,005 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 262,487 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 73,124 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 11,580 | 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-13** (225 days), totaling **12,882,507 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,132,392 events in 7063 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 188
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 173
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
 
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 134
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 177
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 243
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 288
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 329
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 390
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 456
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 625
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 12.9M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 225 | 12,882,507 | 57,255 | 2.4 GB | 1.2 GB | 59m31s | 47m15s | 1h45m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 676.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 338.4K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,147,290 | 47.7% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 676,654 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 846,499 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 338,425 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,300,750 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 364,246 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,908,731 | 14.8% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 151,291 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 159,805 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 264,060 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 73,513 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,637 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:60d2242d3d164013957e7bdaaf674019cb6db432407ef00607ac8646518ce075
3
+ size 127669
data/creates/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc80b94ba4c9644d2ae6c4729a18f244042371614f315fca441562f5107ecf6b
3
+ size 422870
data/deletes/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c23f9ddd39f6aaae4aedefe2928f034ffd1abc56c9b4218e861d98242f8be21
3
+ size 44645
data/forks/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5e078b27b88a4dcdea29fceff8142f908648f5a186c858b4e79ca5e0b3e21b9
3
+ size 199351
data/issues/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e87ca48eea7b39ead244a4e08f66e3702fcc29352bd6427fd4cf82eb3656448
3
+ size 738943
data/members/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:22852eb510933b25f7f19e70ea1ccd35010265482ef21970ef97f3ada3655e7c
3
+ size 19688
data/public_events/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:20db270a0872e56626379aca78be1c94a40ebed14868bb904b74a619d72407f2
3
+ size 5315
data/pull_requests/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ccbba44b36c89adaba45ce25e6cc6927e578ab858917d2be4b457cb5558de0a
3
+ size 443309
data/pushes/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83991f9362617e557e58b532d32a35a8c2f1afe7e2645f3bde85bdd1d698d5f4
3
+ size 7734389
data/stars/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1b860d7ce4df73015afc405008d28e3b436c54650058cd53ee9218fe9a5ec6eb
3
+ size 220930
data/wiki_pages/2011/12/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:756fe833ee54f7ef35ba27b1381decd643cb3c4df7ad50c30fec34246a71b417
3
+ size 122865
stats.csv CHANGED
@@ -222,4 +222,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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,35.3
225
- 2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,11.8,11037967,24.2,11.8,0.0
 
 
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,35.3
225
+ 2011-12-12,86786,0,38739,4019,5991,2333,0,0,8102,2196,21445,849,0,1076,1495,454,87,0,21823651,11.8,11037967,24.2,11.8,28.6
226
+ 2011-12-13,82669,0,35649,3531,5617,2439,0,0,7551,2153,19479,3431,0,800,1573,389,57,0,20503814,13.2,10079974,19.8,13.2,0.0