tamnd commited on
Commit
2371a06
·
verified ·
1 Parent(s): bdfc91a

Add 2012-12-24 — 90.8K 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-12-23** (526 days), totaling **47,546,181 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.7 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
 
@@ -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** — 361,229 events in 670 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
78
- 01:00 ████████████████░░░░░░░░░░░░░░ 126.3K
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 | 361,229 | 670 |
107
 
108
 
109
  ### Live event schema
@@ -143,7 +143,7 @@ duckdb.sql("""
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 | 283 | 33,450,037 | 118,198 | 9.0 GB | 3.1 GB | 2h11m | 3h09m | 2h45m |
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,748,787 | 47.8% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,632,016 | 5.5% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,722,570 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,885,006 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 234,296 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,586,633 | 9.6% | Repository stars |
567
- | `forks` | ForkEvent | 1,542,342 | 3.2% | Repository forks |
568
- | `creates` | CreateEvent | 7,394,625 | 15.6% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 386,218 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 527,174 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 934,616 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 42,994 | 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-24** (527 days), totaling **47,637,020 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.7 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
 
 
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** — 366,151 events in 683 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
78
+ 01:00 ████████████████░░░░░░░░░░░░░░ 131.2K
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 | 366,151 | 683 |
107
 
108
 
109
  ### Live event schema
 
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 | 284 | 33,540,876 | 118,101 | 9.0 GB | 3.1 GB | 2h11m | 3h10m | 2h45m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 22,794,785 | 47.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,636,950 | 5.5% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,730,351 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,887,561 | 4.0% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 234,696 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,596,124 | 9.6% | Repository stars |
567
+ | `forks` | ForkEvent | 1,547,602 | 3.2% | Repository forks |
568
+ | `creates` | CreateEvent | 7,405,625 | 15.5% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 386,784 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 527,925 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 936,180 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 43,062 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9515779af789e8d9e0ed1f22e4eb66d520f9de3e1232acd162f28fa34e757d17
3
+ size 34044
data/creates/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28a51a07ab3a368efbc1f2fa76a5920e39de39e43385354c00b9d01624176002
3
+ size 383552
data/deletes/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70fefa7a6183d91c491b127ba0763c1951bf57e0877978b5ec4cce26385e5d6a
3
+ size 22141
data/forks/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a19f2a4bb0f84224398b2c605845504529c309d2f7501bc5a43810292f40b1c3
3
+ size 136375
data/issue_comments/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4da3764211e2d0f258b9c64d42cdbf8a37cc4956e392ba17ce8b95f6e2b0bf82
3
+ size 173258
data/issues/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f493afab24665777644472629582a4004c0b14e91b2ae0b044fd8ac17a2742fe
3
+ size 125033
data/public_events/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:daa590fae0efe7f9458d53adbc18de02a81ea1de1a0010ba17d61adc732f17f8
3
+ size 4496
data/pull_requests/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50d89909fac495df37834a5562e8c37a52c926f5f04ad533382586cd8dfdd623
3
+ size 538337
data/pushes/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f90ab50de07af4493f0c386c91993fb7191d8b8970576aba752b919476f3a34
3
+ size 6736534
data/stars/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:018ec94af5d56f926558601342a3a18aa57389f61d14f1b81fe6ac22f1592693
3
+ size 221625
data/wiki_pages/2012/12/24.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4d1979c1a84bc16675f01629e00b9a0f3c74f88318832f26af15e976318c2aac
3
+ size 116636
stats.csv CHANGED
@@ -524,4 +524,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
524
  2012-12-20,160403,933,79421,9451,17042,5765,0,1128,15500,6396,18379,1249,0,1760,3226,0,153,0,51989286,91.9,16130746,38.7,91.9,39.4
525
  2012-12-21,127704,734,66884,6700,11216,4629,0,922,12022,4900,14641,912,0,1253,2801,0,90,0,42497612,71.1,13382181,30.1,71.1,45.1
526
  2012-12-22,74881,374,39508,3607,5233,2079,0,351,7403,3767,9611,572,0,656,1657,0,63,0,23583799,37.6,7406016,19.8,37.6,28.5
527
- 2012-12-23,96236,459,51488,4505,6631,2716,0,505,9834,4445,12085,635,0,908,1936,0,89,0,30297450,48.5,9461227,21.8,48.5,0.0
 
 
524
  2012-12-20,160403,933,79421,9451,17042,5765,0,1128,15500,6396,18379,1249,0,1760,3226,0,153,0,51989286,91.9,16130746,38.7,91.9,39.4
525
  2012-12-21,127704,734,66884,6700,11216,4629,0,922,12022,4900,14641,912,0,1253,2801,0,90,0,42497612,71.1,13382181,30.1,71.1,45.1
526
  2012-12-22,74881,374,39508,3607,5233,2079,0,351,7403,3767,9611,572,0,656,1657,0,63,0,23583799,37.6,7406016,19.8,37.6,28.5
527
+ 2012-12-23,96236,459,51488,4505,6631,2716,0,505,9834,4445,12085,635,0,908,1936,0,89,0,30297450,48.5,9461227,21.8,48.5,35.2
528
+ 2012-12-24,90839,471,45998,4934,7781,2555,0,400,9491,5260,11000,566,0,751,1564,0,68,0,27742984,46.9,8492031,23.8,46.9,0.0