db关闭时如何处理flyway
Posted
技术标签:
【中文标题】db关闭时如何处理flyway【英文标题】:How to handle flyway when the db is down 【发布时间】:2021-08-22 06:08:44 【问题描述】:这是我第一次使用 flyway,我需要帮助。 在微服务的生命周期中,postgres 数据库可以关闭。我想知道flyway启动后如何再次连接到数据库。
【问题讨论】:
【参考方案1】:据我所知,您可以在配置 flyway 时使用connectRetries
。例如:
flyway
url = <Your url>
user = <Your user>
password = <Your password>
driver = <mysql/Postgres Driver>
schemas = <Your schema>]
connectRetries = 3
locations = <Migration file location>
【讨论】:
以上是关于db关闭时如何处理flyway的主要内容,如果未能解决你的问题,请参考以下文章
应用关闭时如何处理 UNNotificationAction?