Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created on 06-23-2017 11:47 AM - edited 08-17-2019 08:21 PM
I am trying to execute a mapreduce function written in Python thru a Hadoop Sandbox via Terminal on MacOS.
I am connected to the sandbox (v2.6) via centOS which are all working fine.
The same python function runs successfully on my machine(locally) via Terminal.
Any clue as to how to fix this?
Many Thanks,
Z
Created 06-23-2017 12:11 PM
There looks like a type mistake in your PATH Please check "haddop" .. it should be "hadoop" (The Jar name is not correct).
Your PATH:
/usr/hdp/current/haddop-mapreduce-client/hadoop-streaming.jar
The path should be
/usr/hdp/current/hadoop-mapreduce-client/hadoop-streaming.jar
.
Created 06-23-2017 12:11 PM
There looks like a type mistake in your PATH Please check "haddop" .. it should be "hadoop" (The Jar name is not correct).
Your PATH:
/usr/hdp/current/haddop-mapreduce-client/hadoop-streaming.jar
The path should be
/usr/hdp/current/hadoop-mapreduce-client/hadoop-streaming.jar
.
Created 06-23-2017 12:24 PM
Yes, you are right. Never imagined it would be a typo, thanks though!