tamnd commited on
Commit
7ebd87e
·
verified ·
1 Parent(s): 69addb1

Add 2012-08-14 — 131.8K 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-08-13** (423 days), totaling **33,606,005 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 7.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.2 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,840,811 events in 12164 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 382
@@ -132,20 +132,20 @@ duckdb.sql("""
132
 
133
  ```
134
  2011 █████████████████████░░░░░░░░░ 14.1M
135
- 2012 ██████████████████████████████ 19.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 | 180 | 19,509,861 | 108,388 | 5.0 GB | 1.8 GB | 1h20m | 1h49m | 1h42m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████░░░░░░░░ 6.7M
148
- 2012 ██████████████████████████████ 8.9M
149
  ```
150
 
151
 
@@ -168,7 +168,7 @@ duckdb.sql("""
168
  ### Stars per year
169
 
170
  ```
171
- 2011 █████████████████████░░░░░░░░ 1.4M
172
  2012 ██████████████████████████████ 1.9M
173
  ```
174
 
@@ -553,19 +553,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
- | `pushes` | PushEvent | 15,620,452 | 46.5% | Git pushes with commits |
557
- | `issues` | IssuesEvent | 1,744,758 | 5.2% | Issue lifecycle events |
558
- | `issue_comments` | IssueCommentEvent | 2,485,036 | 7.4% | Comments on issues/PRs |
559
- | `pull_requests` | PullRequestEvent | 1,407,822 | 4.2% | PR lifecycle events |
560
- | `pr_review_comments` | PullRequestReviewCommentEvent | 114,771 | 0.3% | Line-level PR comments |
561
- | `stars` | WatchEvent | 3,349,236 | 10.0% | Repository stars |
562
- | `forks` | ForkEvent | 1,024,982 | 3.0% | Repository forks |
563
- | `creates` | CreateEvent | 5,692,707 | 16.9% | Branch/tag/repo creation |
564
- | `deletes` | DeleteEvent | 296,455 | 0.9% | Branch/tag deletion |
565
- | `commit_comments` | CommitCommentEvent | 383,450 | 1.1% | Comments on commits |
566
- | `wiki_pages` | GollumEvent | 642,335 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
- | `public_events` | PublicEvent | 29,971 | 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-08-14** (424 days), totaling **33,737,816 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 7.8 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.2 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,840,836 events in 12165 blocks
75
 
76
  ```
77
  00:00 █░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 382
 
132
 
133
  ```
134
  2011 █████████████████████░░░░░░░░░ 14.1M
135
+ 2012 ██████████████████████████████ 19.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 | 181 | 19,641,672 | 108,517 | 5.1 GB | 1.8 GB | 1h20m | 1h50m | 1h43m |
142
 
143
 
144
  ### Pushes per year
145
 
146
  ```
147
  2011 ██████████████████████░░░░░░░░ 6.7M
148
+ 2012 ██████████████████████████████ 9.0M
149
  ```
150
 
151
 
 
168
  ### Stars per year
169
 
170
  ```
171
+ 2011 █████████████████████░░░░░░░░ 1.4M
172
  2012 ██████████████████████████████ 1.9M
173
  ```
174
 
 
553
 
554
  | Table | GitHub Event | Events | % | Description |
555
  |-------|-------------|-------:|---:|-------------|
556
+ | `pushes` | PushEvent | 15,689,877 | 46.5% | Git pushes with commits |
557
+ | `issues` | IssuesEvent | 1,752,133 | 5.2% | Issue lifecycle events |
558
+ | `issue_comments` | IssueCommentEvent | 2,497,013 | 7.4% | Comments on issues/PRs |
559
+ | `pull_requests` | PullRequestEvent | 1,412,563 | 4.2% | PR lifecycle events |
560
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 115,920 | 0.3% | Line-level PR comments |
561
+ | `stars` | WatchEvent | 3,361,217 | 10.0% | Repository stars |
562
+ | `forks` | ForkEvent | 1,029,890 | 3.1% | Repository forks |
563
+ | `creates` | CreateEvent | 5,707,243 | 16.9% | Branch/tag/repo creation |
564
+ | `deletes` | DeleteEvent | 297,333 | 0.9% | Branch/tag deletion |
565
+ | `commit_comments` | CommitCommentEvent | 385,018 | 1.1% | Comments on commits |
566
+ | `wiki_pages` | GollumEvent | 644,769 | 1.9% | Wiki page edits |
567
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
568
+ | `public_events` | PublicEvent | 30,100 | 0.1% | Repo made public |
569
 
570
  ## How it's built
571
 
data/commit_comments/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:044971ed20a1930e55455d4d027884f13fd6d6fb5e837e28f163de514ba609aa
3
+ size 52138
data/creates/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:69ae803b5edb3a54d29221f94acd749d3de99719586b144acbf2901abd9491dd
3
+ size 510884
data/deletes/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cd0d4dd6c9fc22c2f8536e365c149fb7e396e11e7f444e8d3127dfa291e24164
3
+ size 28007
data/forks/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6696233b410effff312f845adfc765eaee249f674c541f2521d967209de46eaf
3
+ size 124269
data/issue_comments/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3e66fed250f1460997e15ec038c7bf74191f9397ffb3c8faac48152789e4b0c
3
+ size 251375
data/issues/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d77079a53997bb80c1db960d62c8b810b4326906d7ed4476d04392a6b94a780c
3
+ size 165010
data/public_events/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:374e8c42d5edbe745652d794f4474751b08e5c83ed9ed2a1f1d5eec9fc0f17eb
3
+ size 6115
data/pull_requests/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b2beef4b86480c9c740224b8722cb0eefe45c9c2f2b62be3ec666ae2a8c69bc
3
+ size 855245
data/pushes/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:612da25e0b3dbae5999720eaf72ba748285df084e0ef966f88282de2e900d74b
3
+ size 10786621
data/stars/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2477b858c0811a26a911b85105b48af2c167df5ee8f50db74b1352ba47e50a8a
3
+ size 278170
data/wiki_pages/2012/08/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd904e92dc4e7b52ff7662db41a94ca32dc5d9d06ae5a2d9b4a184b5bb386bab
3
+ size 121911
stats.csv CHANGED
@@ -421,4 +421,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
421
  2012-08-10,116492,645,61954,5950,9833,3946,0,811,11635,4535,12860,707,0,1347,2138,0,131,0,35120011,21.1,11924862,24.7,21.1,25.8
422
  2012-08-11,79688,431,44295,3927,5588,1955,0,378,7334,3099,9746,514,0,687,1681,0,53,0,22228492,8.4,7874105,22.1,8.4,43.5
423
  2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
424
- 2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,0.0
 
 
421
  2012-08-10,116492,645,61954,5950,9833,3946,0,811,11635,4535,12860,707,0,1347,2138,0,131,0,35120011,21.1,11924862,24.7,21.1,25.8
422
  2012-08-11,79688,431,44295,3927,5588,1955,0,378,7334,3099,9746,514,0,687,1681,0,53,0,22228492,8.4,7874105,22.1,8.4,43.5
423
  2012-08-12,88621,397,49055,4344,6544,2264,0,451,8866,3164,10585,460,0,725,1704,0,62,0,24782511,15.8,8596636,27.2,15.8,52.3
424
+ 2012-08-13,132998,760,68210,8123,13804,4672,0,1081,12188,4898,14034,824,0,1765,2538,0,101,0,38990005,22.2,12961374,46.6,22.2,56.8
425
+ 2012-08-14,131811,710,69425,7375,11977,4741,0,1149,11981,4908,14536,878,0,1568,2434,0,129,0,39316756,19.1,13179745,23.1,19.1,0.0