如果我要运行基准测试Hadoop TestDFSIO应用程序,文件或文档存储在哪里?特别是Hadoop 2.7.2 并将文件保存在本地或HDFS目录中吗?
答案 0 :(得分:0)
基于源代码TestDFSIO.java,HDFS数据存储在:
private static String getBaseDir(Configuration conf) {
return conf.get("test.build.data","/benchmarks/TestDFSIO");
}
然后将本地结果存储在TestDFSIO_results.log
中。
有关更多信息,请参见Benchmarking and Stress Testing an Hadoop Cluster with TeraSort, TestDFSIO & Co.。