HBASE-22392. Remove extra/useless +
Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com>
This commit is contained in:
parent
df27820958
commit
b8365e5110
|
@ -2711,7 +2711,7 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
|
|||
}
|
||||
}
|
||||
MemStoreSize mss = this.memStoreSizing.getMemStoreSize();
|
||||
LOG.info("Flushing " + + storesToFlush.size() + "/" + stores.size() + " column families," +
|
||||
LOG.info("Flushing " + storesToFlush.size() + "/" + stores.size() + " column families," +
|
||||
" dataSize=" + StringUtils.byteDesc(mss.getDataSize()) +
|
||||
" heapSize=" + StringUtils.byteDesc(mss.getHeapSize()) +
|
||||
((perCfExtras != null && perCfExtras.length() > 0)? perCfExtras.toString(): "") +
|
||||
|
|
|
@ -2401,7 +2401,7 @@ public class HStore implements Store, HeapSize, StoreConfigInformation, Propagat
|
|||
if (LOG.isInfoEnabled()) {
|
||||
LOG.info("Region: " + HStore.this.getRegionInfo().getEncodedName() +
|
||||
" added " + storeFile + ", entries=" + storeFile.getReader().getEntries() +
|
||||
", sequenceid=" + +storeFile.getReader().getSequenceID() + ", filesize="
|
||||
", sequenceid=" + storeFile.getReader().getSequenceID() + ", filesize="
|
||||
+ TraditionalBinaryPrefix.long2String(storeFile.getReader().length(), "", 1));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -405,7 +405,7 @@ public class LoadIncrementalHFiles extends Configured implements Tool {
|
|||
// need to reload split keys each iteration.
|
||||
final Pair<byte[][], byte[][]> startEndKeys = regionLocator.getStartEndKeys();
|
||||
if (count != 0) {
|
||||
LOG.info("Split occurred while grouping HFiles, retry attempt " + +count + " with " +
|
||||
LOG.info("Split occurred while grouping HFiles, retry attempt " + count + " with " +
|
||||
queue.size() + " files remaining to group or split");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue