通过创建EmrCluster的API / CLI创建数据管道时,我可以使用数组结构指定多个步骤:
{ "objects" : [
{ "id" : "myEmrCluster",
"terminateAfter" : "1 hours",
"schedule" : {"ref":"theSchedule"}
"step" : ["some.jar,-param1,val1", "someOther.jar,-foo,bar"] },
{ "id" : "theSchedule", "period":"1 days" }
] }
我可以调用put-pipeline-definition
引用上面的文件,为EMR群集创建许多步骤。
现在,如果我想使用CloudFormation创建管道,我可以使用PipelineObjects
资源类型中的AWS::DataPipeline::Pipeline
属性来配置管道。但是,管道对象只能是StringValue
或RefValue
类型。如何创建数组管道对象字段?
这是一个相应的云形态模板:
"Resources" : {
"MyEMRCluster" : {
"Type" : "AWS::DataPipeline::Pipeline",
"Properties" : {
"Name" : "MyETLJobs",
"Activate" : "true",
"PipelineObjects" : [
{
"Id" : "myEmrCluster",
"Fields" : [
{ "Key" : "terminateAfter","StringValue":"1 hours" },
{ "Key" : "schedule","RefValue" : "theSchedule" },
{ "Key" : "step","StringValue" : "some.jar,-param1,val1" }
]
},
{
"Id" : "theSchedule",
"Fields" : [
{ "Key" : "period","StringValue":"1 days" }
]
}
]
}
}
}
使用上述模板,step
为StringValue
,相当于:
"step" : "some.jar,-param1,val1"
而不是所需配置的数组。
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects-fields.html仅显示StringValue
和RefValue
是有效密钥 - 是否可以通过CloudFormation创建一系列步骤?
提前致谢。
答案 0 :(得分:0)
啊,我不确定我在哪里看到steps
可以配置为数组 - 文档没有提及 - 相反,它指定有多个步骤,多个{{1应该使用条目。
step