omkar powar
omkar powar

Reputation: 35

Timeout after 600 Secs in hadoop

mapReduce

Fail Log 1

Fail Log 2

When I run mapreduce program on large data it gives the timeout error.There is no issue in program, it executed successfully on small data. Please refer given 3 images. Thanks in advance.

Upvotes: 1

Views: 2802

Answers (1)

HbnKing
HbnKing

Reputation: 1882

Change this setting in mapred-site.xml

   <property>
    <name>mapred.task.timeout</name>
    <value>1800000</value>
    </property>

It may helps to your problem

Upvotes: 2

Related Questions