tamnd commited on
Commit
a211fb0
·
verified ·
1 Parent(s): ecdae46

Add 2011-12-20 — 87.0K 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-19** (231 days), totaling **13,338,073 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.3 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,11 +71,11 @@ 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,143,810 events in 7154 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 214
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
@@ -84,18 +84,18 @@ Events from today are captured in near-real-time from the GitHub Events API and
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 222
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 247
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 292
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 333
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 394
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 461
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 629
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
- 21:00 ██████░░░░░░░░░░░░░░░░░░░░░░░ 74.5K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
@@ -131,12 +131,12 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ██████████████████████████████ 13.3M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
- | 2011 | 231 | 13,338,073 | 57,740 | 2.6 GB | 1.3 GB | 1h02m | 48m26s | 1h48m |
140
 
141
 
142
  ### Pushes per year
@@ -149,14 +149,14 @@ duckdb.sql("""
149
  ### Issues per year
150
 
151
  ```
152
- 2011 ██████████████████████████████ 698.6K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
- 2011 ██████████████████████████████ 351.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,352,406 | 47.6% | Git pushes with commits |
551
- | `issues` | IssuesEvent | 698,644 | 5.2% | Issue lifecycle events |
552
- | `issue_comments` | IssueCommentEvent | 878,880 | 6.6% | Comments on issues/PRs |
553
- | `pull_requests` | PullRequestEvent | 351,547 | 2.6% | PR lifecycle events |
554
- | `stars` | WatchEvent | 1,341,739 | 10.1% | Repository stars |
555
- | `forks` | ForkEvent | 376,809 | 2.8% | Repository forks |
556
- | `creates` | CreateEvent | 2,016,867 | 15.1% | Branch/tag/repo creation |
557
- | `deletes` | DeleteEvent | 155,867 | 1.2% | Branch/tag deletion |
558
- | `commit_comments` | CommitCommentEvent | 165,089 | 1.2% | Comments on commits |
559
- | `wiki_pages` | GollumEvent | 273,127 | 2.0% | Wiki page edits |
560
- | `members` | MemberEvent | 75,425 | 0.6% | Collaborator additions |
561
- | `public_events` | PublicEvent | 12,067 | 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-20** (232 days), totaling **13,425,034 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 1.3 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,145,662 events in 7175 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 216
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 189
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 176
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 174
 
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 138
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 179
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 227
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 223
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 248
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 292
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 333
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 397
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 462
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 630
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.8K
95
  18:00 ██████████████████████████████ 323.6K
96
  19:00 █████████████████████████████░ 316.3K
97
  20:00 ████████████████████████████░░ 304.2K
98
+ 21:00 ██████░░░░░░░░░░░░░░░░░░░░░░░ 76.3K
99
  22:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
100
  23:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
101
  ```
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ██████████████████████████████ 13.4M
135
  ```
136
 
137
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
138
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
139
+ | 2011 | 232 | 13,425,034 | 57,866 | 2.6 GB | 1.3 GB | 1h02m | 48m40s | 1h48m |
140
 
141
 
142
  ### Pushes per year
 
149
  ### Issues per year
150
 
151
  ```
152
+ 2011 ██████████████████████████████ 702.5K
153
  ```
154
 
155
 
156
  ### Pull requests per year
157
 
158
  ```
159
+ 2011 ██████████████████████████████ 354.0K
160
  ```
161
 
162
 
 
547
 
548
  | Table | GitHub Event | Events | % | Description |
549
  |-------|-------------|-------:|---:|-------------|
550
+ | `pushes` | PushEvent | 6,388,218 | 47.6% | Git pushes with commits |
551
+ | `issues` | IssuesEvent | 702,535 | 5.2% | Issue lifecycle events |
552
+ | `issue_comments` | IssueCommentEvent | 884,808 | 6.6% | Comments on issues/PRs |
553
+ | `pull_requests` | PullRequestEvent | 353,993 | 2.6% | PR lifecycle events |
554
+ | `stars` | WatchEvent | 1,349,710 | 10.1% | Repository stars |
555
+ | `forks` | ForkEvent | 379,212 | 2.8% | Repository forks |
556
+ | `creates` | CreateEvent | 2,039,025 | 15.2% | Branch/tag/repo creation |
557
+ | `deletes` | DeleteEvent | 159,486 | 1.2% | Branch/tag deletion |
558
+ | `commit_comments` | CommitCommentEvent | 166,005 | 1.2% | Comments on commits |
559
+ | `wiki_pages` | GollumEvent | 274,510 | 2.0% | Wiki page edits |
560
+ | `members` | MemberEvent | 75,791 | 0.6% | Collaborator additions |
561
+ | `public_events` | PublicEvent | 12,135 | 0.1% | Repo made public |
562
 
563
  ## How it's built
564
 
data/commit_comments/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ece107e8fe34fbfc77fc81c82590d3daaff474f5f1cf89bda54d3546c9b577c
3
+ size 135132
data/creates/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d66ec4643a1b0b8fe5116fe8e71d66e69e0a8edaae81703ecdfed138d89b8a68
3
+ size 447161
data/deletes/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:040f1894abf8f45aba95d2a237b09655271ca590efbaa48a8e63d406ef0cd245
3
+ size 58692
data/forks/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:005a25b985e31ef9b0f57f6afdb1c8bdd92a7c5e4760fd5ca61c77e7e5c31b87
3
+ size 221989
data/issues/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b98da5cc073904ce1c38cca7a7e8281b56e851663ac110d707dc860472672ef
3
+ size 859268
data/members/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e31c1192701536004bf3e246344f6f22e865a6ffba5daeb00045ca4c95c7cc4
3
+ size 17517
data/public_events/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94272e318a873504a0d769c3f9bfe4d6bb0eb0c8d22e54ed368572df4962d7b3
3
+ size 5216
data/pull_requests/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47365ae3ac8dd973b08fc62e3787a74f4ad12578106417c8f0d635f3d9431f8b
3
+ size 487382
data/pushes/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a1e3679e4ceb13965cf9c48db4b96604472c7d2a124c4ea5e8fe307427eb5db
3
+ size 7651031
data/stars/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43f85be53927ef8affa579f613e02f8135703ef7dfd953af487954116ad27a2e
3
+ size 238502
data/wiki_pages/2011/12/20.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db9f2ff5d37f1077507ca236eab67faad6790acb8291669f096433b1b6b444f3
3
+ size 107595
stats.csv CHANGED
@@ -229,4 +229,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
229
  2011-12-16,89523,0,38686,4011,6301,2730,0,0,7749,2464,23300,986,0,1009,1824,372,91,0,22741485,13.1,11165675,21.6,13.1,32.1
230
  2011-12-17,57846,0,25237,2511,3441,1390,0,0,4750,1737,16148,443,0,671,1247,234,37,0,13868251,7.9,7374948,20.3,7.9,30.3
231
  2011-12-18,61955,0,28149,3104,3633,1486,0,0,5269,1716,15805,745,0,583,1239,175,51,0,14773645,10.3,7704091,32.5,10.3,26.7
232
- 2011-12-19,76919,0,37706,3782,5856,2578,0,0,7586,2408,13193,889,0,984,1506,328,103,0,21639337,12.7,10652793,21.5,12.7,0.0
 
 
229
  2011-12-16,89523,0,38686,4011,6301,2730,0,0,7749,2464,23300,986,0,1009,1824,372,91,0,22741485,13.1,11165675,21.6,13.1,32.1
230
  2011-12-17,57846,0,25237,2511,3441,1390,0,0,4750,1737,16148,443,0,671,1247,234,37,0,13868251,7.9,7374948,20.3,7.9,30.3
231
  2011-12-18,61955,0,28149,3104,3633,1486,0,0,5269,1716,15805,745,0,583,1239,175,51,0,14773645,10.3,7704091,32.5,10.3,26.7
232
+ 2011-12-19,76919,0,37706,3782,5856,2578,0,0,7586,2408,13193,889,0,984,1506,328,103,0,21639337,12.7,10652793,21.5,12.7,30.3
233
+ 2011-12-20,86961,0,35812,3891,5928,2446,0,0,7971,2403,22158,3619,0,916,1383,366,68,0,21150099,14.7,10229485,37.3,14.7,0.0