数据库
首页 > 数据库> > postgresql并行执行

postgresql并行执行

作者:互联网

支持索引并行创建

set max_parallel_workers=64;

set max_parallel_maintenance_workers=64;

drop index idx_file_name;
CREATE INDEX idx_file_name ON big_search_doc_new_ic USING btree (filename);

 

GIN索引不支持并行执行

CREATE INDEX big_search_doc_new_ic_tsvector_content_idx ON big_search_doc_new_ic USING gin (tsvector_content);

 

并行执行不支持insert select,create table as select。

 

标签:search,postgresql,idx,big,并行执行,new,ic
来源: https://www.cnblogs.com/zhjh256/p/15269949.html