|
@@ -168,6 +168,7 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
|
|
|
protected final String baseDir;
|
|
|
protected short replication;
|
|
|
+ protected int blockSize;
|
|
|
protected int numThreads = 0; // number of threads
|
|
|
protected int numOpsRequired = 0; // number of operations requested
|
|
|
protected int numOpsExecuted = 0; // number of operations executed
|
|
@@ -229,6 +230,7 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
OperationStatsBase() {
|
|
|
baseDir = BASE_DIR_NAME + "/" + getOpName();
|
|
|
replication = (short) config.getInt(DFSConfigKeys.DFS_REPLICATION_KEY, 3);
|
|
|
+ blockSize = config.getInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, BLOCK_SIZE);
|
|
|
numOpsRequired = 10;
|
|
|
numThreads = 3;
|
|
|
logLevel = Level.ERROR;
|
|
@@ -516,7 +518,8 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
// Operation types
|
|
|
static final String OP_CREATE_NAME = "create";
|
|
|
static final String OP_CREATE_USAGE =
|
|
|
- "-op create [-threads T] [-files N] [-filesPerDir P] [-close]";
|
|
|
+ "-op create [-threads T] [-files N] [-blockSize S] [-filesPerDir P]"
|
|
|
+ + " [-close]";
|
|
|
|
|
|
protected FileNameGenerator nameGenerator;
|
|
|
protected String[][] fileNames;
|
|
@@ -541,6 +544,9 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
if(args.get(i).equals("-files")) {
|
|
|
if(i+1 == args.size()) printUsage();
|
|
|
numOpsRequired = Integer.parseInt(args.get(++i));
|
|
|
+ } else if (args.get(i).equals("-blockSize")) {
|
|
|
+ if(i+1 == args.size()) printUsage();
|
|
|
+ blockSize = Integer.parseInt(args.get(++i));
|
|
|
} else if(args.get(i).equals("-threads")) {
|
|
|
if(i+1 == args.size()) printUsage();
|
|
|
numThreads = Integer.parseInt(args.get(++i));
|
|
@@ -596,7 +602,7 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
clientProto.create(fileNames[daemonId][inputIdx], FsPermission.getDefault(),
|
|
|
clientName, new EnumSetWritable<CreateFlag>(EnumSet
|
|
|
.of(CreateFlag.CREATE, CreateFlag.OVERWRITE)), true,
|
|
|
- replication, BLOCK_SIZE, CryptoProtocolVersion.supported());
|
|
|
+ replication, blockSize, CryptoProtocolVersion.supported());
|
|
|
long end = Time.now();
|
|
|
for(boolean written = !closeUponCreate; !written;
|
|
|
written = clientProto.complete(fileNames[daemonId][inputIdx],
|
|
@@ -716,7 +722,8 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
// Operation types
|
|
|
static final String OP_OPEN_NAME = "open";
|
|
|
static final String OP_USAGE_ARGS =
|
|
|
- " [-threads T] [-files N] [-filesPerDir P] [-useExisting]";
|
|
|
+ " [-threads T] [-files N] [-blockSize S] [-filesPerDir P]"
|
|
|
+ + " [-useExisting]";
|
|
|
static final String OP_OPEN_USAGE =
|
|
|
"-op " + OP_OPEN_NAME + OP_USAGE_ARGS;
|
|
|
|
|
@@ -748,6 +755,7 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
"-op", "create",
|
|
|
"-threads", String.valueOf(this.numThreads),
|
|
|
"-files", String.valueOf(numOpsRequired),
|
|
|
+ "-blockSize", String.valueOf(blockSize),
|
|
|
"-filesPerDir",
|
|
|
String.valueOf(nameGenerator.getFilesPerDirectory()),
|
|
|
"-close"};
|
|
@@ -778,7 +786,8 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
long executeOp(int daemonId, int inputIdx, String ignore)
|
|
|
throws IOException {
|
|
|
long start = Time.now();
|
|
|
- clientProto.getBlockLocations(fileNames[daemonId][inputIdx], 0L, BLOCK_SIZE);
|
|
|
+ clientProto.getBlockLocations(fileNames[daemonId][inputIdx], 0L,
|
|
|
+ blockSize);
|
|
|
long end = Time.now();
|
|
|
return end-start;
|
|
|
}
|
|
@@ -1068,7 +1077,7 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
static final String OP_BLOCK_REPORT_NAME = "blockReport";
|
|
|
static final String OP_BLOCK_REPORT_USAGE =
|
|
|
"-op blockReport [-datanodes T] [-reports N] " +
|
|
|
- "[-blocksPerReport B] [-blocksPerFile F]";
|
|
|
+ "[-blocksPerReport B] [-blocksPerFile F] [-blockSize S]";
|
|
|
|
|
|
private int blocksPerReport;
|
|
|
private int blocksPerFile;
|
|
@@ -1115,6 +1124,9 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
} else if(args.get(i).equals("-blocksPerFile")) {
|
|
|
if(i+1 == args.size()) printUsage();
|
|
|
blocksPerFile = Integer.parseInt(args.get(++i));
|
|
|
+ } else if (args.get(i).equals("-blockSize")) {
|
|
|
+ if(i+1 == args.size()) printUsage();
|
|
|
+ blockSize = Integer.parseInt(args.get(++i));
|
|
|
} else if(!ignoreUnrelatedOptions)
|
|
|
printUsage();
|
|
|
}
|
|
@@ -1145,7 +1157,7 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
String fileName = nameGenerator.getNextFileName("ThroughputBench");
|
|
|
clientProto.create(fileName, FsPermission.getDefault(), clientName,
|
|
|
new EnumSetWritable<CreateFlag>(EnumSet.of(CreateFlag.CREATE, CreateFlag.OVERWRITE)), true, replication,
|
|
|
- BLOCK_SIZE, CryptoProtocolVersion.supported());
|
|
|
+ blockSize, CryptoProtocolVersion.supported());
|
|
|
ExtendedBlock lastBlock = addBlocks(fileName, clientName);
|
|
|
clientProto.complete(fileName, clientName, lastBlock, HdfsConstants.GRANDFATHER_INODE_ID);
|
|
|
}
|
|
@@ -1256,8 +1268,9 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
class ReplicationStats extends OperationStatsBase {
|
|
|
static final String OP_REPLICATION_NAME = "replication";
|
|
|
static final String OP_REPLICATION_USAGE =
|
|
|
- "-op replication [-datanodes T] [-nodesToDecommission D] " +
|
|
|
- "[-nodeReplicationLimit C] [-totalBlocks B] [-replication R]";
|
|
|
+ "-op replication [-datanodes T] [-nodesToDecommission D] " +
|
|
|
+ "[-nodeReplicationLimit C] [-totalBlocks B] [-blockSize S] "
|
|
|
+ + "[-replication R]";
|
|
|
|
|
|
private final BlockReportStats blockReportObject;
|
|
|
private int numDatanodes;
|
|
@@ -1282,10 +1295,11 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
/ (numDatanodes*numDatanodes);
|
|
|
|
|
|
String[] blkReportArgs = {
|
|
|
- "-op", "blockReport",
|
|
|
- "-datanodes", String.valueOf(numDatanodes),
|
|
|
- "-blocksPerReport", String.valueOf(totalBlocks*replication/numDatanodes),
|
|
|
- "-blocksPerFile", String.valueOf(numDatanodes)};
|
|
|
+ "-op", "blockReport",
|
|
|
+ "-datanodes", String.valueOf(numDatanodes),
|
|
|
+ "-blocksPerReport", String.valueOf(totalBlocks*replication/numDatanodes),
|
|
|
+ "-blocksPerFile", String.valueOf(numDatanodes),
|
|
|
+ "-blockSize", String.valueOf(blockSize)};
|
|
|
blockReportObject = new BlockReportStats(Arrays.asList(blkReportArgs));
|
|
|
numDecommissionedBlocks = 0;
|
|
|
numPendingBlocks = 0;
|
|
@@ -1315,6 +1329,9 @@ public class NNThroughputBenchmark implements Tool {
|
|
|
} else if(args.get(i).equals("-replication")) {
|
|
|
if(i+1 == args.size()) printUsage();
|
|
|
replication = Short.parseShort(args.get(++i));
|
|
|
+ } else if (args.get(i).equals("-blockSize")) {
|
|
|
+ if(i+1 == args.size()) printUsage();
|
|
|
+ blockSize = Integer.parseInt(args.get(++i));
|
|
|
} else if(!ignoreUnrelatedOptions)
|
|
|
printUsage();
|
|
|
}
|