gpt4 book ai didi

amazon-web-services - 使用 CloudFormation 模板更新 AWS Athena 工作组

转载 作者:行者123 更新时间:2023-12-03 07:35:21 25 4
gpt4 key购买 nike

我有 2 个模板,是从 AWS::Athena::WorkGroup - AWS CloudFormation 中获取的。文档。

第一个模板athena_create.yaml按预期工作。第二个模板需要修改第一个模板中创建的工作组。但我收到一个错误:

MyCustomWorkGroup already exists in stack arn:aws:cloudformation:us-east-1:XXX:stack/a1/7cc670a0-8d19-11ea-872c-12217e59f19f

这是代码。创建模板工作正常。

athena_create.yaml

Resources:
MyAthenaWorkGroup:
Type: AWS::Athena::WorkGroup
Properties:
Name: MyCustomWorkGroup
Description: My WorkGroup
State: ENABLED
Tags:
- Key: "key1"
Value: "value1"
- Key: "key2"
Value: "value2"
WorkGroupConfiguration:
BytesScannedCutoffPerQuery: 200000000
EnforceWorkGroupConfiguration: false
PublishCloudWatchMetricsEnabled: false
RequesterPaysEnabled: true
ResultConfiguration:
OutputLocation: s3://path/to/my/bucket/

athena_update.yaml

Resources:
MyAthenaWorkGroup:
Type: AWS::Athena::WorkGroup
Properties:
Name: MyCustomWorkGroup
Description: My WorkGroup Updated
State: DISABLED
Tags:
- Key: "key1"
Value: "value1"
- Key: "key2"
Value: "value2"
WorkGroupConfigurationUpdates:
BytesScannedCutoffPerQuery: 10000000
EnforceWorkGroupConfiguration: true
PublishCloudWatchMetricsEnabled: true
RequesterPaysEnabled: false
ResultConfigurationUpdates:
EncryptionConfiguration:
EncryptionOption: SSE_S3
OutputLocation: s3://path/to/my/bucket/updated/

上述更新模板未按预期工作。

最佳答案

错误的原因是使用了两个模板创建了两个独立的堆栈。这不起作用,因为它们有两个具有相同名称的 Athena WorkGroup:MyCustomWorkGroup

执行创建和更新MyCustomWorkGroup的正确方法如下:

  1. 使用 athena_create.yaml 文件创建堆栈。

  2. 创建堆栈后,使用其 Update 选项上传将更新堆栈的 athena_update.yaml

关于amazon-web-services - 使用 CloudFormation 模板更新 AWS Athena 工作组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61571883/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com