tamnd commited on
Commit
e0d3849
·
verified ·
1 Parent(s): 622c7f4

Add 2012-06-15 — 113.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 **2012-06-14** (372 days), totaling **27,591,619 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 6.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.7 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,25 +71,25 @@ 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,690,605 events in 11113 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 353
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 283
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 258
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 197
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 266
86
- 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 309
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 376
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 393
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 472
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 548
92
- 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 612
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 847
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
@@ -132,13 +132,13 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ████████████████████████████░░ 13.5M
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 | 129 | 13,495,475 | 104,616 | 3.5 GB | 1.3 GB | 58m10s | 1h19m | 1h13m |
142
 
143
 
144
  ### Pushes per year
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ███████████████████████████░░░ 664.0K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 845.5K
165
  ```
166
 
167
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 12,745,871 | 46.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,401,058 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,006,578 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,216,328 | 4.4% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 67,465 | 0.2% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,754,567 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 813,465 | 2.9% | Repository forks |
563
- | `creates` | CreateEvent | 4,675,244 | 16.9% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 261,893 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 320,018 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 530,468 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
- | `public_events` | PublicEvent | 24,768 | 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-06-15** (373 days), totaling **27,704,613 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 6.2 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.7 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,690,635 events in 11128 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 354
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 283
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
81
  04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 236
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 259
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 197
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 226
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 267
86
+ 09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 339
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 310
88
  11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 376
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 394
90
  13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 472
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 548
92
+ 15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 613
93
  16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 847
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ████████████████████████████░░ 13.6M
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 | 130 | 13,608,469 | 104,680 | 3.5 GB | 1.3 GB | 58m33s | 1h19m | 1h14m |
142
 
143
 
144
  ### Pushes per year
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ███████████████████████████░░░ 669.4K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 849.0K
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 12,800,458 | 46.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,406,519 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,014,973 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,219,900 | 4.4% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 68,405 | 0.2% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,765,550 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 817,221 | 2.9% | Repository forks |
563
+ | `creates` | CreateEvent | 4,696,207 | 17.0% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 262,571 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 321,137 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 532,517 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 24,878 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ce1bd6d034811b026cd5521ba82eb2563e0c37f7bd49998735cc406b162383a
3
+ size 42239
data/creates/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1196c9d1adb1c8a11af652da471d63cfcfa341285813598c92303d17d553325
3
+ size 436983
data/deletes/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36f085ce02841d179c455dcdbef6b7a9bf0f081f4025356ba89027459faeb9f9
3
+ size 22080
data/forks/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:585ec50b3567a7ca4aeb4146d14b3d5b929877267f0ae564c026896a553809e4
3
+ size 93284
data/issue_comments/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:caed34dd0b4ab6f07162160cef31b1dcd084a44c48427a6386f7da8234d337bf
3
+ size 181014
data/issues/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6865957dd3655f59b71d6204bdbfdd8fab435113e8dd19ed0b5b95a35c0413f8
3
+ size 124315
data/public_events/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72d5dbe57a89c7782670b42ddef5165b9692a7c0d60c00c3f72baf270fc85607
3
+ size 5360
data/pull_requests/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9ea11d13336426731f4fc58609a6804d8a207d095694c638c95c95ff9d304265
3
+ size 660009
data/pushes/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99b6ad010698c2c73e34b998ab00eff90fd4480d8f8eb1713fa8ac2369159236
3
+ size 8783174
data/stars/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c4428e6ce827e6ae6e0f0453bb619dc716aa5d3f1070ddd9f6e04f36513e6d3
3
+ size 231307
data/wiki_pages/2012/06/15.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e6cf57d2e8544a5d61a9a51d20d04be10c4a95eaa9bb7df7f9c8bbf25a60212
3
+ size 142815
stats.csv CHANGED
@@ -370,4 +370,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
370
  2012-06-11,125807,551,59762,5967,10265,4238,0,1114,11667,4308,23311,759,0,1498,2255,0,112,0,34517457,28.4,11786086,38.1,28.4,31.4
371
  2012-06-12,130753,594,61566,6153,10545,4540,0,1262,12992,5058,23475,771,0,1333,2338,0,126,0,35908398,26.3,12061014,37.4,26.3,27.9
372
  2012-06-13,134305,520,63308,6353,10469,4338,0,1378,12689,4840,25675,754,0,1479,2367,0,135,0,35761514,21.9,12389385,21.8,21.9,25.7
373
- 2012-06-14,126048,521,59924,7237,9626,4063,0,1265,12247,4187,22644,650,0,1402,2165,0,117,0,33989362,23.2,11431625,33.6,23.2,0.0
 
 
370
  2012-06-11,125807,551,59762,5967,10265,4238,0,1114,11667,4308,23311,759,0,1498,2255,0,112,0,34517457,28.4,11786086,38.1,28.4,31.4
371
  2012-06-12,130753,594,61566,6153,10545,4540,0,1262,12992,5058,23475,771,0,1333,2338,0,126,0,35908398,26.3,12061014,37.4,26.3,27.9
372
  2012-06-13,134305,520,63308,6353,10469,4338,0,1378,12689,4840,25675,754,0,1479,2367,0,135,0,35761514,21.9,12389385,21.8,21.9,25.7
373
+ 2012-06-14,126048,521,59924,7237,9626,4063,0,1265,12247,4187,22644,650,0,1402,2165,0,117,0,33989362,23.2,11431625,33.6,23.2,30.9
374
+ 2012-06-15,112994,381,54587,5461,8395,3572,0,940,10983,3756,20963,678,0,1119,2049,0,110,0,30587924,22.8,10722580,23.5,22.8,0.0