具有多个输入的AWS数据管道活动

时间:2015-05-13 13:56:34

标签: variables amazon-web-services input hive amazon-data-pipeline

作为Amazon AWS数据管道的一部分,我有一个使用两个未分级的S3数据节点作为输入的配置单元活动。我想要的是能够在活动上设置两个脚本变量,每个变量指向一个输入数据节点,但我无法正确获得语法。使用单个输入,我可以编写以下内容,它可以正常工作:

INPUT_FOO=#{input.directoryPath}

当我添加第二个输入时,我遇到了如何引用它们的问题,因为它们现在是一个输入数组,您可以在下面的管道定义中看到。基本上,我想实现以下目标,但无法找出正确的语法:

INPUT_FOO=#{input[1].directoryPath}
INPUT_BAR=#{input[2].directoryPath}

这是管道定义的活动部分:

{
  "id": "ActivityId_7u1sR",
  "input": [
    {
      "ref": "DataNodeId_iYnxf"
    },
    {
      "ref": "DataNodeId_162Ka"
    }
  ],
  "schedule": {
    "ref": "DefaultSchedule"
  },
  "scriptUri": "#{myS3ScriptLocation}calculate-results.q",
  "name": "Perform Calculations",
  "runsOn": {
    "ref": "EmrClusterId_jHeiV"
  },
  "scriptVariable": [
    "INPUT_SOURCE1=#{input[1].directoryPath}",
    "OUTPUT=#{output.directoryPath}Results/",
    "INPUT_SOURCE2=#{input[2].directoryPath}"
  ],
  "output": {
    "ref": "DataNodeId_2jY6v"
  },
  "type": "HiveActivity",
  "stage": "false"
}

我计划保持表格不受影响,并在hive脚本中处理表创建,这样可以更容易地单独运行每个Hive活动以及管道本身。

这是我在使用数组语法时看到的错误:

Unable to resolve input[1].directoryPath for object ActivityId_7u1sR'

1 个答案:

答案 0 :(得分:0)

目前的情况是,不支持此方案,但是添加了一项功能请求以支持它。