Hadoop报错:Failed to locate the winutils binary in the hadoop binary path

悠悠 2021-09-26 02:10 845阅读 0赞

1 发现问题

在虚拟机中搭建了hadoop集群,在windows中通过代码访问报错

  1. 15/06/11 15:35:50 ERROR Shell: Failed to locate the winutils binary in the hadoop binary path
  2. java.io.IOException: Could not locate executable null\bin\winutils.exe in the Hadoop binaries.
  3. at org.apache.hadoop.util.Shell.getQualifiedBinPath(Shell.java:356)
  4. at org.apache.hadoop.util.Shell.getWinUtilsPath(Shell.java:371)
  5. at org.apache.hadoop.util.Shell.<clinit>(Shell.java:364)

2 分析问题
打开源码,查看getQualifiedBinPath方法

  1. public static final String getQualifiedBinPath(String executable)
  2. throws IOException {
  3. // construct hadoop bin path to the specified executable
  4. String fullExeName = HADOOP_HOME_DIR + File.separator + "bin"
  5. + File.separator + executable;
  6. File exeFile = new File(fullExeName);
  7. if (!exeFile.exists()) {
  8. throw new IOException("Could not locate executable " + fullExeName
  9. + " in the Hadoop binaries.");
  10. }
  11. return exeFile.getCanonicalPath();
  12. }
  13. private static String HADOOP_HOME_DIR = checkHadoopHome();
  14. private static String checkHadoopHome() {
  15. // first check the Dflag hadoop.home.dir with JVM scope
  16. String home = System.getProperty("hadoop.home.dir");
  17. // fall back to the system/user-global env variable
  18. if (home == null) {
  19. home = System.getenv("HADOOP_HOME");
  20. }
  21. ...
  22. }

exeFile不存在会报错,也就是fullExeName不存在。即windows中没有配置HADOOP_HOME。

3 解决问题
配置环境变量E:\\Program Files\\hadoop-2.7.0重启电脑。 或者代码中设置System.setProperty(“hadoop.home.dir”, “E:\\Program Files\\hadoop-2.7.0”); 还有一种可能HADOOP_HOME的bin目录下根本没有winutils.exe,下载地址https://github.com/srccodes/hadoop-common-2.2.0-bin

原贴地址:http://www.cnblogs.com/hyl8218/p/5492450.html

发表评论

表情:
评论列表 (有 0 条评论,845人围观)

还没有评论,来说两句吧...

相关阅读