Problem in Matlab + Hadoop Intergration
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jyothi Alugolu
am 10 Nov. 2017
Kommentiert: lov kumar
am 6 Jun. 2019
Good Morning Sir, I tried to integrate matlab with hadoop and try to execute a simple program.But permission denied error is reported as shown in the attached fig.Could any one please help me to solve this issue.
0 Kommentare
Akzeptierte Antwort
Kojiro Saito
am 11 Nov. 2017
The error log says, when MATLAB submitted a job to YARN, /tmp/hadoop-yarn/staging/root/.staging directory in HDFS was used for a staging directory, but you don't have a permission of execution of the directory. Because you're using root user, but the permission of the HDFS's staging directory is nitw_viper_user:supergroup:drwx------. It means only nitw_viper_user user can Read/Write/Execute, and local root user cannot access to the directory.
Simply, changing the permission of staging directory in HDFS would solve this issue.
hadoop fs -chmod -R 777 /tmp/hadoop-yarn
4 Kommentare
lov kumar
am 6 Jun. 2019
Can you please help me to fix this error:
Error using mapreduce (line 124)
The HADOOP job failed to submit. It is possible that there is some issue with the HADOOP configuration.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!