michaeljmarshall commented on code in PR #3390:
URL: https://github.com/apache/bookkeeper/pull/3390#discussion_r915201672
##########
bookkeeper-server/src/main/java/org/apache/bookkeeper/bookie/GarbageCollectorThread.java:
##########
@@ -547,6 +549,9 @@ void doCompactEntryLogs(double threshold, long
maxTimeMillis) throws EntryLogMet
MutableLong end = new MutableLong(start);
MutableLong timeDiff = new MutableLong(0);
+ PriorityQueue<EntryLogMetadata> pq = new PriorityQueue<>(Comparator
Review Comment:
Is it likely to hit a case where there are so many entry logs that we're not
able to build this map in time?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]