如何使用 CloudFormation 不间断地迁移到 OpenSearch?

发布于 2025-01-11 07:10:30 字数 245 浏览 2 评论 0原文

我找到了本教程,但是本教程有两个主要缺点。

  1. 将创建一个全新的 CloudFormation 堆栈,
  2. 并且会出现中断。

有没有一种方法可以在不停机和新堆栈的情况下升级 ES?

I found this tutorial, however this tutorial has two main drawbacks.

  1. A brand new CloudFormation stack would be created
  2. There would be outage.

Is there a way to upgrade ES without outage and new stack ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执着的年纪 2025-01-18 07:10:30

我找到了一种不间断升级ES的方法。步骤如下:

  1. 在 CloudFormation yml 文件中仅添加以下配置

    更新政策:
    启用版本升级:true

  2. 更新所有其他 ES 配置,包括版本更改。

  3. 部署CloudFormation

第3步将进行蓝绿部署,因此不会出现中断。

相关官方文档。

I found a way to upgrade ES without outage. Here are the steps:

  1. Add only below config in CloudFormation yml file

    UpdatePolicy:
    EnableVersionUpgrade: true

  2. Update all other ES configs including version changes.

  3. deploy the CloudFormation

Step 3 would do blue-green deployment, so there is no outage.

related official document.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文