Flyway 可重复迁移 - 在版本化迁移之前执行?

Posted

技术标签:

【中文标题】Flyway 可重复迁移 - 在版本化迁移之前执行?【英文标题】:Flyway repeatable migrations - executed before versioned ones? 【发布时间】:2016-09-12 05:09:32 【问题描述】:

我在使用可重复迁移时观察到一些奇怪的 Flyway 行为。文档指出:

在单次迁移运行中,可重复的迁移总是在所有待定的版本化迁移都已执行后最后应用。

但在我的情况下,可重复迁移(正在重新创建数据库视图之一)似乎失败了,因为它是在版本化迁移之前执行的。

迁移前的航路信息数据: +-------------------+---------------------+---------------------+---------+ | Version | Description | Installed on | State | +-------------------+---------------------+---------------------+---------+ | 1 | Initial | | <Baseln | | 2 | ███████████████████ | | <Baseln | | 5 | Initial data | | <Baseln | | 6 | Initial sample data | 2016-04-29 14:21:13 | Success | | 20160422002600000 | ███████████████████ | 2016-04-29 14:33:48 | Success | | 20160422003400000 | ███████████████████ | 2016-04-29 14:33:48 | Success | | 20160422004700000 | ███████████████████ | 2016-04-29 14:33:48 | Success | | 20160428152800000 | ███████████████████ | 2016-04-29 14:33:48 | Success | | 20160428163300000 | ███████████████████ | 2016-04-29 14:33:48 | Success | | 20160428171300000 | ███████████████████ | 2016-04-29 14:33:48 | Success | | | ProblematicView | 2016-04-29 14:33:48 | Outdate | | | Reports | 2016-04-29 14:33:49 | Success | | | OtherView | 2016-04-29 14:33:49 | Success | | 20160429115100000 | ███████████████████ | 2016-04-29 14:37:10 | Success | | 20160429160100000 | ███████████████████ | 2016-05-16 11:54:24 | Success | | 20160501090500000 | ███████████████████ | 2016-05-16 11:54:24 | Success | | 20160504111600000 | ███████████████████ | 2016-05-16 11:54:24 | Success | | 20160504120400000 | ███████████████████ | 2016-05-16 11:54:24 | Success | | 20160504143800000 | ███████████████████ | 2016-05-16 11:54:24 | Success | | 20160504145200000 | ███████████████████ | 2016-05-16 11:54:25 | Success | | 20160504161600000 | ███████████████████ | | Pending | | 20160506110300000 | ███████████████████ | | Pending | | 20160506162300000 | ███████████████████ | | Pending | | 20160506232000000 | ███████████████████ | | Pending | | 20160508144100000 | ███████████████████ | | Pending | | 20160509192400000 | ███████████████████ | | Pending | | 20160511160000000 | ███████████████████ | | Pending | | 20160511163659000 | ███████████████████ | | Pending | | 20160511163700000 | A newly_created_col | | Pending | | 20160511170000000 | ███████████████████ | | Pending | | 20160512112100000 | ███████████████████ | | Pending | | 20160512170500000 | ███████████████████ | | Pending | | 20160513134900000 | ███████████████████ | | Pending | +-------------------+---------------------+-------------------------------+

以及迁移日志:

[INFO] Database: jdbc:sqlserver://█:1433;authenticationScheme=nativeAuthentication;xopenStates=false;sendTimeAsDatetime=true;trustServerCertificate=false;sendStringParametersAsUnicode=true;selectMethod=direct;responseBuffering=adaptive;packetSize=8000;multiSubnetFailover=false;loginTimeout=15;lockTimeout=-1;lastUpdateCount=true;encrypt=false;disableStatementPooling=true;databaseName=█;applicationName=Microsoft JDBC Driver for SQL Server;applicationIntent=readwrite; (Microsoft SQL Server 11.0)
[INFO] Successfully validated 33 migrations (execution time 00:00.052s)
[INFO] SQLServer does not support setting the schema for the current session. Default schema NOT changed to dbo
[INFO] Current version of schema [dbo]: 20160504145200000
[WARNING] outOfOrder mode is active. Migration of schema [dbo] may not be reproducible.
[INFO] Migrating schema [dbo] with repeatable migration ProblematicView
[ERROR] Migration of schema [dbo] with repeatable migration ProblematicView failed! Changes successfully rolled back.
[INFO] SQLServer does not support setting the schema for the current session. Default schema NOT changed to dbo
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.550s
[INFO] Finished at: Mon May 16 12:40:49 CEST 2016
[INFO] Final Memory: 10M/243M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.flywaydb:flyway-maven-plugin:4.0.1:migrate (migrate-¦) on project ¦-db: org.flywaydb.core.internal.dbsupport.FlywaySqlScriptException:
[ERROR] Migration R__ProblematicView.sql failed
[ERROR] ------------------------------------------------
[ERROR] SQL State  : S0001
[ERROR] Error Code : 207
[ERROR] Message    : Invalid column name 'newly_created_column'. /*<-- column created in V20160511163700000*/`

我做错了吗? 我正在使用具有以下属性的 flyway-maven-plugin 4.0.1(也在 4.0 上测试过):

Maven:
<cleanDisabled>true</cleanDisabled>
<outOfOrder>true</outOfOrder>
<table>schema_version</table>
<repeatableSqlMigrationPrefix>R</repeatableSqlMigrationPrefix>
<sqlMigrationPrefix>V</sqlMigrationPrefix>
Config file:
flyway.user=flyway
flyway.password=█
flyway.url=jdbc:sqlserver://█;databasename=█
flyway.locations=filesystem:flyway/upgrade/█`

//编辑1:

    outOfOrder 设置为 false 时,迁移仍然失败, clean + migrate 似乎有效,但这并不能完全解决问题, 我还注意到一件事——当我将数据库回滚到版本 20160504143800000 时,列表末尾会显示可重复的迁移(flyway 信息),但是当 20160504145200000 迁移突然成功执行时,它们就在中间(如上表所示)。我不确定这是否与实际执行顺序有关。

【问题讨论】:

【参考方案1】:

原来是 Flyway 中的一个错误:LINK - 它影响版本 4.0 - 4.0.2,并已在 4.0.3 (Release notes) 中修复。

我可以确认它现在在空数据库和现有数据库上都可以正常工作。

【讨论】:

【参考方案2】:

值得您将 outOfOrder 属性更改为 false,以便迁移只能按其定义的顺序发生。

如果您仍然看到问题,您是否也可以将 cleanDisabled 设置为 false 以便完全重建架构并报告您看到的内容。

上述两种情况都会导致 flyway 以更确定的方式工作,因此可以让其他人更确定评论事件的顺序。

【讨论】:

以上是关于Flyway 可重复迁移 - 在版本化迁移之前执行?的主要内容,如果未能解决你的问题,请参考以下文章

Flyway 始终执行可重复的迁移

flyway和可重复迁移的初始化

序列和分区的版本化或可重复脚本 - Flyway?

Flyway 可重复迁移随机运行

可以重命名 Flyway 可重复迁移吗?

在 flyway 迁移脚本之前执行 JPA 表创建