tamnd commited on
Commit
90c0b40
·
verified ·
1 Parent(s): 7724f5e

Add 2012-04-05 — 111.3K events, 11 files

Browse files
README.md CHANGED
@@ -61,9 +61,9 @@ 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 **2012-04-04** (316 days), totaling **21,425,445 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 4.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
@@ -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,500,136 events in 9779 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 312
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 293
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 250
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 218
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 246
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 299
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 342
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 366
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 428
91
- 14:00 █░░░���░░░░░░░░░░░░░░░░░░░░░░░░░ 497
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 563
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 786
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.8K
96
  19:00 █████████████████████████████░ 316.5K
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ███████████████░░░░░░░░░░░░░░░ 7.3M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
- | 2012 | 73 | 7,329,301 | 100,401 | 1.9 GB | 810.6 MB | 35m24s | 37m13s | 42m30s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 █████████████░░░░░░░░░░░░░░░░ 3.1M
149
  ```
150
 
151
 
@@ -153,15 +153,15 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████████████░░░░░░░░░░░░░░░ 365.2K
157
  ```
158
 
159
 
160
  ### Pull requests per year
161
 
162
  ```
163
- 2011 ████████████████░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 653.9K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ██████████████░░░░░░░░░░░░░░░░ 694.3K
173
  ```
174
 
175
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 9,780,733 | 45.7% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,102,274 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,522,657 | 7.1% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,024,723 | 4.8% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 25,222 | 0.1% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,112,325 | 9.9% | Repository stars |
562
- | `forks` | ForkEvent | 603,232 | 2.8% | Repository forks |
563
- | `creates` | CreateEvent | 3,591,510 | 16.8% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 226,738 | 1.1% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 249,101 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 418,739 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
- | `public_events` | PublicEvent | 19,090 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
 
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 **2012-04-05** (317 days), totaling **21,536,710 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 4.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.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
 
68
  The underlying data comes from [GH Archive](https://www.gharchive.org/), created by [Ilya Grigorik](https://www.igvita.com/), which has been recording every public GitHub event via the [Events API](https://docs.github.com/en/rest/activity/events) since 2011. Released under the [Open Data Commons Attribution License (ODC-By) v1.0](https://opendatacommons.org/licenses/by/1-0/).
69
 
 
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,500,163 events in 9794 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 312
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 293
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 250
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 219
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 212
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 228
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 183
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 194
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 246
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 299
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 287
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 343
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 367
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 428
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 498
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 564
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 788
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 120.9K
95
  18:00 ██████████████████████████████ 323.8K
96
  19:00 █████████████████████████████░ 316.5K
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ███████████████░░░░░░░░░░░░░░░ 7.4M
136
  ```
137
 
138
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
139
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
140
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
141
+ | 2012 | 74 | 7,440,566 | 100,548 | 1.9 GB | 819.9 MB | 35m48s | 38m04s | 43m07s |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 █████████████░░░░░░░░░░░░░░░░ 3.2M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████████░░░░░░░░░░░░░░░ 370.3K
157
  ```
158
 
159
 
160
  ### Pull requests per year
161
 
162
  ```
163
+ 2011 ████████████████░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 657.6K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ██████████████░░░░░░░░░░░░░░░░ 705.5K
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 9,833,679 | 45.7% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,107,363 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,532,907 | 7.1% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,028,483 | 4.8% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 25,836 | 0.1% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,123,466 | 9.9% | Repository stars |
562
+ | `forks` | ForkEvent | 606,861 | 2.8% | Repository forks |
563
+ | `creates` | CreateEvent | 3,610,558 | 16.8% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 227,371 | 1.1% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 250,319 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 421,106 | 2.0% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.5% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 19,204 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c302b3f98a64311090688828dadee4f4e2b7729ed83a93d9babefa53b36edf4c
3
+ size 38550
data/creates/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:81684d3e154dd909d428462bafdb9abf6cca028fead52f2a10574d521e70b841
3
+ size 409193
data/deletes/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52893aa11658fe0b44754b0c22990f7d0a7bdf33242c76377fd2342124bd668a
3
+ size 18690
data/forks/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:172dd1d119999b9835f988aca51aa68e22aad9341a30dc22dac8f0132f85349f
3
+ size 74804
data/issue_comments/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4bd7641a570a631069afbd75a2fc44246bb74888e0a86c31050371f08cc8ffb3
3
+ size 155319
data/issues/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ebb1d7678d6861d0c96e1767fe1e581609f414ea3e518ca32a2433bae8cba726
3
+ size 103401
data/public_events/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f8332283d5605993602c3e1b764dee791e14f9ab9c85dbb9c81c8ca53e474e5
3
+ size 4890
data/pull_requests/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5672cb6ff95c24565d7aebac2b9800fb6efcdbed8201118e436185c39d93f1e3
3
+ size 621929
data/pushes/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6231bd37419c62fe9b74488ffdd1e679f70519e991a3f00caaf36c9f352b6606
3
+ size 8017053
data/stars/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e46b06535d4307dab0d9cc888250ca0b21af33cc48a0ba544b29fd321c35348
3
+ size 173112
data/wiki_pages/2012/04/05.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3e4a604ddaf67853361c56cb062271ac4718ff80d330afff9a0f489cbfdad62
3
+ size 114921
stats.csv CHANGED
@@ -314,4 +314,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
314
  2012-04-01,83839,2519,42564,3520,5128,2162,0,410,8282,2481,16043,432,0,867,1593,0,83,0,22320218,42.4,7206752,21.8,42.4,38.9
315
  2012-04-02,120592,3844,54425,5642,9112,3659,0,981,11989,8772,21053,703,0,1382,2227,0,120,0,32010536,59.3,9850325,24.3,59.3,44.6
316
  2012-04-03,154268,6937,56253,15535,36310,3952,0,925,11831,3623,20751,821,0,1406,2246,0,112,0,33445353,69.3,10232409,24.4,69.3,31.6
317
- 2012-04-04,136906,4982,56281,5456,8589,3721,0,736,33317,3708,20192,734,0,1371,2148,0,134,0,34061673,61.0,10399507,22.1,61.0,0.0
 
 
314
  2012-04-01,83839,2519,42564,3520,5128,2162,0,410,8282,2481,16043,432,0,867,1593,0,83,0,22320218,42.4,7206752,21.8,42.4,38.9
315
  2012-04-02,120592,3844,54425,5642,9112,3659,0,981,11989,8772,21053,703,0,1382,2227,0,120,0,32010536,59.3,9850325,24.3,59.3,44.6
316
  2012-04-03,154268,6937,56253,15535,36310,3952,0,925,11831,3623,20751,821,0,1406,2246,0,112,0,33445353,69.3,10232409,24.4,69.3,31.6
317
+ 2012-04-04,136906,4982,56281,5456,8589,3721,0,736,33317,3708,20192,734,0,1371,2148,0,134,0,34061673,61.0,10399507,22.1,61.0,36.7
318
+ 2012-04-05,111265,3372,52946,5089,10250,3760,0,614,11141,3629,19048,633,0,1218,2367,0,114,0,30435424,51.3,9731862,24.2,51.3,0.0