I was wondering how Flyway handles exceptions thrown from classes that implement the JdbcMigration interface.

Does Flyway roll back the transaction? Does it stop doing further migrations?

有帮助吗?

解决方案

Does Flyway roll back the transaction?

Yes, it will rollback the transaction until the latest well executed script or latest commit done. Then it will log the Exception and notify you (depending how you configure it).

Does it stop doing further migrations?

AFAIK that's the common behavior, it will stop if it encounters an error.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top