HDFS-7579. Improve log reporting during block report rpc failure. Contributed by Charles Lamb.

This commit is contained in:
cnauroth 2015-01-08 15:12:56 -08:00
parent cc2a745f7e
commit 7e2d9a3242
3 changed files with 57 additions and 30 deletions

View File

@ -656,6 +656,9 @@ Release 2.7.0 - UNRELEASED
HDFS-7589. Break the dependency between libnative_mini_dfs and libhdfs. HDFS-7589. Break the dependency between libnative_mini_dfs and libhdfs.
(Zhanwei Wang via cnauroth) (Zhanwei Wang via cnauroth)
HDFS-7579. Improve log reporting during block report rpc failure.
(Charles Lamb via cnauroth)
Release 2.6.1 - UNRELEASED Release 2.6.1 - UNRELEASED
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES

View File

@ -22,7 +22,10 @@ import static org.apache.hadoop.util.Time.now;
import java.io.IOException; import java.io.IOException;
import java.net.InetSocketAddress; import java.net.InetSocketAddress;
import java.net.SocketTimeoutException; import java.net.SocketTimeoutException;
import java.util.*; import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import com.google.common.base.Joiner; import com.google.common.base.Joiner;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
@ -458,7 +461,7 @@ class BPServiceActor implements Runnable {
return null; return null;
} }
ArrayList<DatanodeCommand> cmds = new ArrayList<DatanodeCommand>(); final ArrayList<DatanodeCommand> cmds = new ArrayList<DatanodeCommand>();
// Flush any block information that precedes the block report. Otherwise // Flush any block information that precedes the block report. Otherwise
// we have a chance that we will miss the delHint information // we have a chance that we will miss the delHint information
@ -485,40 +488,54 @@ class BPServiceActor implements Runnable {
} }
// Send the reports to the NN. // Send the reports to the NN.
int numReportsSent; int numReportsSent = 0;
int numRPCs = 0;
boolean success = false;
long brSendStartTime = now(); long brSendStartTime = now();
if (totalBlockCount < dnConf.blockReportSplitThreshold) { try {
// Below split threshold, send all reports in a single message. if (totalBlockCount < dnConf.blockReportSplitThreshold) {
numReportsSent = 1; // Below split threshold, send all reports in a single message.
DatanodeCommand cmd =
bpNamenode.blockReport(bpRegistration, bpos.getBlockPoolId(), reports);
if (cmd != null) {
cmds.add(cmd);
}
} else {
// Send one block report per message.
numReportsSent = i;
for (StorageBlockReport report : reports) {
StorageBlockReport singleReport[] = { report };
DatanodeCommand cmd = bpNamenode.blockReport( DatanodeCommand cmd = bpNamenode.blockReport(
bpRegistration, bpos.getBlockPoolId(), singleReport); bpRegistration, bpos.getBlockPoolId(), reports);
numRPCs = 1;
numReportsSent = reports.length;
if (cmd != null) { if (cmd != null) {
cmds.add(cmd); cmds.add(cmd);
} }
} else {
// Send one block report per message.
for (StorageBlockReport report : reports) {
StorageBlockReport singleReport[] = { report };
DatanodeCommand cmd = bpNamenode.blockReport(
bpRegistration, bpos.getBlockPoolId(), singleReport);
numReportsSent++;
numRPCs++;
if (cmd != null) {
cmds.add(cmd);
}
}
} }
success = true;
} finally {
// Log the block report processing stats from Datanode perspective
long brSendCost = now() - brSendStartTime;
long brCreateCost = brSendStartTime - brCreateStartTime;
dn.getMetrics().addBlockReport(brSendCost);
final int nCmds = cmds.size();
LOG.info((success ? "S" : "Uns") +
"uccessfully sent " + numReportsSent +
" of " + reports.length +
" blockreports for " + totalBlockCount +
" total blocks using " + numRPCs +
" RPCs. This took " + brCreateCost +
" msec to generate and " + brSendCost +
" msecs for RPC and NN processing." +
" Got back " +
((nCmds == 0) ? "no commands" :
((nCmds == 1) ? "one command: " + cmds.get(0) :
(nCmds + " commands: " + Joiner.on("; ").join(cmds)))) +
".");
} }
// Log the block report processing stats from Datanode perspective
long brSendCost = now() - brSendStartTime;
long brCreateCost = brSendStartTime - brCreateStartTime;
dn.getMetrics().addBlockReport(brSendCost);
LOG.info("Sent " + numReportsSent + " blockreports " + totalBlockCount +
" blocks total. Took " + brCreateCost +
" msec to generate and " + brSendCost +
" msecs for RPC and NN processing. " +
" Got back commands " +
(cmds.size() == 0 ? "none" : Joiner.on("; ").join(cmds)));
scheduleNextBlockReport(startTime); scheduleNextBlockReport(startTime);
return cmds.size() == 0 ? null : cmds; return cmds.size() == 0 ? null : cmds;
} }
@ -968,7 +985,6 @@ class BPServiceActor implements Runnable {
/** /**
* Add pending incremental block report for a single block. * Add pending incremental block report for a single block.
* @param blockID
* @param blockInfo * @param blockInfo
*/ */
void putBlockInfo(ReceivedDeletedBlockInfo blockInfo) { void putBlockInfo(ReceivedDeletedBlockInfo blockInfo) {

View File

@ -52,4 +52,12 @@ public abstract class ServerCommand {
public int getAction() { public int getAction() {
return this.action; return this.action;
} }
public String toString() {
final StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append("/");
sb.append(action);
return sb.toString();
}
} }