tamnd commited on
Commit
9723f85
·
verified ·
1 Parent(s): 7633ad1

Add 2012-06-24 — 90.9K 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-23** (381 days), totaling **28,588,720 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.4 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,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,713,154 events in 11259 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 359
78
- 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 339
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
80
- 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 268
81
- 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 238
82
- 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 260
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
84
- 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 232
85
- 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 270
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
87
- 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 311
88
- 11:00 █░░��░░░░░░░░░░░░░░░░░░░░░░░░░░ 378
89
- 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 397
90
- 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 474
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 548
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 619
93
- 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 851
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.6K
@@ -131,21 +131,21 @@ duckdb.sql("""
131
  ## Events per year
132
 
133
  ```
134
- 2011 ████████████████████████████░ 14.1M
135
- 2012 ██████████████████████████████ 14.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 | 138 | 14,492,576 | 105,018 | 3.7 GB | 1.4 GB | 1h01m | 1h23m | 1h18m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 █████████████████████████████░ 6.5M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 █████████████████████████████░ 716.0K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 ████████████░░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 875.3K
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,218,201 | 46.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,453,103 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,083,348 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,246,135 | 4.4% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 75,275 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,852,304 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 851,076 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 4,860,130 | 17.0% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 267,370 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 330,634 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 547,849 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
- | `public_events` | PublicEvent | 25,674 | 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-24** (382 days), totaling **28,679,608 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
 
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,200 events in 11290 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 360
78
+ 01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 286
80
+ 03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 269
81
+ 04:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 239
82
+ 05:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 261
83
  06:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 198
84
+ 07:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 233
85
+ 08:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 271
86
  09:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 340
87
+ 10:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 312
88
+ 11:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 379
89
+ 12:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 398
90
+ 13:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 475
91
  14:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 548
92
  15:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 619
93
+ 16:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 855
94
  17:00 ███████████░░░░░░░░░░░░░░░░░░░ 121.0K
95
  18:00 ██████████████████████████████ 323.9K
96
  19:00 █████████████████████████████░ 316.6K
 
131
  ## Events per year
132
 
133
  ```
134
+ 2011 ████████████████████████████░ 14.1M
135
+ 2012 ██████████████████████████████ 14.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 | 139 | 14,583,464 | 104,917 | 3.7 GB | 1.4 GB | 1h02m | 1h23m | 1h19m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 █████████████████████████████░ 6.6M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 █████████████████████████████░ 720.7K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 ████████████░░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 877.6K
165
  ```
166
 
167
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 13,263,218 | 46.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,457,775 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,088,886 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,248,461 | 4.4% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 75,633 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,860,981 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 853,981 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 4,878,584 | 17.0% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 267,792 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 331,438 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 549,218 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 25,758 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8974fb3990ad85a480296c6e67e877f552428209d7d73b2b2affc3177060166e
3
+ size 35731
data/creates/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df6b4ae81b5982b848a9a9cae2fd3e7727f29e5ad015d3378d72eebc8a841231
3
+ size 348384
data/deletes/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3c7ce168730f9d797b771c5dacba750757ddcdf6d7c43030c6047c0af33a394
3
+ size 15507
data/forks/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd861b8d803dd4ffcdda5740ee91ea3af506f210ac03630cdb14a6ec02ac8450
3
+ size 74685
data/issue_comments/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d5eb9477d463d788b9c4995e43c4e2854457308f6ab1cbb641e5d0ff0b8c2f0
3
+ size 124664
data/issues/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4727767813e34e577fe11660d0023eff534d0c7d6318c3a2d3e771a433c911e
3
+ size 99601
data/public_events/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0ce9c74bf2ef6ff0d61f5b2faabafb9f918fa53b1a60fc1828ac2515d3be30a
3
+ size 4672
data/pull_requests/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:21d30ce42f365b1de318f8747aade43756fd59aa8bb4ebb9c4842cf5339a56f1
3
+ size 437829
data/pushes/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ee7538bd68542c18be7a286144e545cdc630ba28a905834df517a78e9b2fb20
3
+ size 6754869
data/stars/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87af31a9df1d2a16859835881e9a0911dd587cede6a1c2effccf723fbcd8592d
3
+ size 173532
data/wiki_pages/2012/06/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88beccd4d45f65ffe84b2e2d1649a4c0c705a7628f14ab25ab6b436cb6d939ff
3
+ size 71949
stats.csv CHANGED
@@ -379,4 +379,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
379
  2012-06-20,132064,534,61974,7591,12094,4301,0,1311,12446,4643,22501,740,0,1550,2257,0,122,0,35628608,22.4,12018848,29.4,22.4,25.2
380
  2012-06-21,129756,473,61085,7429,9928,4213,0,975,13094,4727,23580,792,0,1352,1999,0,109,0,34753199,17.6,11634671,31.9,17.6,41.5
381
  2012-06-22,113824,426,53485,6561,8746,3437,0,850,11283,3870,21449,604,0,1131,1847,0,135,0,30328968,22.1,10360343,22.1,22.1,38.5
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,0.0
 
 
379
  2012-06-20,132064,534,61974,7591,12094,4301,0,1311,12446,4643,22501,740,0,1550,2257,0,122,0,35628608,22.4,12018848,29.4,22.4,25.2
380
  2012-06-21,129756,473,61085,7429,9928,4213,0,975,13094,4727,23580,792,0,1352,1999,0,109,0,34753199,17.6,11634671,31.9,17.6,41.5
381
  2012-06-22,113824,426,53485,6561,8746,3437,0,850,11283,3870,21449,604,0,1131,1847,0,135,0,30328968,22.1,10360343,22.1,22.1,38.5
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,0.0