是否可以通过alembic脚本为DB表创建并发索引?
我正在使用postgres数据库,并且能够在postgres提示符下通过sql命令创建并发表索引。(并行创建索引on();)
但是找不到通过Db migration(alembic)脚本创建相同的方法。如果我们创建普通索引(不是并发),它将锁定DB表,因此不能并行执行任何查询。所以只想知道如何通过alembic(数据库迁移)脚本创建并发索引
答案 0 :(得分:2)
我没有使用Postgres而且我无法测试它,但它应该是可能的。 根据:
http://docs.sqlalchemy.org/en/latest/dialects/postgresql.html
版本0.9.9中的Postgres方言允许使用并发索引。 但是,像这样的迁移脚本应该适用于旧版本(直接SQL创建):
from alembic import op, context
from sqlalchemy import Table, Column, Integer, String, MetaData, ForeignKey
from sqlalchemy.orm import relationship
from sqlalchemy.sql import text
# ---------- COMMONS
# Base objects for SQL operations are:
# - use op = INSERT, UPDATE, DELETE
# - use connection = SELECT (and also INSERT, UPDATE, DELETE but this object has lot of logics)
metadata = MetaData()
connection = context.get_bind()
tbl = Table('test', metadata, Column('data', Integer), Column("unique_key", String))
# If you want to define a index on the current loaded schema:
# idx1 = Index('test_idx1', tbl.c.data, postgresql_concurrently=True)
def upgrade():
...
queryc = \
"""
CREATE INDEX CONCURRENTLY test_idx1 ON test (data, unique_key);
"""
# it should be possible to create an index here (direct SQL):
connection.execute(text(queryc))
...
答案 1 :(得分:0)
答案 2 :(得分:0)
Alembic支持PostgreSQL
同时创建索引
def upgrade():
op.execute('COMMIT')
op.create_index('ix_1', 't1', ['col1'], postgresql_concurrently=True)