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