Member since
08-23-2018
1
Post
0
Kudos Received
0
Solutions
08-23-2018
10:06 PM
Kindly check log detail on Resource manager: <clusterip>:8088 Open terminal and checl actual log problem: yarn logs -applicationId <APP_ID> Example: APP_ID = application_1535002188113_0001 In mine case it was showing permission issue to directory '/user/history' so i gave it sudo -u hdfs hadoop fs -chmod 775 /user/history
or
sudo -u hdfs hadoop fs -chmod 777 /user/history Then it works.
... View more