为了防止在迁移到生产站点期间出现数据库事务错误,我们遵循了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
答案 0 :(得分:1)
事实证明,该问题与该迁移无关,但之前的一个问题是在同一个批处理中运行,该批处理是将新列添加到同一个表中。
因为我们在表中添加了一个列,所以我们在Active Record https://github.com/rails/rails/issues/12330中遇到了这个错误,这实际上导致事务中的所有ActiveRecord操作由于过时的PreparedStatement而失败,直到服务器重新启动。
我们将在迁移过程中使用该问题中描述的解决方法。