0

Java アクションで Oozie ワークフローを実行しようとすると、次のエラーが発生します。

JA006: Call From sandbox.hortonworks.com/10.0.2.15 to sandbox.hortonworks.com:10020 failed 
on connection exception: java.net.ConnectException: Connection refused; 
For more details see: http://wiki.apache.org/hadoop/ConnectionRefused

これは、workflow.xml です。

<workflow-app name="cascading-wordcount" xmlns="uri:oozie:workflow:0.4">
<start to="wordcount_job"/>
<action name="wordcount_job">
    <java>
        <job-tracker>${jobTracker}</job-tracker>
        <name-node>${nameNode}</name-node>
        <configuration>
            <property>
                <name>jobTracker</name>
                <value>sandbox.hortonworks.com:8050</value>
            </property>
        </configuration>
        <main-class>com.test.cascading.WordCount</main-class>
        <arg>/user/hue/oozie/test/cascading-in/rain.txt</arg>
        <arg>/user/hue/oozie/test/cascading-out</arg>
        <capture-output/>
    </java>
    <ok to="end"/>
    <error to="kill"/>
</action>
<kill name="kill">
    <message>Action failed, error message[${wf:errorMessage(wf:lastErrorNode())}]</message>
</kill>
<end name="end"/>

ジョブに関連するログを表示することさえできません。試してみると、

Could not find job job_1453962161829_0005.
Job job_1453962161829_0005 could not be found: HTTPConnectionPool(host='sandbox.hortonworks.com', port=19888): Max retries exceeded with url: /ws/v1/history/mapreduce/jobs/job_1453962161829_0005 (Caused by <class 'socket.error'>: [Errno 111] Connection refused)

コマンドで CLI を使用して、ここで使用したのと同じ jar を実行できますyarn jar。私はこれらの初心者です。私はばかげた間違いをしたのではないかと心配しています。

編集

これは、snies が言ったように、CLI を介してログを表示しようとしたときに得られるものです。

impl.TimelineClientImpl: Timeline service address: http://sandbox.hortonworks.com:8188/ws/v1/timeline/
client.RMProxy: Connecting to ResourceManager at sandbox.hortonworks.com/10.0.2.15:8050
/app-logs/root/logs/application_1453962161829_0005 does not exist.
Log aggregation has not completed or is not enabled.
4

0 に答える 0