从 AWS Step Functions 创建 EMR 集群时添加引导操作

问题描述 投票:0回答:2

我正在使用以下代码从 Step Functions 创建 EMR 集群,

 "spinning_emr_cluster": {
      "Type": "Task",
      "Resource": "arn:aws:states:::elasticmapreduce:createCluster.sync",
      "Parameters": {
        "Name": "CombineFiles",
        "VisibleToAllUsers": true,
        "ReleaseLabel": "emr-5.29.0",
        "Applications": [
          {
            "Name": "Spark"
          }
        ],
        "ServiceRole": "EMR_DefaultRole",
        "JobFlowRole": "EMR_EC2_DefaultRole",
        "LogUri": "s3://awsmssqltos3/emr_logs/",
        "Instances": {
          "KeepJobFlowAliveWhenNoSteps": true,
          "InstanceFleets": [
            {
              "Name": "Master",
              "InstanceFleetType": "MASTER",
              "TargetOnDemandCapacity": 1,
              "InstanceTypeConfigs": [
                {
                  "InstanceType": "m1.large"
                }
              ]
            },
            {
              "Name": "Slave",
              "InstanceFleetType": "CORE",
              "TargetOnDemandCapacity": 1,
              "InstanceTypeConfigs": [
                {
                  "InstanceType": "m1.large"
                }
              ]
            }
          ]
        }
      },
      "ResultPath": "$.CreateClusterResult",
      "Next": "lambda"

我想在从 AWS Step Functions 创建集群时添加引导操作。我尝试过在线搜索,但找不到任何语法。

amazon-emr aws-step-functions
2个回答
2
投票
        "BootstrapActions": [
      {
        "Name": "CustomBootStrapAction",
        "ScriptBootstrapAction": {
          "Path": "",
          "Args": []
        }
      }
    ]

请将以上代码添加到参数块中。


© www.soinside.com 2019 - 2024. All rights reserved.