gpt4 book ai didi

hadoop - 驱动程序的MRUnit测试用例

转载 作者:行者123 更新时间:2023-12-02 21:33:59 24 4
gpt4 key购买 nike

我已经用以下代码编写了MRunit:

          Configuration conf = new Configuration();
conf.set("fs.defaultFS", "file:///");
conf.set("fs.default.name", "file:///");
conf.set("mapreduce.framework.name", "local");
conf.setInt("mapreduce.task.io.sort.mb", 1);
Path input = new Path("input/ncdc/micro");
Path output = new Path("output");
FileSystem fs = FileSystem.getLocal(conf);
fs.delete(output, true); // delete old output

VisitedItemFlattenDriver driver = new VisitedItemFlattenDriver();
driver.setConf(conf);

int exitCode = driver.run(new String[] {
input.toString(), output.toString(), "false" });

但是当我从Eclipse执行Junit测试用例时。我收到如下异常:
java.lang.NullPointerException
at java.lang.ProcessBuilder.start(ProcessBuilder.java:441)
at org.apache.hadoop.util.Shell.runCommand(Shell.java:404)
at org.apache.hadoop.util.Shell.run(Shell.java:379)
at org.apache.hadoop.util.Shell$ShellCommandExecutor.execute(Shell.java:589)
at org.apache.hadoop.util.Shell.execCommand(Shell.java:678)
at org.apache.hadoop.util.Shell.execCommand(Shell.java:661)
at org.apache.hadoop.fs.RawLocalFileSystem.setPermission(RawLocalFileSystem.java:639)
at org.apache.hadoop.fs.RawLocalFileSystem.mkdirs(RawLocalFileSystem.java:435)
at org.apache.hadoop.fs.FilterFileSystem.mkdirs(FilterFileSystem.java:277)
at org.apache.hadoop.mapreduce.JobSubmissionFiles.getStagingDir(JobSubmissionFiles.java:125)
at org.apache.hadoop.mapreduce.JobSubmitter.submitJobInternal(JobSubmitter.java:344)
at org.apache.hadoop.mapreduce.Job$10.run(Job.java:1268)
at org.apache.hadoop.mapreduce.Job$10.run(Job.java:1265)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.Subject.doAs(Subject.java:396)
at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1491)
at org.apache.hadoop.mapreduce.Job.submit(Job.java:1265)
at org.apache.hadoop.mapreduce.Job.waitForCompletion(Job.java:1286)
at biz.ds.www.preprocess.visiteditem.VisitedItemFlattenDriver.run(VisitedItemFlattenDriver.java:69)

我不确定是什么原因导致此错误,因为我只是打算对类进行单元测试:
public class VisitedItemFlattenDriver  extends Configured implements Tool {
...}

如果有人指导如何解决错误,我深表感谢。

最佳答案

我尝试了几种方法来解决该问题,并花了很多时间来解决这个问题。

首先,我搜索了一个选项,发现将winutils.exe和.dll文件添加到hadoop / bin中。我尝试了该步骤,还设置了HADOOP_HOME环境变量。

上面提到的错误以某种方式得到解决,然后我陷入了另一个错误,如下所示:

java.lang.UnsatisfiedLinkError: org.apache.hadoop.io.nativeio.NativeIO$Windows.access0(Ljava/lang/String;I)Z

很明显,错误是由于某些兼容性问题引起的。但是随后我进行了一些搜索,发现如果将JRE从32位升级到64位,则可以解决该问题。

之前我使用的是JDK 6 32位,然后将其更新为JDK 6 64位。它没有解决我的问题。我也尝试将minidfscluster用于MR单元,但这给了同样的错误。

但是后来我将JDK 7 64位用于我的代码,问题得以解决,并且成功运行。

**注意:我使用的是Hadoop 2.2.0版

关于hadoop - 驱动程序的MRUnit测试用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33351809/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com