HDFS-16389.Improve NNThroughputBenchmark test mkdirs. (#3819)

Reviewed-by: Viraj Jasani <vjasani@apache.org>
Reviewed-by: Akira Ajisaka <aajisaka@apache.org>
Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
This commit is contained in:
jianghuazhu 2022-04-18 11:21:51 +08:00 committed by GitHub
parent 35d4c02bcc
commit 900682e712
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 12 deletions

View File

@ -77,6 +77,10 @@ synchronized String getNextFileName(String fileNamePrefix) {
return fn; return fn;
} }
public long getFileCount() {
return fileCount;
}
private synchronized void reset() { private synchronized void reset() {
Arrays.fill(pathIndecies, -1); Arrays.fill(pathIndecies, -1);
fileCount = 0L; fileCount = 0L;

View File

@ -569,14 +569,22 @@ void generateInputs(int[] opsPerThread) throws IOException {
// int generatedFileIdx = 0; // int generatedFileIdx = 0;
LOG.info("Generate " + numOpsRequired + " intputs for " + getOpName()); LOG.info("Generate " + numOpsRequired + " intputs for " + getOpName());
fileNames = new String[numThreads][]; fileNames = new String[numThreads][];
try {
for(int idx=0; idx < numThreads; idx++) { for(int idx=0; idx < numThreads; idx++) {
int threadOps = opsPerThread[idx]; int threadOps = opsPerThread[idx];
fileNames[idx] = new String[threadOps]; fileNames[idx] = new String[threadOps];
for(int jdx=0; jdx < threadOps; jdx++) for(int jdx=0; jdx < threadOps; jdx++) {
fileNames[idx][jdx] = nameGenerator. fileNames[idx][jdx] = nameGenerator.
getNextFileName("ThroughputBench"); getNextFileName("ThroughputBench");
} }
} }
} catch (ArrayIndexOutOfBoundsException e) {
LOG.error("The current environment allows {} files to be created. " +
"If you want to test more files, please update the -filesPerDir parameter.",
nameGenerator.getFileCount());
throw e;
}
}
/** /**
* returns client name * returns client name
@ -669,14 +677,22 @@ void generateInputs(int[] opsPerThread) throws IOException {
false); false);
LOG.info("Generate " + numOpsRequired + " inputs for " + getOpName()); LOG.info("Generate " + numOpsRequired + " inputs for " + getOpName());
dirPaths = new String[numThreads][]; dirPaths = new String[numThreads][];
try {
for(int idx=0; idx < numThreads; idx++) { for(int idx=0; idx < numThreads; idx++) {
int threadOps = opsPerThread[idx]; int threadOps = opsPerThread[idx];
dirPaths[idx] = new String[threadOps]; dirPaths[idx] = new String[threadOps];
for(int jdx=0; jdx < threadOps; jdx++) for(int jdx=0; jdx < threadOps; jdx++) {
dirPaths[idx][jdx] = nameGenerator. dirPaths[idx][jdx] = nameGenerator.
getNextFileName("ThroughputBench"); getNextFileName("ThroughputBench");
} }
} }
} catch (ArrayIndexOutOfBoundsException e) {
LOG.error("The current environment allows {} directories to be created. " +
"If you want to test more directories, please update the -dirsPerDir parameter.",
nameGenerator.getFileCount());
throw e;
}
}
/** /**
* returns client name * returns client name