timescaledb/tsl/test/sql/hypercore_parallel.sql
Mats Kindahl e5e94960d0 Change parameter name to enable Hypercore TAM
Changing from using the `compress_using` parameter with a table access
method name to use the boolean parameter `hypercore_use_access_method`
instead to avoid having to provide a name when using the table access
method for compression.
2024-11-10 10:50:48 +01:00

93 lines
3.8 KiB
SQL

-- This file and its contents are licensed under the Timescale License.
-- Please see the included NOTICE for copyright information and
-- LICENSE-TIMESCALE for a copy of the license.
\ir include/setup_hypercore.sql
-- Set parallel cost to zero to force parallel plans and avoid flaky test.
set parallel_tuple_cost to 0;
set parallel_setup_cost to 0;
-- We need to drop the index to trigger parallel plans. Otherwise they
-- will use the index.
drop index hypertable_device_id_idx;
-- Show parallel plan and count on uncompressed (non-hypercore)
-- hypertable
set max_parallel_workers_per_gather=2;
select explain_anonymize(format($$
select device_id, count(*) from %s where device_id=1 group by device_id
$$, :'hypertable'));
select device_id, count(*) from :hypertable where device_id=1 group by device_id;
-- Save counts collected over entire hypertable
select device_id, count(*) into orig from :hypertable group by device_id;
-- Save counts over a single chunk
select device_id, count(*) into orig_chunk from :chunk1 group by device_id;
-----------------------
-- Enable hypercore --
-----------------------
select compress_chunk(show_chunks(:'hypertable'), hypercore_use_access_method => true);
-- Show count without parallel plan and without ColumnarScan
set timescaledb.enable_columnarscan=false;
set max_parallel_workers_per_gather=0;
select explain_anonymize(format($$
select device_id, count(*) from %s where device_id=1 group by device_id
$$, :'hypertable'));
select device_id, count(*) from :hypertable where device_id=1 group by device_id;
-- Filter on segmentby column
select explain_anonymize(format($$
select owner_id, count(*) from %s where owner_id=1 group by owner_id
$$, :'hypertable'));
select owner_id, count(*) from :hypertable where owner_id=1 group by owner_id;
-- Enable parallel on SeqScan and check for same result
set max_parallel_workers_per_gather=2;
select explain_anonymize(format($$
select device_id, count(*) from %s where device_id=1 group by device_id
$$, :'hypertable'));
select device_id, count(*) from :hypertable where device_id=1 group by device_id;
select explain_anonymize(format($$
select owner_id, count(*) from %s where owner_id=1 group by owner_id
$$, :'hypertable'));
select owner_id, count(*) from :hypertable where owner_id=1 group by owner_id;
-- Enable ColumnarScan and check for same result
set timescaledb.enable_columnarscan=true;
select explain_anonymize(format($$
select device_id, count(*) from %s where device_id=1 group by device_id
$$, :'hypertable'));
select device_id, count(*) from :hypertable where device_id=1 group by device_id;
-- Filter on segmentby column (pushing down scankeys in parallel mode)
select explain_anonymize(format($$
select owner_id, count(*) from %s where owner_id=1 group by owner_id
$$, :'hypertable'));
select owner_id, count(*) from :hypertable where owner_id=1 group by owner_id;
-- Parallel plan with hypercore on single chunk
select explain_anonymize(format($$
select device_id, count(*) from %s where device_id=1 group by device_id
$$, :'hypertable'));
select device_id, count(*) from :chunk1 where device_id=1 group by device_id;
select explain_anonymize(format($$
select owner_id, count(*) from %s where owner_id=1 group by owner_id
$$, :'hypertable'));
select owner_id, count(*) from :chunk1 where owner_id=1 group by owner_id;
-- Compare hypercore per-location counts with original counts without
-- hypercore
select device_id, count(*) into comp from :hypertable group by device_id;
select * from orig join comp using (device_id) where orig.count != comp.count;
-- Compare counts on single chunk
select device_id, count(*) into comp_chunk from :chunk1 group by device_id;
select * from orig_chunk join comp_chunk using (device_id) where orig_chunk.count != comp_chunk.count;