storage_engine
storage_engine : colcompress and rowcompress Table Access Methods with vectorized execution
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2450 | storage_engine
|
storage_engine
|
1.3.4 |
OLAP
|
AGPL-3.0
|
C
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd--
|
No
|
Yes
|
Yes
|
Yes
|
no
|
no
|
| Relationships | |
|---|---|
| Schemas | engine |
release 1.2.3; SQL v1.2.1
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY
|
1.3.4 |
18
17
16
15
14
|
storage_engine |
- |
| RPM | PIGSTY
|
1.3.4 |
18
17
16
15
14
|
storage_engine_$v |
- |
| DEB | PIGSTY
|
1.3.4 |
18
17
16
15
14
|
postgresql-$v-storage-engine |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
el8.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
el8.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
el9.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
el9.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
el10.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
el10.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
d12.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
d12.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
d13.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
d13.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
u22.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
u22.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
u24.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
u24.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
u26.x86_64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
u26.aarch64
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
PIGSTY 1.3.4
|
Source
pig build pkg storage_engine; # build rpm/debInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install storage_engine; # install via package name, for the active PG version
pig install storage_engine -v 18; # install for PG 18
pig install storage_engine -v 17; # install for PG 17
pig install storage_engine -v 16; # install for PG 16
pig install storage_engine -v 15; # install for PG 15
pig install storage_engine -v 14; # install for PG 14Config this extension to shared_preload_libraries:
shared_preload_libraries = 'storage_engine';Create this extension with:
CREATE EXTENSION storage_engine;Usage
Sources: README, release 1.3.4, PGXN 1.3.4, PGXN changelog, META.json
storage_engine provides two PostgreSQL table access methods in the engine schema:
colcompressfor column-oriented compressed storage with vectorized execution, min/max pruning, and parallel scans.rowcompressfor row-batch compression with parallel scans.
CREATE EXTENSION storage_engine;Quick Start
Create tables using either access method:
CREATE TABLE events (
ts timestamptz NOT NULL,
user_id bigint,
event_type text,
value float8
) USING colcompress;
CREATE TABLE logs (
id bigserial,
logged_at timestamptz NOT NULL,
message text
) USING rowcompress;Main Tuning Knobs
Session-level GUCs documented upstream include:
storage_engine.enable_parallel_executionstorage_engine.min_parallel_processesstorage_engine.enable_vectorizationstorage_engine.enable_custom_scanstorage_engine.enable_column_cachestorage_engine.enable_columnar_index_scanstorage_engine.enable_dmlstorage_engine.stripe_row_limitstorage_engine.chunk_group_row_limitstorage_engine.compression_level
The README says these GUCs become visible once the library is loaded; add storage_engine to shared_preload_libraries if you want them available immediately in every session.
Types and Operators
engine.uint8 stores unsigned 64-bit values for colcompress workloads that need the full 0 through 2^64 - 1 range. Upstream documents comparison operators (=, <>, <, <=, >, >=), B-tree and hash opclasses, casts to and from bigint, numeric, and text, plus engine.min, engine.max, and engine.sum aggregates.
Useful Management Functions
For colcompress tables:
SELECT engine.alter_colcompress_table_set(
'events'::regclass,
orderby => 'ts ASC, user_id ASC',
compression => 'zstd',
compression_level => 9
);
SELECT engine.colcompress_merge('events');
CALL engine.colcompress_repack('events');
CALL engine.colcompress_repack('events', 0.7);In 1.3.4, engine.colcompress_repack(table_name regclass, min_fill_ratio float8 DEFAULT 0.9) is a procedure for online per-stripe defragmentation of colcompress tables. It repacks stripes whose live-row ratio falls below the threshold. Use engine.colcompress_merge() when you need the old full-table rewrite that globally sorts by the orderby key.
For rowcompress tables:
SELECT engine.alter_rowcompress_table_set(
'logs'::regclass,
batch_size => 10000,
compression => 'zstd',
compression_level => 5
);
SELECT engine.rowcompress_repack('logs');When to Use Which AM
- Use
colcompressfor analytical scans, aggregates, and range predicates where projection, vectorization, and stripe/chunk pruning pay off. - Use
rowcompressfor append-heavy logs or wide rows that are usually fetched together, where compression matters more than column projection. - For point lookups on
colcompress, upstream recommends enablingstorage_engine.enable_columnar_index_scanor per-tableindex_scan.
Caveats
- Upgrade existing installations with
ALTER EXTENSION storage_engine UPDATE TO '1.3.4';. - The old
FUNCTION engine.colcompress_repack(regclass)alias was removed in 1.3.4. Existing callers should switch toCALL engine.colcompress_repack('table')for stripe defragmentation orSELECT engine.colcompress_merge('table')for the old full rewrite behavior. colcompressandrowcompressdo not support foreign keys orAFTER ROWtriggers.VACUUM FULLandCREATE UNLOGGED TABLE ... USING colcompressare not supported; upstream recommends the extension’s repack functions instead.- On
colcompress, combiningorderbywith B-tree indexes can disable the sort-on-write path, and B-tree indexes on ordered columns can defeat stripe pruning for range queries. Useengine.colcompress_merge()after loading data when global ordering matters, and preferindex_scan => falsefor analytical tables.