tamnd commited on
Commit
ce07512
·
verified ·
1 Parent(s): 9489166

Add 2012-10-21 — 113.1K events, 11 files

Browse files
README.md CHANGED
@@ -61,7 +61,7 @@ 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-10-20** (479 days), totaling **40,727,564 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 9.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.9 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
 
@@ -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-28** — 160,212 events in 226 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 160.2K
@@ -103,7 +103,7 @@ Events from today are captured in near-real-time from the GitHub Events API and
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
- | 2026-03-28 | 160,212 | 226 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ███████████████░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 26.6M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
- | 2012 | 236 | 26,631,420 | 112,845 | 7.0 GB | 2.5 GB | 1h46m | 2h29m | 2h15m |
147
 
148
 
149
  ### Pushes per year
@@ -158,7 +158,7 @@ duckdb.sql("""
158
 
159
  ```
160
  2011 ███████████████░░░░░░░░░░░░░░░ 737.1K
161
- 2012 ██████████████████████████████ 1.4M
162
  ```
163
 
164
 
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 19,225,378 | 47.2% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,181,777 | 5.4% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,154,890 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,650,710 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 175,138 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,985,639 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,284,153 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 6,587,672 | 16.2% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 340,826 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 457,433 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 786,562 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 36,634 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
 
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-10-21** (480 days), totaling **40,840,687 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 9.7 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.9 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
 
 
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-28** — 160,234 events in 235 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 160.2K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 160,234 | 235 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ███████████████░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 26.7M
141
  ```
142
 
143
  | Year | Days | Events | Avg/Day | Raw Input | Parquet Output | Download | Process | Upload |
144
  |------|-----:|-------:|--------:|----------:|---------------:|---------:|--------:|-------:|
145
  | 2011 | 243 | 14,096,144 | 58,008 | 2.7 GB | 1.4 GB | 1h06m | 50m30s | 1h55m |
146
+ | 2012 | 237 | 26,744,543 | 112,846 | 7.0 GB | 2.5 GB | 1h47m | 2h30m | 2h15m |
147
 
148
 
149
  ### Pushes per year
 
158
 
159
  ```
160
  2011 ███████████████░░░░░░░░░░░░░░░ 737.1K
161
+ 2012 ██████████████████████████████ 1.5M
162
  ```
163
 
164
 
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 19,285,508 | 47.2% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,189,503 | 5.4% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,162,285 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,653,776 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 175,763 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,995,771 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,288,107 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 6,602,601 | 16.2% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 341,442 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 458,451 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 789,163 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 36,746 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8082e14f2182eb587a00719b7f036154596b0a50eca4c580bf32fefd05b0f04a
3
+ size 44984
data/creates/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3d9995e2b4995fd1b2af25e3eabcebd3dc0988d04e9b364c108bd141fc5e679
3
+ size 531131
data/deletes/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cf546e8af542a414962c47f9e6dc65b5b18ca792edcf56af0c2bd11d14e66e0
3
+ size 21735
data/forks/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:179650b0d5d2624d246fad56a2b6e1f63e11ed2b4536c7d558bfbb2c721bad1b
3
+ size 109637
data/issue_comments/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ad60bef486603f126d0a8665415d2fdbd3cce5015b45180eee04728726dc3348
3
+ size 179752
data/issues/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a7d3ea90998fcb17edda39fb1f14c0529eaa51bef28a721344fa8ddcc105f76
3
+ size 167467
data/public_events/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b7902e795d9969c4b64133497048d21aba25040d357f9af00d763bdfac3b744
3
+ size 6058
data/pull_requests/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2a963968dd0da86d0908741214e6b9b0b28fb2ff1dfe118b442ec50a06ccb9a
3
+ size 610315
data/pushes/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f82f2993ff3362b6c0753e31156d4bc07afaddf042fc06f15a3c8f1c5900dbf3
3
+ size 8947766
data/stars/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc554e3890b734f02eda44b7b83f50e488b8cf6db7721b512e98d06c441ab21e
3
+ size 233482
data/wiki_pages/2012/10/21.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3daff0a81fa742955074d9f8f3aa55331b4814632e431e8df9a1654826fd6e8
3
+ size 188904
stats.csv CHANGED
@@ -477,4 +477,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
477
  2012-10-17,152676,1251,78831,7745,12954,5788,0,1324,13502,5803,19278,938,0,1719,3379,0,164,0,47254620,26.3,15754473,25.9,26.3,39.3
478
  2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,30.8
479
  2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,25.3
480
- 2012-10-20,96980,796,52389,5654,6399,2600,0,513,8517,3765,12822,486,0,806,2145,0,88,0,28177714,31.3,9837909,22.7,31.3,0.0
 
 
477
  2012-10-17,152676,1251,78831,7745,12954,5788,0,1324,13502,5803,19278,938,0,1719,3379,0,164,0,47254620,26.3,15754473,25.9,26.3,39.3
478
  2012-10-18,149085,1239,76363,8383,13760,5213,0,1182,12937,5773,18321,1033,0,1448,3289,0,144,0,44938317,36.9,15349606,53.0,36.9,30.8
479
  2012-10-19,144613,1117,68657,10206,18034,4679,0,1322,11682,5043,18629,869,0,1237,3040,0,98,0,40642537,32.4,13722009,22.7,32.5,25.3
480
+ 2012-10-20,96980,796,52389,5654,6399,2600,0,513,8517,3765,12822,486,0,806,2145,0,88,0,28177714,31.3,9837909,22.7,31.3,34.9
481
+ 2012-10-21,113123,819,60130,7726,7395,3066,0,625,10132,3954,14929,616,0,1018,2601,0,112,0,32663853,33.2,11041231,30.0,33.2,0.0