HDFS-4444. Mrege 1439559 from trunk.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1439562 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a20446beb
commit
e6d3fceb09
|
@ -431,6 +431,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
HDFS-4359. Slow RPC responses from NN can prevent metrics collection on
|
||||
DNs. (liang xie via atm)
|
||||
|
||||
HDFS-4444. Add space between total transaction time and number of
|
||||
transactions in FSEditLog#printStatistics. (Stephen Chu via suresh)
|
||||
|
||||
BREAKDOWN OF HDFS-3077 SUBTASKS
|
||||
|
||||
HDFS-3077. Quorum-based protocol for reading and writing edit logs.
|
||||
|
|
|
@ -621,7 +621,7 @@ public class FSEditLog implements LogsPurgeable {
|
|||
buf.append(numTransactions);
|
||||
buf.append(" Total time for transactions(ms): ");
|
||||
buf.append(totalTimeTransactions);
|
||||
buf.append("Number of transactions batched in Syncs: ");
|
||||
buf.append(" Number of transactions batched in Syncs: ");
|
||||
buf.append(numTransactionsBatchedInSync);
|
||||
buf.append(" Number of syncs: ");
|
||||
buf.append(editLogStream.getNumSync());
|
||||
|
|
Loading…
Reference in New Issue