我有一个像这样的 timescaledb 超表:
create table logs
(
time timestamp not null,
partitionkey text not null,
ip inet,
raw text,
transformed double precision
);
和索引如下:
create index logs_time_idx
on logs (time desc);
create unique index logs_partitionkey_time_uindex
on logs (partitionkey asc, time desc);
当我运行此查询时,需要 20 分钟才能完成:
SELECT * FROM data.logs
WHERE partitionkey LIKE '%m.60.05482730'
AND time > NOW() - INTERVAL '3 days'
但是当我运行这个时,它需要 2 秒:
SELECT * FROM data.logs
WHERE partitionkey LIKE '865617033605366.m.60.05482730'
AND time > NOW() - INTERVAL '3 days'
我尝试仅索引分区键以帮助通配符查询找到匹配值,但这没有效果。
-- created this index later to try and fix the slow wildcard query
create index logs_partitionkey_index
on logs (partitionkey);
解释通配符查询的计划:
Gather (cost=1000.57..525711.89 rows=1219 width=81)
Workers Planned: 2
-> Parallel Custom Scan (ChunkAppend) on logs (cost=0.57..524589.99 rows=509 width=82)
Chunks excluded during startup: 2
-> Parallel Index Scan using _hyper_2_10_chunk_logs_time_idx on _hyper_2_10_chunk (cost=0.57..263956.91 rows=255 width=81)
Index Cond: ("time" > (now() - '3 days'::interval))
Filter: (partitionkey ~~ '%m.60.05482730'::text)
-> Parallel Index Scan using _hyper_2_9_chunk_logs_time_idx on _hyper_2_9_chunk (cost=0.57..260629.72 rows=252 width=83)
Index Cond: ("time" > (now() - '3 days'::interval))
Filter: (partitionkey ~~ '%m.60.05482730'::text)
JIT:
Functions: 8
Options: Inlining true, Optimization true, Expressions true, Deforming true
解释具体的partionkey值:
Custom Scan (ChunkAppend) on logs (cost=0.44..903.08 rows=790 width=82)
Chunks excluded during startup: 2
-> Index Scan using _hyper_2_9_chunk_logs_partitionkey_time_uindex on _hyper_2_9_chunk (cost=0.57..447.44 rows=392 width=83)
Index Cond: ((partitionkey = '865617033605366.m.60.05482730'::text) AND ("time" > (now() - '3 days'::interval)))
Filter: (partitionkey ~~ '865617033605366.m.60.05482730'::text)
-> Index Scan using _hyper_2_10_chunk_logs_partitionkey_time_uindex on _hyper_2_10_chunk (cost=0.57..452.27 rows=396 width=81)
Index Cond: ((partitionkey = '865617033605366.m.60.05482730'::text) AND ("time" > (now() - '3 days'::interval)))
Filter: (partitionkey ~~ '865617033605366.m.60.05482730'::text)
TimescaleDB 是否无法执行通配符 (%) 查询,还是我错过了索引?