并行顺序查询
功能描述
并行顺序查询时利用多核CPU的并行处理,将一个表顺序查询语句由多个并行worker线程执行查询操作。
示例
创建表
create table test(id int,name text,age int);
插入数据
insert into test values(generate_series(1,1000000),’vastbase’,34);
analyze test;
设置并行度
set query_dop=5;
打印并行查询计划
explain select count(*) from test where id<100;