smengcl commented on code in PR #8912: URL: https://github.com/apache/ozone/pull/8912#discussion_r2337411601
########## hadoop-hdds/rocksdb-checkpoint-differ/src/main/java/org/apache/ozone/rocksdb/util/SstFileSetReader.java: ########## @@ -233,70 +236,149 @@ public String next() { } } - private abstract static class MultipleSstFileIterator<T> implements ClosableIterator<T> { + /** + * A wrapper class that holds an iterator and its current value for heap operations. + */ + private static class HeapEntryWithFileIdx<T extends Comparable<T>> + implements Comparable<HeapEntryWithFileIdx<T>> { + private final ClosableIterator<T> iterator; + private T currentKey; + // To ensure stable ordering for identical keys + private final int fileIndex; Review Comment: @swamirishi i originally was thinking this minheap reader could be used for iterating original DB ssts as well thus the fileIndex. Ok, if we are not going to use it for that we can safely remove this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org For additional commands, e-mail: issues-h...@ozone.apache.org