我已经为我的mapreduce工作编写了一个jmh基准测试。如果我在本地模式下运行我的应用程序,它可以工作,但是当我在hadoop集群上使用yarn脚本运行它时,会出现以下错误:
[cloudera@quickstart Desktop]$ ./launch_mapreduce.sh
# JMH 1.10 (released 5 days ago)
# VM invoker: /usr/java/jdk1.7.0_67-cloudera/jre/bin/java
# VM options: -Dproc_jar -Xmx1000m -Xms825955249 -Xmx825955249 -Djava.net.preferIPv4Stack=true -Dhadoop.log.dir=/usr/lib/hadoop-yarn/logs -Dyarn.log.dir=/usr/lib/hadoop-yarn/logs -Dhadoop.log.file=yarn.log -Dyarn.log.file=yarn.log -Dyarn.home.dir=/usr/lib/hadoop-yarn -Dhadoop.home.dir=/usr/lib/hadoop-yarn -Dhadoop.root.logger=INFO,console -Dyarn.root.logger=INFO,console -Djava.library.path=/usr/lib/hadoop/lib/native
# Warmup: 5 iterations, 1 s each
# Measurement: 5 iterations, 1 s each
# Timeout: 10 min per iteration
# Threads: 1 thread, will synchronize iterations
# Benchmark mode: Throughput, ops/time
# Benchmark: mgm.tp.bigdata.ma_mapreduce.MapReduceBenchmark.test
# Run progress: 0.00% complete, ETA 00:00:10
# Fork: 1 of 1
Error: Could not find or load main class org.openjdk.jmh.runner.ForkedMain
<forked VM failed with exit code 1>
<stdout last='20 lines'>
</stdout>
<stderr last='20 lines'>
Error: Could not find or load main class org.openjdk.jmh.runner.ForkedMain
</stderr>
# Run complete. Total time: 00:00:00
Benchmark Mode Cnt Score Error Units
我的shell脚本如下:
/usr/bin/yarn jar ma-mapreduce-benchmark.jar
我的基准选项是:
public static void main(String[] args) throws Exception {
Options opt = new OptionsBuilder()
.include(MapReduceBenchmark.class.getSimpleName())
.warmupIterations(5)
.measurementIterations(5)
.forks(1)
.build();
new Runner(opt).run();
}
1条答案
按热度按时间f87krz0w1#
在我看来,jhm不适合hadoop集群,因为在集群的每个节点上,基准都希望启动一个自己的jvm。如果不起作用,则节点为并行化进行通信。首先我测量程序执行的时间,然后重复这个步骤,最后我计算容错性。