tamnd commited on
Commit
2dc2b85
·
verified ·
1 Parent(s): 7e7154b

Add 2012-12-30 — 96.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-12-29** (532 days), totaling **48,169,815 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.6 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** — 374,798 events in 713 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
@@ -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 | 374,798 | 713 |
107
 
108
 
109
  ### Live event schema
@@ -137,13 +137,13 @@ duckdb.sql("""
137
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
- 2012 ██████████████████████████████ 34.1M
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 | 289 | 34,073,671 | 117,901 | 9.2 GB | 3.2 GB | 2h14m | 3h15m | 2h48m |
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 | 23,068,887 | 47.9% | Git pushes with commits |
562
- | `issues` | IssuesEvent | 2,665,264 | 5.5% | Issue lifecycle events |
563
- | `issue_comments` | IssueCommentEvent | 3,773,022 | 7.8% | Comments on issues/PRs |
564
- | `pull_requests` | PullRequestEvent | 1,903,637 | 4.0% | PR lifecycle events |
565
- | `pr_review_comments` | PullRequestReviewCommentEvent | 237,780 | 0.5% | Line-level PR comments |
566
- | `stars` | WatchEvent | 4,653,254 | 9.7% | Repository stars |
567
- | `forks` | ForkEvent | 1,570,541 | 3.3% | Repository forks |
568
- | `creates` | CreateEvent | 7,471,957 | 15.5% | Branch/tag/repo creation |
569
- | `deletes` | DeleteEvent | 390,349 | 0.8% | Branch/tag deletion |
570
- | `commit_comments` | CommitCommentEvent | 532,658 | 1.1% | Comments on commits |
571
- | `wiki_pages` | GollumEvent | 946,818 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
- | `public_events` | PublicEvent | 43,469 | 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-30** (533 days), totaling **48,265,909 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.9 GB of raw GH Archive NDJSON has been parsed, flattened, and compressed into 4.6 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** — 374,805 events in 716 blocks
75
 
76
  ```
77
  00:00 ██████████████████████████████ 234.9K
 
103
  | Date | Events | Blocks |
104
  |------|-------:|-------:|
105
  | 2026-03-27 | 1,840,836 | 12165 |
106
+ | 2026-03-28 | 374,805 | 716 |
107
 
108
 
109
  ### Live event schema
 
137
 
138
  ```
139
  2011 ████████████░░░░░░░░░░░░░░░░░░ 14.1M
140
+ 2012 ██████████████████████████████ 34.2M
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 | 290 | 34,169,765 | 117,826 | 9.2 GB | 3.2 GB | 2h14m | 3h15m | 2h48m |
147
 
148
 
149
  ### Pushes per year
 
558
 
559
  | Table | GitHub Event | Events | % | Description |
560
  |-------|-------------|-------:|---:|-------------|
561
+ | `pushes` | PushEvent | 23,120,937 | 47.9% | Git pushes with commits |
562
+ | `issues` | IssuesEvent | 2,670,123 | 5.5% | Issue lifecycle events |
563
+ | `issue_comments` | IssueCommentEvent | 3,779,980 | 7.8% | Comments on issues/PRs |
564
+ | `pull_requests` | PullRequestEvent | 1,906,411 | 3.9% | PR lifecycle events |
565
+ | `pr_review_comments` | PullRequestReviewCommentEvent | 238,354 | 0.5% | Line-level PR comments |
566
+ | `stars` | WatchEvent | 4,663,316 | 9.7% | Repository stars |
567
+ | `forks` | ForkEvent | 1,574,280 | 3.3% | Repository forks |
568
+ | `creates` | CreateEvent | 7,482,828 | 15.5% | Branch/tag/repo creation |
569
+ | `deletes` | DeleteEvent | 390,968 | 0.8% | Branch/tag deletion |
570
+ | `commit_comments` | CommitCommentEvent | 533,569 | 1.1% | Comments on commits |
571
+ | `wiki_pages` | GollumEvent | 948,968 | 2.0% | Wiki page edits |
572
  | `members` | MemberEvent | 102,637 | 0.2% | Collaborator additions |
573
+ | `public_events` | PublicEvent | 43,560 | 0.1% | Repo made public |
574
 
575
  ## How it's built
576
 
data/commit_comments/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de1fc2dd10ef479fef20a7f01a4fa17800427f407e59bb31d3db41918836ac78
3
+ size 40370
data/creates/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b3704451fd65d5b5c91d781a1e0ffac0ec85afcdc0d49f3cf38abe7b4a6b9a5
3
+ size 416069
data/deletes/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f62f7d0354a201bbedab128b964bb67dd856e26a7af39480923bcc5b44386fe
3
+ size 24962
data/forks/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cd8766df3d576013f1d358f34f422070a4bb4eabcb9f4b2a4cbb41d38c249e4
3
+ size 106519
data/issue_comments/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73c99afaa6cfe9cd666557a93fe3e5993c0463c780c872198954f8c93d771902
3
+ size 171582
data/issues/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9da78acdf51a361205f59ee300dde42bf59a04c9f1616c8f9828f5b295eafa
3
+ size 128901
data/public_events/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6ceec88634e5658208a2bfffc5e6a7ed011fb21d40c42c1a83969722d1f6432
3
+ size 5444
data/pull_requests/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94552b90da9f6321f5e388e390331db27388182cee34edd8c8ca2ed5796d2c9c
3
+ size 607067
data/pushes/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4e8eaae15aca48aaf699fbf314f2467891e74e45fcfc65744a441a1a9c133c1
3
+ size 7924274
data/stars/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2341790589ace5164733901f5992d7362cbe328ce818e9f269fc0d3d611dd141
3
+ size 229646
data/wiki_pages/2012/12/30.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04acbca9da7ad4c2024d0c8cab1ea7599b8f26cce3a389e88d868dd0a8daa0e7
3
+ size 118864
stats.csv CHANGED
@@ -530,4 +530,5 @@ date,total_events,parse_errors,pushes,issues,issue_comments,pull_requests,pr_rev
530
  2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,58.3,10869479,34.9,58.3,22.8
531
  2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,65.3,12311410,26.7,65.3,30.0
532
  2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,61.8,11874081,26.2,61.8,29.5
533
- 2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,51.0,9353183,21.8,51.0,0.0
 
 
530
  2012-12-26,110229,611,57145,5611,8439,3271,0,665,11489,4973,13778,749,0,1002,2413,0,83,0,34606925,58.3,10869479,34.9,58.3,22.8
531
  2012-12-27,124799,671,63806,6545,10056,4072,0,809,13669,5561,15087,880,0,1135,2409,0,99,0,39957512,65.3,12311410,26.7,65.3,30.0
532
  2012-12-28,119552,606,60629,7225,10678,3867,0,781,12386,4845,14138,837,0,1099,2377,0,84,0,37947284,61.8,11874081,26.2,61.8,29.5
533
+ 2012-12-29,97772,451,50689,4801,6901,2787,0,470,10555,3947,13628,672,0,909,1885,0,77,0,30253279,51.0,9353183,21.8,51.0,31.7
534
+ 2012-12-30,96094,436,52050,4859,6958,2774,0,574,10062,3739,10871,619,0,911,2150,0,91,0,30609943,48.7,9773698,23.9,48.7,0.0