HDFS-10485. Fix findbugs warning in FSEditLog.java. (aajisaka)

This commit is contained in:
Akira Ajisaka 2016-06-07 17:52:03 +09:00
parent bddea5fe5f
commit e620530301

View File

@ -27,6 +27,7 @@
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.atomic.AtomicLong;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
@ -174,7 +175,7 @@ private enum State {
// these are statistics counters.
private long numTransactions; // number of transactions
private long numTransactionsBatchedInSync;
private final AtomicLong numTransactionsBatchedInSync = new AtomicLong();
private long totalTimeTransactions; // total time for all transactions
private NameNodeMetrics metrics;
@ -672,7 +673,7 @@ protected void logSync(long mytxid) {
if (metrics != null) { // Metrics non-null only when used inside name node
metrics.addSync(elapsed);
metrics.incrTransactionsBatchedInSync(editsBatchedInSync);
numTransactionsBatchedInSync += editsBatchedInSync;
numTransactionsBatchedInSync.addAndGet(editsBatchedInSync);
}
} finally {
@ -712,7 +713,7 @@ private void printStatistics(boolean force) {
buf.append(" Total time for transactions(ms): ");
buf.append(totalTimeTransactions);
buf.append(" Number of transactions batched in Syncs: ");
buf.append(numTransactionsBatchedInSync);
buf.append(numTransactionsBatchedInSync.get());
buf.append(" Number of syncs: ");
buf.append(editLogStream.getNumSync());
buf.append(" SyncTimes(ms): ");
@ -1281,7 +1282,9 @@ private void startLogSegment(final long segmentTxId, int layoutVersion)
"Cannot start log segment at txid %s when next expected " +
"txid is %s", segmentTxId, txid + 1);
numTransactions = totalTimeTransactions = numTransactionsBatchedInSync = 0;
numTransactions = 0;
totalTimeTransactions = 0;
numTransactionsBatchedInSync.set(0L);
// TODO no need to link this back to storage anymore!
// See HDFS-2174.