Reputation: 35
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
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