tamnd commited on
Commit
3fada09
·
verified ·
1 Parent(s): 76a4fb1

Add 2012-06-13 — 134.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-06-12** (370 days), totaling **27,331,266 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.1 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
 
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,7 +71,7 @@ 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,688,975 events in 11101 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 353
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
- 2012 ████████████████████████████░░ 13.2M
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 | 127 | 13,235,122 | 104,213 | 3.4 GB | 1.3 GB | 57m14s | 1h18m | 1h12m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ██████████████████████████░░░ 5.9M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ██████████████████████████░░░░ 650.4K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 █████████████████████████████ 837.1K
165
  ```
166
 
167
 
@@ -169,7 +169,7 @@ duckdb.sql("""
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
- 2012 ███████████████████████████░░ 1.3M
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 | 12,622,639 | 46.2% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,387,468 | 5.1% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 1,986,483 | 7.3% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,207,927 | 4.4% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 64,822 | 0.2% | Line-level PR comments |
561
- | `stars` | WatchEvent | 2,729,631 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 804,438 | 2.9% | Repository forks |
563
- | `creates` | CreateEvent | 4,626,925 | 16.9% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 260,489 | 1.0% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 317,137 | 1.2% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 525,936 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
- | `public_events` | PublicEvent | 24,516 | 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-13** (371 days), totaling **27,465,571 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
 
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,688,976 events in 11102 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 353
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ████████████████████████████░░ 13.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 | 128 | 13,369,427 | 104,448 | 3.4 GB | 1.3 GB | 57m36s | 1h18m | 1h13m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ██████████████████████████░░░ 6.0M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████████████████████░░░░ 656.7K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 █████��████████████████████████ 841.4K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ███████████████████████████░░ 1.3M
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 12,685,947 | 46.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,393,821 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 1,996,952 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,212,265 | 4.4% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 66,200 | 0.2% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,742,320 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 809,278 | 2.9% | Repository forks |
563
+ | `creates` | CreateEvent | 4,652,600 | 16.9% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 261,243 | 1.0% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 318,616 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 528,303 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 24,651 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ba8d867c0b96152c48032285f5e0d3bb1eea69f33cfa3534e9913fb8ea1d0aa
3
+ size 49587
data/creates/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d43f885ecc60d51c4049fb6764511461e9ec66d5f7c0770cca0d52e2d4d36ea4
3
+ size 515322
data/deletes/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcf0158d5102182cdd3b7999972e5401e43db865917d63a2c17f10435c6d584b
3
+ size 24970
data/forks/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac5aefc7e4548934362e9cd55b6d392b38ce65b963edfc2920af4852be599c46
3
+ size 114018
data/issue_comments/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b51ee8b233194b7eaf243a1f7cb19176cf2f6fa043791ad05e22568d4db851a2
3
+ size 221774
data/issues/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4c41d9cfe933dbb7f1b468e081dda8a16601a3037d128793bb27eb189814f3b
3
+ size 149163
data/public_events/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75851b4072a5aa35174d88b09d64b46423649cfbdcd60b2f07be15498f3ff8f4
3
+ size 6210
data/pull_requests/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:047e32c4a8f22b610443cd3e59186ac1708160b4272e89677c09a80bc6fbf4e4
3
+ size 765509
data/pushes/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b29ccf6c5025c6adc198c0715565fbdf304b72b601aa4fa90ec769ea0a838ae
3
+ size 10127094
data/stars/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d3ac995bc88dfeabbc658dc9fd7138fa06b8974e5ecc068d1f660e76379c824
3
+ size 248376
data/wiki_pages/2012/06/13.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0691cc520f840dadc27cacaa40f2ff008a949df0338c3b39599c9ea9be5609c2
3
+ size 167362
stats.csv CHANGED
@@ -368,4 +368,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
368
  2012-06-09,85315,304,39594,3980,5657,2062,0,561,8194,2713,19632,412,0,729,1409,0,68,0,21145615,10.2,7382815,21.3,10.2,28.8
369
  2012-06-10,94658,272,44814,3930,6196,2200,0,469,9161,2919,21733,475,0,782,1630,0,77,0,23902230,16.8,8217896,37.9,16.8,25.5
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,0.0
 
 
368
  2012-06-09,85315,304,39594,3980,5657,2062,0,561,8194,2713,19632,412,0,729,1409,0,68,0,21145615,10.2,7382815,21.3,10.2,28.8
369
  2012-06-10,94658,272,44814,3930,6196,2200,0,469,9161,2919,21733,475,0,782,1630,0,77,0,23902230,16.8,8217896,37.9,16.8,25.5
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,0.0