HDFS-16301. Improve BenchmarkThroughput#SIZE naming standardization. (#3622)

(cherry picked from commit b307f18a58)
This commit is contained in:
jianghuazhu 2021-11-10 10:32:52 +08:00 committed by Takanobu Asanuma
parent e392ce7a73
commit 46e69715b5
1 changed files with 5 additions and 5 deletions

View File

@ -187,7 +187,7 @@ public class BenchmarkThroughput extends Configured implements Tool {
}
Configuration conf = getConf();
// the size of the file to write
long SIZE = conf.getLong("dfsthroughput.file.size",
long fileSize = conf.getLong("dfsthroughput.file.size",
10L * 1024 * 1024 * 1024);
BUFFER_SIZE = conf.getInt("dfsthroughput.buffer.size", 4 * 1024);
@ -203,9 +203,9 @@ public class BenchmarkThroughput extends Configured implements Tool {
ChecksumFileSystem checkedLocal = FileSystem.getLocal(conf);
FileSystem rawLocal = checkedLocal.getRawFileSystem();
for(int i=0; i < reps; ++i) {
writeAndReadLocalFile("local", conf, SIZE);
writeAndReadFile(rawLocal, "raw", conf, SIZE);
writeAndReadFile(checkedLocal, "checked", conf, SIZE);
writeAndReadLocalFile("local", conf, fileSize);
writeAndReadFile(rawLocal, "raw", conf, fileSize);
writeAndReadFile(checkedLocal, "checked", conf, fileSize);
}
MiniDFSCluster cluster = null;
try {
@ -214,7 +214,7 @@ public class BenchmarkThroughput extends Configured implements Tool {
cluster.waitActive();
FileSystem dfs = cluster.getFileSystem();
for(int i=0; i < reps; ++i) {
writeAndReadFile(dfs, "dfs", conf, SIZE);
writeAndReadFile(dfs, "dfs", conf, fileSize);
}
} finally {
if (cluster != null) {