pg_trickle
pg_trickle : Streaming tables and differential view maintenance for PostgreSQL 18
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 2860 | pg_trickle | pg_trickle | 0.81.0 | FEAT | Apache-2.0 | Rust |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd-- | No | Yes | Yes | Yes | no | no |
| Relationships | |
|---|---|
| See Also | pg_ivm pg_incremental pg_partman timeseries |
PG18 only; pgrx schema metadata must be kept from linker garbage collection
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY | 0.81.0 | 18 17 16 15 14 | pg_trickle | - |
| RPM | PIGSTY | 0.81.0 | 18 17 16 15 14 | pg_trickle_$v | - |
| DEB | PIGSTY | 0.81.0 | 18 17 16 15 14 | postgresql-$v-pg-trickle | - |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
el8.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
el8.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
el9.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
el9.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
el10.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
el10.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
d12.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
d12.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
d13.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
d13.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
u22.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
u22.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
u24.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
u24.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
u26.x86_64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
u26.aarch64 | PIGSTY 0.81.0 | MISS | MISS | MISS | MISS |
Source
pig build pkg pg_trickle; # 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 pg_trickle; # install via package name, for the active PG version
pig install pg_trickle -v 18; # install for PG 18Config this extension to shared_preload_libraries:
shared_preload_libraries = 'pg_trickle';Create this extension with:
CREATE EXTENSION pg_trickle;Usage
Sources: README v0.81.0, v0.81.0 release notes, SQL reference, configuration guide, GUC catalog, Cargo.toml
pg_trickle provides stream tables for PostgreSQL 18: regular queryable tables whose contents are maintained from a defining SQL query. It uses incremental view maintenance when possible, can fall back to full recompute, and also supports IMMEDIATE mode for same-transaction maintenance.
Upstream v0.81.0 is still pre-1.0 and says APIs and configuration options may change before a stable 1.0 release. The Rust package is pg_trickle version 0.81.0, uses Rust edition 2024, defaults to the pg18 feature, and pins pgrx = 0.18.0. Build prerequisites in the README are PostgreSQL 18.x plus Rust 1.85+ with pgrx 0.18.x.
Enable the Extension
Add the extension to PostgreSQL startup configuration and restart:
-- postgresql.conf
shared_preload_libraries = 'pg_trickle'
max_worker_processes = 8CREATE EXTENSION pg_trickle;shared_preload_libraries is required because the extension registers GUCs and a background worker at startup. wal_level = logical and replication slots are not required by default: pg_trickle.cdc_mode = 'auto' starts with trigger-based CDC and transitions to WAL-based capture only when logical WAL is available.
Create and Refresh Stream Tables
CREATE TABLE orders (
id int PRIMARY KEY,
region text,
amount numeric
);
SELECT pgtrickle.create_stream_table(
'regional_totals',
'SELECT region, SUM(amount) AS total, COUNT(*) AS cnt
FROM orders GROUP BY region'
);
SELECT * FROM regional_totals;
SELECT pgtrickle.refresh_stream_table('regional_totals');The main refresh modes are AUTO, DIFFERENTIAL, FULL, and IMMEDIATE. AUTO chooses differential maintenance when the query is differentiable and falls back to full recompute when needed. DIFFERENTIAL applies deltas only. FULL truncates and reloads from the defining query. IMMEDIATE uses statement-level IVM triggers and is maintained inside the same transaction as base-table DML.
SELECT pgtrickle.create_stream_table(
'regional_totals_live',
'SELECT region, SUM(amount) AS total, COUNT(*) AS cnt
FROM orders GROUP BY region',
schedule => NULL,
refresh_mode => 'IMMEDIATE'
);Schedules accept duration strings such as '30s', '5m', '1h', cron expressions such as '@hourly', or the default 'calculated' schedule inherited from downstream dependents.
SELECT pgtrickle.create_stream_table(
name => 'hourly_totals',
query => 'SELECT region, SUM(amount) AS total FROM orders GROUP BY region',
schedule => '@hourly',
refresh_mode => 'FULL'
);Lifecycle, SQL Coverage, and Operators
SELECT pgtrickle.alter_stream_table(
'regional_totals',
query => 'SELECT region, SUM(amount) AS total FROM orders GROUP BY region'
);
SELECT pgtrickle.drop_stream_table('regional_totals');The SQL reference documents lifecycle calls such as pgtrickle.create_stream_table(), pgtrickle.create_stream_table_if_not_exists(), pgtrickle.create_or_replace_stream_table(), pgtrickle.bulk_create(), pgtrickle.alter_stream_table(), pgtrickle.drop_stream_table(), pgtrickle.resume_stream_table(), pgtrickle.refresh_stream_table(), and pgtrickle.repair_stream_table().
Release 0.81.0 also documents preset wrappers for common refresh profiles:
SELECT pgtrickle.create_stream_table_realtime(
'regional_totals_rt',
'SELECT region, SUM(amount) AS total FROM orders GROUP BY region'
);
SELECT pgtrickle.create_stream_table_batch(
'regional_totals_batch',
'SELECT region, SUM(amount) AS total FROM orders GROUP BY region'
);
SELECT pgtrickle.create_stream_table_cost_optimized(
'regional_totals_cost',
'SELECT region, SUM(amount) AS total FROM orders GROUP BY region'
);The documented SQL coverage includes joins, aggregates, window functions, set operations, scalar and table subqueries, CTEs including WITH RECURSIVE, LATERAL/SRFs, JSON_TABLE, TopK queries with ORDER BY ... LIMIT, views as sources, tables without primary keys, and stream-table dependency DAGs. No custom SQL operator is the main user-facing API; users primarily interact through functions, views, catalog tables, GUCs, and normal SQL queries over stream tables.
Operations and Introspection
SELECT * FROM pgtrickle.pgt_status();
SELECT * FROM pgtrickle.refresh_timeline(20);
SELECT * FROM pgtrickle.health_check();
SELECT * FROM pgtrickle.health_summary();
SELECT * FROM pgtrickle.pg_stat_stream_tables;
SELECT * FROM pgtrickle.change_buffer_sizes();
SELECT * FROM pgtrickle.dependency_tree();
SELECT * FROM pgtrickle.explain_st('regional_totals');
SELECT * FROM pgtrickle.slot_health();
SELECT * FROM pgtrickle.check_cdc_health();
SELECT * FROM pgtrickle.commit_latency_stats();
SELECT * FROM pgtrickle.tune_recommendations();
SELECT * FROM pgtrickle.preview_stream_table(
'SELECT region, SUM(amount) FROM orders GROUP BY region'
);Other documented views and catalog tables include pgtrickle.stream_tables_info, pgtrickle.quick_health, pgtrickle.pgt_cdc_status, pgtrickle.pgt_stream_tables, pgtrickle.pgt_dependencies, pgtrickle.pgt_refresh_history, pgtrickle.pgt_change_tracking, pgtrickle.pgt_source_gates, and pgtrickle.pgt_refresh_groups.
Outbox, Inbox, Relay, and Snapshots
pg_trickle can publish stream-table deltas through the transactional outbox pattern and consume idempotent inbox tables.
SELECT pgtrickle.enable_outbox('public.regional_totals');
SELECT pgtrickle.create_consumer_group('billing_workers', 'public.regional_totals');
SELECT * FROM pgtrickle.poll_outbox('billing_workers', 'worker-1');
SELECT pgtrickle.commit_offset('billing_workers', 'worker-1', 42);
SELECT pgtrickle.create_inbox('orders_inbox');
SELECT pgtrickle.inbox_health('orders_inbox');The SQL reference also documents snapshot operations and relay configuration helpers:
SELECT pgtrickle.snapshot_stream_table('public.regional_totals');
SELECT pgtrickle.restore_from_snapshot(
'public.regional_totals',
'pgtrickle.regional_totals_snapshot'
);
SELECT pgtrickle.set_relay_outbox(
'orders-to-nats',
'public.regional_totals',
'relay_group_1',
'{"type": "nats", "subject": "orders.deltas", "url": "nats://nats:4222"}'::jsonb
);Important GUCs
The v0.81.0 release documents 129 configuration parameters. Common operational GUCs include:
pg_trickle.enabledpg_trickle.cdc_modepg_trickle.scheduler_interval_mspg_trickle.min_schedule_secondspg_trickle.default_schedule_secondspg_trickle.max_consecutive_errorspg_trickle.wal_transition_timeoutpg_trickle.slot_lag_warning_threshold_mbpg_trickle.slot_lag_critical_threshold_mbpg_trickle.differential_max_change_ratiopg_trickle.refresh_strategypg_trickle.cost_model_safety_marginpg_trickle.planner_aggressivepg_trickle.merge_join_strategypg_trickle.merge_strategypg_trickle.auto_backoffpg_trickle.tiered_schedulingpg_trickle.cleanup_use_truncatepg_trickle.block_source_ddlpg_trickle.buffer_alert_thresholdpg_trickle.compact_thresholdpg_trickle.max_buffer_rowspg_trickle.auto_indexpg_trickle.aggregate_fast_pathpg_trickle.template_cachepg_trickle.buffer_partitioningpg_trickle.ivm_topk_max_limitpg_trickle.ivm_recursive_max_depthpg_trickle.parallel_refresh_modepg_trickle.max_dynamic_refresh_workerspg_trickle.max_concurrent_refreshespg_trickle.worker_pool_sizepg_trickle.merge_batch_sizepg_trickle.change_buffer_schemapg_trickle.foreign_table_pollingpg_trickle.matview_pollingpg_trickle.log_delta_sqlpg_trickle.metrics_portpg_trickle.outbox_enabledpg_trickle.inbox_enabledpg_trickle.citus_st_lock_lease_mspg_trickle.citus_worker_retry_tickspg_trickle.enable_vector_aggpg_trickle.enable_trace_propagationpg_trickle.otel_endpointpg_trickle.trace_idpg_trickle.cdc_capture_modepg_trickle.commit_timestamp_trackingpg_trickle.l1_cache_max_entriespg_trickle.self_heal_oompg_trickle.self_heal_lock_timeout
pg_trickle.event_driven_wake and pg_trickle.wake_debounce_ms are preserved for upgrade compatibility but are formally deprecated and have no effect, because PostgreSQL background workers cannot use LISTEN; the scheduler uses latch-based polling.
v0.81.0 Operator Notes
The v0.81.0 release adds operator-facing introspection and tuning helpers including pgtrickle.commit_latency_stats(), pgtrickle.tune_recommendations(), and pgtrickle.preview_stream_table(query text). It also adds bounded LRU DVM caches through pg_trickle.l1_cache_max_entries, a pg_trickle.merge_batch_size GUC, and self-healing circuit-breaker settings for out-of-memory and lock-timeout cases.
The release notes say no schema migration is needed for the new code paths; upgrade existing installations with ALTER EXTENSION pg_trickle UPDATE after replacing the extension binaries.
Caveats
pg_tricklev0.81.0 is PostgreSQL 18 only; the release packages are named forpg18, and Cargo defaults to thepg18pgrx feature.- Pigsty builds use
pgrx0.18.0; keep pgrx schema metadata from linker garbage collection when rebuilding packages. - The extension control file marks it
superuser = trueandtrusted = false. - Direct DML on stream tables is not allowed because their contents are managed by the refresh engine.
IMMEDIATEmode bypasses CDC and uses statement-level IVM triggers; WAL CDC is asynchronous and incompatible with in-transaction maintenance.- Materialized views in
DIFFERENTIALmode requirepg_trickle.matview_polling = on;FULLmode works without that snapshot-comparison path. LIMITorOFFSETwithoutORDER BYis rejected for stream-table definitions; useORDER BY ... LIMITfor TopK.- Volatile functions are rejected by default in defining queries according to
pg_trickle.volatile_function_policy.