Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Who agreed with this solution

avatar
New Contributor

You will have problems starting spark-shell with any master because there are permissioning issues with the hdfs folders that spark uses.

 

To fix it do the following:

 

sudo -u hdfs hadoop fs -chmod 777 /user/spark
sudo -u spark hadoop fs -chmod 777 /user/spark/applicationHistory

 

That should do it 🙂

View solution in original post

Who agreed with this solution