use of com.ctriposs.sdb.table.InMemIndex in project sessdb by ppdai.
the class Level0Merger method mergeSort.
public static void mergeSort(LevelQueue source, LevelQueue target, int ways, String dir, short shard) throws IOException, ClassNotFoundException {
List<HashMapTable> tables = new ArrayList<HashMapTable>(ways);
source.getReadLock().lock();
try {
Iterator<AbstractMapTable> iter = source.descendingIterator();
for (int i = 0; i < ways; i++) {
tables.add((HashMapTable) iter.next());
}
} finally {
source.getReadLock().unlock();
}
int expectedInsertions = 0;
for (HashMapTable table : tables) {
expectedInsertions += table.getRealSize();
}
// target table
MMFMapTable sortedMapTable = new MMFMapTable(dir, shard, SDB.LEVEL1, System.nanoTime(), expectedInsertions, ways);
PriorityQueue<QueueElement> pq = new PriorityQueue<QueueElement>();
// build initial heap
for (HashMapTable table : tables) {
QueueElement qe = new QueueElement();
final HashMapTable hmTable = table;
qe.hashMapTable = hmTable;
List<Map.Entry<ByteArrayWrapper, InMemIndex>> list = new ArrayList<Map.Entry<ByteArrayWrapper, InMemIndex>>(qe.hashMapTable.getEntrySet());
Collections.sort(list, new Comparator<Map.Entry<ByteArrayWrapper, InMemIndex>>() {
@Override
public int compare(Entry<ByteArrayWrapper, InMemIndex> o1, Entry<ByteArrayWrapper, InMemIndex> o2) {
IMapEntry mapEntry1 = hmTable.getMapEntry(o1.getValue().getIndex());
IMapEntry mapEntry2 = hmTable.getMapEntry(o2.getValue().getIndex());
try {
int hash1 = mapEntry1.getKeyHash();
int hash2 = mapEntry2.getKeyHash();
if (hash1 < hash2)
return -1;
else if (hash1 > hash2)
return 1;
else {
return o1.getKey().compareTo(o2.getKey());
}
} catch (IOException e) {
throw new RuntimeException("Fail to get hash code in map entry", e);
}
}
});
qe.iterator = list.iterator();
if (qe.iterator.hasNext()) {
Map.Entry<ByteArrayWrapper, InMemIndex> me = qe.iterator.next();
qe.key = me.getKey().getData();
qe.inMemIndex = me.getValue();
IMapEntry mapEntry = table.getMapEntry(qe.inMemIndex.getIndex());
qe.keyHash = mapEntry.getKeyHash();
pq.add(qe);
}
}
// merge sort
while (pq.size() > 0) {
QueueElement qe1 = pq.poll();
// remove old/stale entries
while (pq.peek() != null && qe1.keyHash == pq.peek().keyHash && BytesUtil.compare(qe1.key, pq.peek().key) == 0) {
QueueElement qe2 = pq.poll();
if (qe2.iterator.hasNext()) {
Map.Entry<ByteArrayWrapper, InMemIndex> me = qe2.iterator.next();
qe2.key = me.getKey().getData();
qe2.inMemIndex = me.getValue();
IMapEntry mapEntry = qe2.hashMapTable.getMapEntry(qe2.inMemIndex.getIndex());
qe2.keyHash = mapEntry.getKeyHash();
pq.add(qe2);
}
}
IMapEntry mapEntry = qe1.hashMapTable.getMapEntry(qe1.inMemIndex.getIndex());
byte[] value = mapEntry.getValue();
// disk space optimization
if (mapEntry.isDeleted() || mapEntry.isExpired()) {
value = new byte[] { 0 };
}
sortedMapTable.appendNew(mapEntry.getKey(), mapEntry.getKeyHash(), value, mapEntry.getTimeToLive(), mapEntry.getCreatedTime(), mapEntry.isDeleted(), mapEntry.isCompressed());
if (qe1.iterator.hasNext()) {
Map.Entry<ByteArrayWrapper, InMemIndex> me = qe1.iterator.next();
qe1.key = me.getKey().getData();
qe1.inMemIndex = me.getValue();
IMapEntry mEntry = qe1.hashMapTable.getMapEntry(qe1.inMemIndex.getIndex());
qe1.keyHash = mEntry.getKeyHash();
pq.add(qe1);
}
}
// persist metadata
sortedMapTable.reMap();
sortedMapTable.saveMetadata();
// dump to level 1
source.getWriteLock().lock();
target.getWriteLock().lock();
try {
for (int i = 0; i < ways; i++) {
source.removeLast();
}
for (HashMapTable table : tables) {
table.markUsable(false);
}
sortedMapTable.markUsable(true);
target.addFirst(sortedMapTable);
} finally {
target.getWriteLock().unlock();
source.getWriteLock().unlock();
}
for (HashMapTable table : tables) {
table.close();
table.delete();
}
}
Aggregations