Data Compression
// set compression for the hypertable
ALTER TABLE public.tssamples_data SET
(
timescaledb.compress,
timescaledb.compress_segmentby = 'tag_id'
)// set up automatic data compression call
SELECT add_compress_chunks_policy('public.tssamples_data', INTERVAL '7 days');Last updated