tamnd commited on
Commit
5806d7e
·
verified ·
1 Parent(s): 681f211

Add 2011-12-07 — 74.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-12-06** (218 days), totaling **12,357,682 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.3 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,26 +71,26 @@ 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,112,981 events in 6892 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
79
- 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 184
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 182
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 221
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 235
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 323
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 383
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 452
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 617
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
@@ -136,7 +136,7 @@ duckdb.sql("""
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 218 | 12,357,682 | 56,686 | 2.3 GB | 1.2 GB | 56m58s | 45m56s | 1h40m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 650.2K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 323.7K
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,908,977 | 47.8% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 650,172 | 5.3% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 808,822 | 6.5% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 323,708 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,251,047 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 350,253 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 1,790,487 | 14.5% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 143,296 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 154,100 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 254,954 | 2.1% | Wiki page edits |
560
- | `members` | MemberEvent | 71,072 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 11,188 | 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-07** (219 days), totaling **12,432,471 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.3 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,113,015 events in 6916 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 220
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 209
79
+ 02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 185
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 168
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 167
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 126
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 133
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 175
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 222
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 207
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 282
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 324
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 384
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 453
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 618
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.7K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
 
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 219 | 12,432,471 | 56,769 | 2.3 GB | 1.2 GB | 57m29s | 46m09s | 1h41m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 653.7K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 326.2K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 5,945,976 | 47.8% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 653,748 | 5.3% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 814,268 | 6.5% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 326,201 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,258,676 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 352,486 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 1,803,481 | 14.5% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 143,902 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 155,075 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 256,312 | 2.1% | Wiki page edits |
560
+ | `members` | MemberEvent | 71,485 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 11,255 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c02f7bdd20848de0206b634aaaec9797ecf4ce3045a6e7397953c83898d39836
3
+ size 156444
data/creates/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c16f444a1184fb018622890c85b713c75cc0cecb505535706b178af8df792c1b
3
+ size 388007
data/deletes/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75810a8f59829d7f279f9975847a2c874852724f1a0f4a4e4dffc98dd7da90f0
3
+ size 24892
data/forks/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd9407424728c1d0a21136e2882ccc3a7d1af27c7478f8070fb839fe20c73696
3
+ size 206732
data/issues/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2c02d66fc201041029638de3510d9f896f66a0767f4c311062712b9344f8a4e
3
+ size 772679
data/members/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:601d8d83d13cd673b785acb17b6cd2e900c09b036492d863fb35e879b592ad59
3
+ size 21079
data/public_events/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2ad208999eb649d60185384b5e9572b757232614319d134a9f8af19ca5c59c2
3
+ size 5209
data/pull_requests/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55147fb734593a0122805c057e4d0b39f2771a2ef1fbcc2493e3c9ffa6653a2a
3
+ size 454371
data/pushes/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f185b4211276203d985a219f812fa3ecaacc1f289188d532d231a69fe933e332
3
+ size 8035539
data/stars/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c180e5f5fbd68f30b235015e11e6e3009443adcbabc78d8736f5a1e57392610a
3
+ size 253901
data/wiki_pages/2011/12/07.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b8c5ebdeeaca06a10fdb6b1a36605b313fe69abbf3715b4e86d4653e750c417
3
+ size 107683
stats.csv CHANGED
@@ -216,4 +216,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
216
  2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,8.8,7597772,18.6,8.8,28.6
217
  2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,9.1,8259169,19.1,9.1,25.7
218
  2011-12-05,78067,0,37239,4033,7225,2179,0,0,8513,2158,12852,889,0,918,1588,409,64,0,20882321,11.2,10429388,20.4,11.2,26.0
219
- 2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,12.4,11165296,22.9,12.4,0.0
 
 
216
  2011-12-03,62894,0,28797,3054,3701,1437,0,0,5535,1784,15588,593,0,545,1345,464,51,0,14982780,8.8,7597772,18.6,8.8,28.6
217
  2011-12-04,66025,0,31852,2820,3612,1464,0,0,5435,1697,15965,657,0,813,1362,299,49,0,15690212,9.1,8259169,19.1,9.1,25.7
218
  2011-12-05,78067,0,37239,4033,7225,2179,0,0,8513,2158,12852,889,0,918,1588,409,64,0,20882321,11.2,10429388,20.4,11.2,26.0
219
+ 2011-12-06,88479,0,39498,3634,5650,2438,0,0,8422,2408,22250,1063,0,1022,1599,426,69,0,22059348,12.4,11165296,22.9,12.4,27.7
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,0.0