我正试图在亚马逊emr 4.5.0上运行猪。配置工作没有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上养猪吗?
答案 0 :(得分:0)
我用emr-4.4.0成功运行它。但是,我无法让上传到HDFS的tar.gz正常工作。相反,我必须解压缩tarball并上传所有单个文件,然后将tez.lib.uris设置为hdfs:///apps/tez-0.8.2,hdfs:///apps/tez-0.8.2/lib