tsreaper opened a new pull request, #356: URL: https://github.com/apache/flink-table-store/pull/356
Current constructor of `Levels` class contains the following code: ```java this.level0 = new TreeSet<>(Comparator.comparing(DataFileMeta::maxSequenceNumber).reversed()); ``` However when two or more jobs writing the same bucket, they may produce files containing the same sequence number. If two files have the same `maxSequenceNumber`, one of them will be mistakenly ignored by `TreeSet`. -- 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]
