postgresql并行执行

2021/9/15 2:05:15

本文主要是介绍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。

 



这篇关于postgresql并行执行的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程