tamnd commited on
Commit
a2c7bfd
·
verified ·
1 Parent(s): 03054d1

Add 2012-12-19 — 161.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-12-18** (521 days), totaling **46,925,903 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 11.5 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.4 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,11 +71,11 @@ 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** — 345,597 events in 640 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
78
- 01:00 ██████████████░░░░░░░░░░░░░░░░ 110.7K
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04: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 | 345,597 | 640 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 32.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 | 278 | 32,829,759 | 118,092 | 8.8 GB | 3.1 GB | 2h08m | 3h03m | 2h42m |
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 | 22,427,409 | 47.8% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,599,178 | 5.5% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,667,949 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,863,749 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 229,979 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,527,385 | 9.6% | Repository stars |
567
- | `forks` | ForkEvent | 1,516,460 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 7,321,774 | 15.6% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 381,635 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 520,862 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 921,672 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 42,437 | 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-12-19** (522 days), totaling **47,086,957 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 11.6 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.5 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** — 348,023 events in 644 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
78
+ 01:00 ██████████████░░░░░░░░░░░░░░░░ 113.1K
79
  02:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
80
  03:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
81
  04:00 ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 0
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 348,023 | 644 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 33.0M
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 | 279 | 32,990,813 | 118,246 | 8.8 GB | 3.1 GB | 2h09m | 3h05m | 2h42m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 22,511,486 | 47.8% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,607,753 | 5.5% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,682,448 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,869,817 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 231,390 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,541,874 | 9.6% | Repository stars |
567
+ | `forks` | ForkEvent | 1,522,834 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 7,339,909 | 15.6% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 382,850 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 522,597 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 924,996 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 42,599 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24303162ec01a2567b5a12a8958f5c90b155eef73e61cb9cdd566d1803163674
3
+ size 63324
data/creates/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57adb470c68e4516f98b6bc8f3e30bb45586e6730efeec904d1d4c5ed721f69f
3
+ size 669461
data/deletes/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8cbc3a79e1009713b42054bec06e8cf2a264d75af08e08c31943318e4935c34b
3
+ size 42594
data/forks/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f23aadd9d2492f5b98722be06f97131744bb193d9990f8e1fb1966acbf4ea746
3
+ size 175093
data/issue_comments/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:19f8605bdf2e7757e14488e8cd79f6d03a7ccc72ec6b2a5c9b7f6beef3783b2a
3
+ size 339403
data/issues/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ca3954a5b815db8cc5e89c46501833d7cf3f7f7650f43668e342bbf02c0b2281
3
+ size 219982
data/public_events/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47ac62bf897975b13ee692b521b9592647d494af3ac9f777d501495d1bafc869
3
+ size 7817
data/pull_requests/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f91ef62b9d4c5d8320b21b353c2c3dc852ebd404b3780f3ffc6c9c2adbcfa57
3
+ size 1146740
data/pushes/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b57704150b9baaa8725214bfaa113aee9e5cbe1970d9ec4fecfe53ab4672b4d
3
+ size 13062993
data/stars/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1639d5bd8cd4c38f5b51a858b830c51f821846408669c0956f8b17bbdcce4b96
3
+ size 324339
data/wiki_pages/2012/12/19.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fae3ca3d03d2c92a060ba011ba982cf43a9a343736592081e50a9424585460d
3
+ size 237317
stats.csv CHANGED
@@ -519,4 +519,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
519
  2012-12-15,103523,592,55206,5668,9154,2778,0,544,9306,4197,12391,603,0,912,2095,0,77,0,31913346,54.8,10233679,20.9,54.8,34.3
520
  2012-12-16,119002,631,64433,5772,10096,3143,0,634,11039,4631,14266,778,0,1057,2419,0,103,0,36440566,66.6,11848322,27.7,66.7,40.3
521
  2012-12-17,165009,999,84933,8792,15330,6057,0,1361,14538,6640,19766,1286,0,1903,3241,0,163,0,54147890,100.5,16746063,26.4,100.5,54.4
522
- 2012-12-18,161470,1074,84403,8206,14054,6153,0,1479,14299,6356,18752,1368,0,1888,3280,0,158,0,54582797,101.1,16638043,37.3,101.1,0.0
 
 
519
  2012-12-15,103523,592,55206,5668,9154,2778,0,544,9306,4197,12391,603,0,912,2095,0,77,0,31913346,54.8,10233679,20.9,54.8,34.3
520
  2012-12-16,119002,631,64433,5772,10096,3143,0,634,11039,4631,14266,778,0,1057,2419,0,103,0,36440566,66.6,11848322,27.7,66.7,40.3
521
  2012-12-17,165009,999,84933,8792,15330,6057,0,1361,14538,6640,19766,1286,0,1903,3241,0,163,0,54147890,100.5,16746063,26.4,100.5,54.4
522
+ 2012-12-18,161470,1074,84403,8206,14054,6153,0,1479,14299,6356,18752,1368,0,1888,3280,0,158,0,54582797,101.1,16638043,37.3,101.1,34.1
523
+ 2012-12-19,161054,990,84077,8575,14499,6068,0,1411,14489,6374,18135,1215,0,1735,3324,0,162,0,54119261,97.9,16289063,27.3,97.9,0.0