1

我正在尝试在亚马逊 emr 4.5.0 上的 tez 上运行 pig。该配置在没有 tez 的情况下工作,我只是想让它在 Tez 上工作。

要创建集群(从命令行),我们使用(TEZ_VERSION 定义为 0.5.2):

--bootstrap-actions Path=s3://support.elasticmapreduce/tez/bigtop/install-tez.rb,Args=[-v,$TEZ_VERSION,--tez-site,tez.lib.uris=s3://support.elasticmapreduce/tez/$TEZ_VERSION/tez-$TEZ_VERSION-minimal.tar.gz]

此外,我正在覆盖 PIG_CLASSPATH:

--configurations file://pig_tez_classification.json

包含:

[
  {
    "Classification": "hadoop-env",
    "Properties": {

    },
    "Configurations": [
      {
        "Classification": "export",
        "Properties": {
          "PIG_CLASSPATH": "/etc/tez/conf"
        },
        "Configurations": [

        ]
      }
    ]
  }
]

需要 PIG_CLASSPATH 来防止此错误:

ERROR org.apache.pig.backend.hadoop.executionengine.tez.TezJob  - Cannot submit DAG
org.apache.tez.dag.api.TezUncheckedException: Invalid configuration of tez jars, tez.lib.uris is not defined in the configuration

需要 tez.lib.uris 覆盖来防止此错误:

ERROR org.apache.pig.backend.hadoop.executionengine.tez.TezJob (PigTezLauncher-0): Cannot submit DAG
java.io.FileNotFoundException: File does not exist: hdfs://ip-172-31-3-207.eu-west-1.compute.internal:8020/apps/tez/0.5.2/tez-0.5.2-minimal.tar.gz

似乎安装脚本将 tar.gz 文件写入 hdfs 中的正确位置,但是当我之后通过 ssh 登录时,该文件不存在。我认为在 EMR-4 中,引导操作在不同的时间运行,所以在 hdfs 可用之前?

毕竟,我仍然收到此错误:

WARN  org.apache.pig.backend.hadoop.executionengine.tez.TezJob  - Exception while gathering stats
java.lang.NullPointerException
    at org.apache.pig.tools.pigstats.tez.TezDAGStats.accumulateStats(TezDAGStats.java:191)
    at org.apache.pig.tools.pigstats.tez.TezPigScriptStats.accumulateStats(TezPigScriptStats.java:180)
    at org.apache.pig.backend.hadoop.executionengine.tez.TezJob.run(TezJob.java:194)
    at org.apache.pig.backend.hadoop.executionengine.tez.TezLauncher$1.run(TezLauncher.java:167)

尝试使用 tez 版本 0.8.2 会产生:

ERROR org.apache.pig.backend.hadoop.executionengine.tez.TezJob  - Cannot submit DAG
org.apache.tez.dag.api.SessionNotRunning: TezSession has already shutdown

这似乎是由于使用的 tez 版本不同,因为它仍然打印出来:

INFO  org.apache.pig.tools.pigstats.tez.TezPigScriptStats  - Script Statistics:

       HadoopVersion: 2.7.2-amzn-0                                                                                        
          PigVersion: 0.14.0-amzn-0                                                                                       
          TezVersion: 0.5.2                                                                                               
              UserId: hadoop

那么有谁知道如何让亚马逊 emr(无论版本)上的猪在 tez 上运行吗?

4

1 回答 1

0

我正在使用 emr-4.4.0 成功运行它。但是,我无法让 pig 与上传到 HDFS 的 tar.gz 一起正常工作。相反,我必须解压压缩包并上传所有单独的文件,然后将 tez.lib.uris 设置为 hdfs:///apps/tez-0.8.2,hdfs:///apps/tez-0.8.2/lib

于 2016-04-15T16:07:52.880 回答