At the start of a migration, Flyway will attempt to take a lock to prevent competing instances executing in parallel. If this lock cannot be obtained straight away, Flyway will retry at 1s intervals, until this count is reached, at which point it will abandon the migration. A value of -1 indicates that Flyway should keep retrying indefinitely.
Retry 50 times then fail
./flyway -lockRetryCount=10 migrate
flyway.lockRetryCount=10
FLYWAY_LOCK_RETRY_COUNT=10
Flyway.configure()
.lockRetryCount(10)
.load()
flyway {
lockRetryCount = 10
}
<configuration>
<lockRetryCount>10</lockRetryCount>
</configuration>