为了防止在我们迁移到生产站点期间出现数据库事务错误,我们遵循了
https://github.com/LendingHome/zero_downtime_migrations中概述的建议(特别是
https://robots.thoughtbot.com/how-to-create-postgres-indexes-concurrently-in概述),但是在特别大的表上创建索引时,甚至是索引的“并发”方法创建锁定了表并导致任何ActiveRecord在该表上创建或更新导致其各自的事务因PG :: InFailedsqlTransaction异常而失败.
以下是迁移看起来像我们正在运行Rails 4.2(使用ActiveRecord 4.2.7.1):
class AddTypeIndexToModel < ActiveRecord::Migration disable_ddl_transaction! def change add_index :model,:model_type_id,algorithm: :concurrently end end