Ted Yu created HBASE-8650:
-----------------------------
Summary:
HRegionServer#updateRecoveringRegionLastFlushedSequenceId(HRegion) makes
inefficient use of keySet iterator instead of entrySet iterator
Key: HBASE-8650
URL: https://issues.apache.org/jira/browse/HBASE-8650
Project: HBase
Issue Type: Bug
Reporter: Ted Yu
Priority: Minor
{code}
for (byte[] columnFamily : maxSeqIdInStores.keySet()) {
Long storeSeqIdForReplay = maxSeqIdInStores.get(columnFamily);
{code}
maxSeqIdInStores.entrySet() should have been used.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira