如何使用 CloudFormation 不间断地迁移到 OpenSearch?
I found this tutorial, however this tutorial has two main drawbacks.
- A brand new CloudFormation stack would be created
- There would be outage.
Is there a way to upgrade ES without outage and new stack ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一种不间断升级ES的方法。步骤如下:
在 CloudFormation yml 文件中仅添加以下配置
更新政策:
启用版本升级:true
更新所有其他 ES 配置,包括版本更改。
部署CloudFormation
第3步将进行蓝绿部署,因此不会出现中断。
相关官方文档。
I found a way to upgrade ES without outage. Here are the steps:
Add only below config in CloudFormation yml file
UpdatePolicy:
EnableVersionUpgrade: true
Update all other ES configs including version changes.
deploy the CloudFormation
Step 3 would do blue-green deployment, so there is no outage.
related official document.