tamnd commited on
Commit
78a2ced
·
verified ·
1 Parent(s): b1f13d5

Add 2012-06-27 — 127.4K 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-06-26** (384 days), totaling **28,945,558 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.8 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,33 +71,33 @@ 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,713,256 events in 11323 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 360
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 344
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 240
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 262
83
- 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 273
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 342
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 312
88
- 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 380
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 398
90
  13:00 █░░��░░░░░░░░░░░░░░░░░░░░░░░░░░ 476
91
- 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 549
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 619
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 856
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.3K
100
- 23:00 █████████░░░░░░░░░░░░░░░░░░░░ 103.5K
101
  ```
102
 
103
 
@@ -132,28 +132,28 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ████████████████████████████░░ 14.1M
135
- 2012 ██████████████████████████████ 14.8M
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 | 141 | 14,849,414 | 105,314 | 3.8 GB | 1.4 GB | 1h02m | 1h24m | 1h20m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 █████████████████████████████░ 6.7M
148
- 2012 ██████████████████████████████ 6.7M
149
  ```
150
 
151
 
152
  ### Issues per year
153
 
154
  ```
155
- 2011 █████████████████████████████ 737.1K
156
- 2012 █████████████████████████████ 734.9K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ████████████░░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 886.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 | 13,388,306 | 46.3% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,472,017 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,109,148 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,257,327 | 4.3% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 77,877 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,890,017 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 863,785 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 4,924,839 | 17.0% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 269,314 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 334,189 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 553,801 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
- | `public_events` | PublicEvent | 25,982 | 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-27** (385 days), totaling **29,072,942 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.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 2.8 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,723,619 events in 11348 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 363
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 344
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 241
82
  05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 262
83
+ 06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 199
84
  07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
85
  08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 273
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 342
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 313
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 381
89
  12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 398
90
  13:00 █░░��░░░░░░░░░░░░░░░░░░░░░░░░░░ 476
91
+ 14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 550
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 619
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 859
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.3K
100
+ 23:00 █████████░░░░░░░░░░░░░░░░░░░░ 113.8K
101
  ```
102
 
103
 
 
132
 
133
  ```
134
  2011 ████████████████████████████░░ 14.1M
135
+ 2012 ██████████████████████████████ 15.0M
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 | 142 | 14,976,798 | 105,470 | 3.8 GB | 1.4 GB | 1h03m | 1h24m | 1h20m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 █████████████████████████████░ 6.7M
148
+ 2012 ██████████████████████████████ 6.8M
149
  ```
150
 
151
 
152
  ### Issues per year
153
 
154
  ```
155
+ 2011 █████████████████████████████ 737.1K
156
+ 2012 █████████████████████████████ 744.4K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ████████████░░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 891.0K
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 13,449,856 | 46.3% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,481,492 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,119,487 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,261,887 | 4.3% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 79,145 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,902,942 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 868,240 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 4,942,249 | 17.0% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 270,130 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 335,507 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 556,379 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 26,116 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37039502a1f74be8516dd0b3d513435ae50458237782c7bf18b9e92a8ffa78fe
3
+ size 47252
data/creates/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bb655ad3d34597cb52b43fb3966d997bb2af4dea1bef48be8b22c74c47d6f6c
3
+ size 477443
data/deletes/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcc00497be7ef8ae262c6d9ec2b035829da54845e6d2046b0db8d6e9d3b32d27
3
+ size 25968
data/forks/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:909e988952a0c23144a890322af32433943e2ac2a0810b4bb9e0cbed85cac1e6
3
+ size 108758
data/issue_comments/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3604190339c678d9dbf13c397fe07562ca953fbad96b4c89dc616c82ba6ae8bd
3
+ size 219878
data/issues/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d1d9ec0c3074a40ad1ab00cf96647be3b6b68300205033b80ffe28c99aa20841
3
+ size 174558
data/public_events/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0981dcf5088c03519718057f6eccfbfb7af6bdadc2d466c96342fbb0987a7121
3
+ size 6084
data/pull_requests/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83c6243e9c02f115fb0e9a28fe93ba1928f90700436e54f17f832a9b0b9aab6a
3
+ size 777756
data/pushes/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1009a820aec99946d8308ecac6cded348359dbf5b917c235544ac24b2c880546
3
+ size 9652088
data/stars/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4a25d456cb3c50579ffc358b7271d05ad7d4369df89c18ec65645acc6e86d21
3
+ size 249292
data/wiki_pages/2012/06/27.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b2698edba046bdee79430a362d45f1cdd19f06e760e0595fc384d481c41d581
3
+ size 180326
stats.csv CHANGED
@@ -382,4 +382,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
382
  2012-06-23,85952,302,39546,3157,5149,2432,0,283,7215,6413,18813,395,0,694,1496,0,57,0,21387134,15.9,6994327,20.5,16.0,29.9
383
  2012-06-24,90888,262,45017,4672,5538,2326,0,358,8677,2905,18454,422,0,804,1369,0,84,0,23436575,18.3,8141423,18.2,18.3,31.9
384
  2012-06-25,130577,575,61844,6680,10203,4413,0,1055,13612,4755,22850,783,0,1513,2192,0,102,0,36116079,17.9,12283798,31.0,17.9,35.4
385
- 2012-06-26,135373,498,63244,7562,10059,4453,0,1189,15424,5049,23405,739,0,1238,2391,0,122,0,36890107,20.7,12360462,23.2,20.7,0.0
 
 
382
  2012-06-23,85952,302,39546,3157,5149,2432,0,283,7215,6413,18813,395,0,694,1496,0,57,0,21387134,15.9,6994327,20.5,16.0,29.9
383
  2012-06-24,90888,262,45017,4672,5538,2326,0,358,8677,2905,18454,422,0,804,1369,0,84,0,23436575,18.3,8141423,18.2,18.3,31.9
384
  2012-06-25,130577,575,61844,6680,10203,4413,0,1055,13612,4755,22850,783,0,1513,2192,0,102,0,36116079,17.9,12283798,31.0,17.9,35.4
385
+ 2012-06-26,135373,498,63244,7562,10059,4453,0,1189,15424,5049,23405,739,0,1238,2391,0,122,0,36890107,20.7,12360462,23.2,20.7,33.2
386
+ 2012-06-27,127384,556,61550,9475,10339,4560,0,1268,12925,4455,17410,816,0,1318,2578,0,134,0,35926118,26.4,11919403,31.7,26.4,0.0