tamnd commited on
Commit
7c678ea
·
verified ·
1 Parent(s): e0d3849

Add 2012-06-16 — 82.1K 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-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
 
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,10 +71,10 @@ 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,635 events in 11128 blocks
75
 
76
  ```
77
- 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 354
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 283
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
@@ -132,20 +132,20 @@ duckdb.sql("""
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
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
- 2012 ███████████████████████████░░░ 6.1M
149
  ```
150
 
151
 
@@ -153,7 +153,7 @@ duckdb.sql("""
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
- 2012 ████████████████████████��██░░░ 669.4K
157
  ```
158
 
159
 
@@ -161,7 +161,7 @@ duckdb.sql("""
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
- 2012 ██████████████████████████████ 849.0K
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,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
 
 
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-17** (375 days), totaling **27,866,354 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.3 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,690,658 events in 11136 blocks
75
 
76
  ```
77
+ 00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 355
78
  01:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 338
79
  02:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 283
80
  03:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 265
 
132
 
133
  ```
134
  2011 ██████████████████████████████ 14.1M
135
+ 2012 ████████████████████████████░ 13.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 | 132 | 13,770,210 | 104,319 | 3.5 GB | 1.3 GB | 59m16s | 1h20m | 1h14m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████████████ 6.7M
148
+ 2012 ███████████████████████████░░░ 6.2M
149
  ```
150
 
151
 
 
153
 
154
  ```
155
  2011 ██████████████████████████████ 737.1K
156
+ 2012 ██████████████████████████░░░ 676.2K
157
  ```
158
 
159
 
 
161
 
162
  ```
163
  2011 █████████████░░░░░░░░░░░░░░░░░ 370.9K
164
+ 2012 ██████████████████████████████ 852.6K
165
  ```
166
 
167
 
 
169
 
170
  ```
171
  2011 ██████████████████████████████ 1.4M
172
+ 2012 ████████████████████████████░░ 1.4M
173
  ```
174
 
175
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 12,881,128 | 46.2% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,413,328 | 5.1% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,025,294 | 7.3% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,223,432 | 4.4% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 69,121 | 0.2% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 2,781,995 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 822,422 | 3.0% | Repository forks |
563
+ | `creates` | CreateEvent | 4,728,270 | 17.0% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 263,331 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 322,771 | 1.2% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 535,426 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.4% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 25,006 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c93f332f30cea28e3aaf9a6165b33e8a64b2fdd6e665b476f54e05f0f337d60b
3
+ size 31111
data/creates/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1838edd134a330aca401257376faf494fedde8c2ad12ba46c5a3a1727bf6e315
3
+ size 322570
data/deletes/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fa4ae7e073aea1d92b7cb59a291f83296d9ea77dabeffa7ec9bcfbad211353b
3
+ size 14664
data/forks/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b251003615e7e23cef5b92dd00982f8330af2b94e90a295b37022a8b9a45282e
3
+ size 66693
data/issue_comments/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a57c18cb170d6ba6608fcfd7abb94b68916f21d1de055404851d51751c110731
3
+ size 114392
data/issues/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75c58de7cba7bdb073e33ae2994e2801f3c75a367fdb3babfe6c9d6115c8a5ed
3
+ size 85469
data/public_events/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db86e6740646293f2114197cc3b6b2081842c7ce41fe68fffc448b597fcc9a48
3
+ size 4333
data/pull_requests/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:886e849ae052b3965c4cae8249801ce081090675c868f3f071ce59e10ab78ad7
3
+ size 360454
data/pushes/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d7b90723481025d07ccf75ca3b9cf72f8fcc7f63149b4a5b32605c48f47211e
3
+ size 5678579
data/stars/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ee94e113c7e7c489eedfcc514070b15b866db7574eed5d0ee5b5e84770d4106b
3
+ size 165719
data/wiki_pages/2012/06/16.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e209b0e73b56fdb9e8d31f1e631def46dbb88b6fcb679e2a5eea1c7eaf7a1f16
3
+ size 74896
stats.csv CHANGED
@@ -371,4 +371,6 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
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
 
 
 
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,28.6
375
+ 2012-06-16,82068,301,39654,3377,5048,1736,0,315,7951,2538,18471,380,0,751,1475,0,71,0,20018905,31.5,6918880,21.7,31.5,0.0
376
+ 2012-06-17,79673,252,41016,3432,5273,1796,0,401,8494,2663,13592,380,0,883,1434,0,57,0,20702924,30.5,7358425,20.9,30.5,0.0