通常情况下创建索引时,postgresql数据库会锁定表以防止写入,然后对表做全表扫描,从而完成索引的创建。在此过程中用户仍然可以查询,但不能插入、更新、删除,对于一个含有大量数据的表,创建索引可能需要几十分钟,这会导致其他操作的等待。鉴于此postgresql支持异步创建索引。CONCURRENTLY
CREATE TABLE "public"."test" ( "id" int4 NOT NULL DEFAULT NULL, "name" text COLLATE "pg_catalog"."default" DEFAULT NULL, PRIMARY KEY ("id") ) ;
insert into test select generate_series(1,5000000), generate_series(1,5000000)
create index concurrently testt on test(name)
delete from test where name='1000100'