tamnd commited on
Commit
b1c33c4
·
verified ·
1 Parent(s): 376cd5f

Add 2012-10-14 — 111.5K 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-10-13** (472 days), totaling **39,755,177 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.4 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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,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-28** — 149,285 events in 199 blocks
75
 
76
  ```
77
- 00:00 ██████████████████████████████ 149.3K
78
  01:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
@@ -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 | 149,285 | 199 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████████░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 25.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 | 229 | 25,659,033 | 112,048 | 6.7 GB | 2.4 GB | 1h43m | 2h26m | 2h11m |
147
 
148
 
149
  ### Pushes per year
@@ -558,19 +558,19 @@ GitHub Discussions lifecycle: created, answered, category_changed, labeled, and
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
- | `pushes` | PushEvent | 18,733,276 | 47.1% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,124,205 | 5.3% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,061,181 | 7.7% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,617,102 | 4.1% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 167,450 | 0.4% | Line-level PR comments |
566
- | `stars` | WatchEvent | 3,899,560 | 9.8% | Repository stars |
567
- | `forks` | ForkEvent | 1,248,122 | 3.1% | Repository forks |
568
- | `creates` | CreateEvent | 6,466,007 | 16.3% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 334,832 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 447,896 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 766,374 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
- | `public_events` | PublicEvent | 35,771 | 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-14** (473 days), totaling **39,866,714 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.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 3.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-28** — 151,211 events in 202 blocks
75
 
76
  ```
77
+ 00:00 ██████████████████████████████ 151.2K
78
  01:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 151,211 | 202 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ████████████████░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 25.8M
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 | 230 | 25,770,570 | 112,045 | 6.7 GB | 2.4 GB | 1h43m | 2h27m | 2h12m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 18,792,450 | 47.1% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,130,550 | 5.3% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,070,092 | 7.7% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,620,174 | 4.1% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 168,026 | 0.4% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 3,909,375 | 9.8% | Repository stars |
567
+ | `forks` | ForkEvent | 1,251,870 | 3.1% | Repository forks |
568
+ | `creates` | CreateEvent | 6,481,373 | 16.3% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 335,475 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 448,950 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 768,387 | 1.9% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.3% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 35,870 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaad002747bd08ad68b972085f9f0cc42563dcdc72c6ee67af91ed9864c52b7b
3
+ size 46395
data/creates/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1133e43c1e431a89b5a6ced876dfcbf3b5b710db421328b92fffde1a12ebbebd
3
+ size 496893
data/deletes/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7691bba7f398f91bda1262d5449f3ed7d9d3f8d9c3275f2757f7c6322db07bc7
3
+ size 22730
data/forks/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b20d69f36f4f68f3c44cac59213411c81162c99afaacbb99d38b35aaa2a97bdb
3
+ size 108047
data/issue_comments/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3bb4d7b288d5e2208f296b029c9d55f740b98ba10577f95aff9e02769dd3177c
3
+ size 205308
data/issues/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c31a9d8cef212b3004b078e1df8a0f38eb754467f58abc36248b92d56948a17
3
+ size 155851
data/public_events/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fefa331966c13907dfb7935c2c9e200e2d151c48abaac2157eb8ff92522eb8b5
3
+ size 5523
data/pull_requests/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e1ab675230e1fbe92db60117d8b7dc899b3331d2632d557647a5493ad034452
3
+ size 598600
data/pushes/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4e7a47961385e2704ac32406cdab8e7483ec58b753604de896f9c9e1141938a5
3
+ size 9418040
data/stars/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfb05d686b073cf7bd83296e1e21437aba4f34e51d37be04825b75321608166d
3
+ size 223631
data/wiki_pages/2012/10/14.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:07f735ac181afb2a1b12051512ced9bd44bb4de6c4ac99f74a06563b7979c96a
3
+ size 106155
stats.csv CHANGED
@@ -470,4 +470,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
470
  2012-10-10,149037,1066,77923,7681,12624,5533,0,1364,13314,5577,18149,892,0,1728,3012,0,174,0,46476969,31.5,15624548,42.4,31.5,30.0
471
  2012-10-11,146506,1057,76464,7554,12583,5653,0,1116,13346,5707,17366,1043,0,1545,2964,0,108,0,45436658,38.4,15025301,22.2,38.4,38.9
472
  2012-10-12,141280,888,67821,12354,15508,5127,0,1309,11706,4823,16464,867,0,1298,2985,0,130,0,41029318,28.2,13865577,23.1,28.2,34.2
473
- 2012-10-13,96502,669,50958,6390,8271,2644,0,540,8120,3494,12225,586,0,741,1777,0,87,0,27985795,15.6,9567730,39.1,15.6,0.0
 
 
470
  2012-10-10,149037,1066,77923,7681,12624,5533,0,1364,13314,5577,18149,892,0,1728,3012,0,174,0,46476969,31.5,15624548,42.4,31.5,30.0
471
  2012-10-11,146506,1057,76464,7554,12583,5653,0,1116,13346,5707,17366,1043,0,1545,2964,0,108,0,45436658,38.4,15025301,22.2,38.4,38.9
472
  2012-10-12,141280,888,67821,12354,15508,5127,0,1309,11706,4823,16464,867,0,1298,2985,0,130,0,41029318,28.2,13865577,23.1,28.2,34.2
473
+ 2012-10-13,96502,669,50958,6390,8271,2644,0,540,8120,3494,12225,586,0,741,1777,0,87,0,27985795,15.6,9567730,39.1,15.6,43.3
474
+ 2012-10-14,111537,721,59174,6345,8911,3072,0,576,9815,3748,15366,643,0,1054,2013,0,99,0,33238404,15.5,11387173,32.9,15.5,0.0