tamnd commited on
Commit
63cfd89
·
verified ·
1 Parent(s): 89f0e66

Add 2012-07-19 — 122.6K 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-07-18** (397 days), totaling **30,759,174 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 7.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.9 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,16 +71,16 @@ 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,789,995 events in 11736 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 375
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 352
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 296
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 247
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 266
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 203
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 280
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 345
@@ -88,16 +88,16 @@ Events from today are captured in near-real-time from the GitHub Events API and
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 388
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 406
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 483
91
- 14:00 █░░░░��░░░░░░░░░░░░░░░░░░░░░░░░ 577
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 630
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 890
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.6K
97
  20:00 ████████████████████████████░░ 304.7K
98
  21:00 ████████████████████████░░░░░░ 264.0K
99
  22:00 █████████████████████████░░░░░ 273.4K
100
- 23:00 ████████████████░░░░░░░░░░░░░░ 179.9K
101
  ```
102
 
103
 
@@ -132,28 +132,28 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 █████████████████████████░░░░░ 14.1M
135
- 2012 ██████████████████████████████ 16.7M
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 | 154 | 16,663,030 | 108,201 | 4.2 GB | 1.6 GB | 1h08m | 1h36m | 1h27m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████░░░░ 6.7M
148
- 2012 ██████████████████████████████ 7.5M
149
  ```
150
 
151
 
152
  ### Issues per year
153
 
154
  ```
155
- 2011 █████████████████████████░░░░ 737.1K
156
- 2012 ██████████████████████████████ 848.7K
157
  ```
158
 
159
 
@@ -161,15 +161,15 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 941.0K
165
  ```
166
 
167
 
168
  ### Stars per year
169
 
170
  ```
171
- 2011 █████████████████████████░░░░ 1.4M
172
- 2012 ██████████████████████████████ 1.6M
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 | 14,152,906 | 46.0% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,585,807 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,249,578 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,311,823 | 4.3% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 91,322 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,050,012 | 9.9% | Repository stars |
562
- | `forks` | ForkEvent | 919,377 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 5,358,897 | 17.4% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 279,229 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 352,200 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 584,466 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 27,474 | 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-07-20** (399 days), totaling **30,995,593 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 7.0 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.0 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,791,739 events in 11754 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 376
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 353
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 296
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 278
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 247
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 204
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 280
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 345
 
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 388
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 406
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 483
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 579
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 631
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 891
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.6K
97
  20:00 ████████████████████████████░░ 304.7K
98
  21:00 ████████████████████████░░░░░░ 264.0K
99
  22:00 █████████████████████████░░░░░ 273.4K
100
+ 23:00 ████████████████░░░░░░░░░░░░░░ 181.6K
101
  ```
102
 
103
 
 
132
 
133
  ```
134
  2011 █████████████████████████░░░░░ 14.1M
135
+ 2012 ██████████████████████████████ 16.9M
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 | 156 | 16,899,449 | 108,329 | 4.3 GB | 1.6 GB | 1h09m | 1h37m | 1h28m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████░░░░ 6.7M
148
+ 2012 ██████████████████████████████ 7.6M
149
  ```
150
 
151
 
152
  ### Issues per year
153
 
154
  ```
155
+ 2011 █████████████████████████░░░░ 737.1K
156
+ 2012 ██████████████████████████████ 861.8K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ███████████░░░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 949.5K
165
  ```
166
 
167
 
168
  ### Stars per year
169
 
170
  ```
171
+ 2011 █████████████████████████░░░░ 1.4M
172
+ 2012 ██████████████████████████████ 1.7M
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 14,269,104 | 46.0% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,598,857 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,273,257 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,320,366 | 4.3% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 93,641 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,074,897 | 9.9% | Repository stars |
562
+ | `forks` | ForkEvent | 927,963 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 5,387,421 | 17.4% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 280,684 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 354,809 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 589,202 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 27,668 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25451e1e39f8f24bf28c9f62d1e3d097960c518367ac4d8946f46734b193af46
3
+ size 49984
data/creates/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5c0f7fd2910fded938c1da1d123ef0189b44d7a5173cf8284edc7d91cf9b794
3
+ size 514536
data/deletes/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2eb7c7d1c678e9817f46ed1b986c843dda9b1511889bb8caf9ca42d06dc791a
3
+ size 25631
data/forks/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaa375d1b35206e6d1a74082d6f5f99e5978790cba5805f94afc19bb5668614d
3
+ size 114569
data/issue_comments/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dbbe26b4fe70a9e7170edf4bacfc1b6367d6657be6e4b914e8d5874f55d56273
3
+ size 221368
data/issues/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17a8d76542010f27605e88cebed242fb96b7bbe0e4daf02f81e778c0c0a5e1e8
3
+ size 146217
data/public_events/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94ee2f328e73d472800b45db5a954f7dcb09e23d570fce7ba195982e00b5bb64
3
+ size 5323
data/pull_requests/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6ba211eab306332f17e0252303298e15b8b83805b1aa424c42fb513bcba9a98
3
+ size 788002
data/pushes/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd8e8821ac8bc572e29d48bcba95971fc27dadc9d13e852bcdf53f6dd6dbb0d3
3
+ size 10129129
data/stars/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0919e693cf505a63788d5b30438ab22ba4f15043506ec7fe442a3ab05e0bf284
3
+ size 330320
data/wiki_pages/2012/07/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4347bfb2c82475ccf67d891cdeb1563dbfa600d581584d1518b1ea08b652b596
3
+ size 177501
stats.csv CHANGED
@@ -395,4 +395,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
395
  2012-07-15,85659,782,45190,3983,5779,2319,0,714,8839,3387,11467,426,0,828,1875,0,70,0,24605505,40.2,8516150,21.3,40.2,37.3
396
  2012-07-16,123849,1257,61189,6490,10724,4659,0,1132,13322,4707,15370,832,0,1561,2485,0,121,0,36655202,64.4,11998706,29.5,64.4,39.2
397
  2012-07-17,128909,1305,64030,6688,11157,4869,0,1115,13633,4870,15844,817,0,1725,2718,0,138,0,38356755,61.7,12892450,24.2,61.7,29.8
398
- 2012-07-18,124007,1047,62235,6344,10663,4457,0,1308,13807,4464,14824,817,0,1439,2491,0,111,0,37056256,58.0,12357709,22.5,58.0,0.0
 
 
 
395
  2012-07-15,85659,782,45190,3983,5779,2319,0,714,8839,3387,11467,426,0,828,1875,0,70,0,24605505,40.2,8516150,21.3,40.2,37.3
396
  2012-07-16,123849,1257,61189,6490,10724,4659,0,1132,13322,4707,15370,832,0,1561,2485,0,121,0,36655202,64.4,11998706,29.5,64.4,39.2
397
  2012-07-17,128909,1305,64030,6688,11157,4869,0,1115,13633,4870,15844,817,0,1725,2718,0,138,0,38356755,61.7,12892450,24.2,61.7,29.8
398
+ 2012-07-18,124007,1047,62235,6344,10663,4457,0,1308,13807,4464,14824,817,0,1439,2491,0,111,0,37056256,58.0,12357709,22.5,58.0,29.5
399
+ 2012-07-19,122567,844,61638,6103,10457,4475,0,1259,13344,4622,14969,776,0,1437,2542,0,101,0,36760982,58.1,12502580,34.7,58.1,0.0
400
+ 2012-07-20,113852,797,54560,6947,13222,4068,0,1060,11541,3964,13555,679,0,1172,2194,0,93,0,32571208,55.0,10939676,22.4,55.0,0.0