Running Hadoop MR jobs without Admin privilege on Windows

好久不见. 提交于 2019-12-04 18:02:51

You can change the location of tmp directory location for hadoop using the below property

<property>
   <name>hadoop.tmp.dir</name>
   <value>/other/tmp</value>
</property>

Your default tmp location is c:\tmp which requires admin privilege to access. Change the location into any sub directory and try MR job without admin privilege.

Hope it helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!