2017-07-26 14 views
1

私はHDFS txtファイルから入力を受け取りますが、txtファイルを呼び出すたびに、ディレクトリは存在しないがサーバー上に存在すると言います。Oozieシェルアクション

#!/bin/bash 

Ingesta="MUM_APPs" 
msj="'${1}'" 
#alerta=`hdfs dfs -test -e /user/inpt_red/oozie/workspace/envio_sms/EnviaSMS/Num_Alerta.txt` 

while read line 
do 
line=${i} 
    Num=$(echo $line | cut -d '|' -f1) 
    Proceso=$(echo $line | cut -d '|' -f5) 

    if [ "$Proceso" == "*" ] || [ "$Proceso" == "$Ingesta" ]; then 
     source /user/inpt_red/oozie/workspace/envio_sms/EnviaSMS/EnviaSMS.sh ${Num} "'ALERTA!! $Ingesta (`date +%d-%m-%Y` `date +%H:%M:%S`), $msj'" 
    fi`enter code here` 

done < <(hadoop fs -cat hdfs://mixsfwdebda01.telefonica.com/user/inpt_red/oozie/workspace/envio_sms/EnviaSMS/Num_Alerta.txt) 

編集1:

ここで私が取得しています新しいエラーです:

sh: line 17: syntax error near unexpected token `<' 
sh: line 17: `done < <(hadoop fs -cat hdfs://mixsfwdebda01.telefonica.com/user/inpt_red/oozie/workspace/envio_sms/EnviaSMS/Num_Alerta.txt)' 
Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.ShellMain], exit code [1] 
log4j:WARN No appenders could be found for logger (org.apache.hadoop.metrics2.impl.MetricsSystemImpl). 
log4j:WARN Please initialize the log4j system properly. 
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. 

答えて

2

を別の方法として、あなたはを変更することができ、ここで

は私のシェルスクリプトがありますスクリプト:

hadoop fs -cat hdfs://mixsfwdebda01.telefonica.com/user/inpt_red/oozie/workspace/envio_sms/EnviaSMS/Num_Alerta.txt |\ 
while read line; do 
    echo "${line}" 
    #Some Stuff 
    #some more stuff 
done 
+0

はい、あなたは正しいです。私は事をミックスしました。 –

+0

ねえ..ありがとう、これは働いた..タイ人。 –

関連する問題