postgresql 非阻塞性创建索引

正常的 create index 是会阻塞 dml 操作的,在生产环境需要添加 concurrently 参数。
postgresql 8.2 版本就支持 concurrently 参数

create index concurrently idx_index_name on table_name(column_name);

参考:
https://www.postgresql.org/docs/8.2/sql-createindex.html

你可能感兴趣的:(#,postgresql,opti,table,index,postgresql,pgsql,concurrently)