Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,8 @@ else if (OptOutUtils.isPartitionFile(f))
if (tsOld != Instant.EPOCH && tsNew != Instant.EPOCH && !tsOld.isBefore(tsNew)) {
final String errorMsg = "Last partition timestamp of indexed files " + tsOld.getEpochSecond()
+ " is after last partition of non-indexed files " + tsNew.getEpochSecond();
LOGGER.error(errorMsg);
throw new IllegalStateException(errorMsg);
// Leaving this as a warning until issue is fixed permanently
LOGGER.warn(errorMsg);
}
// if there are new partitions in this update, let index delete some in-mem delta caches that is old
if (tsNew != Instant.EPOCH) {
Expand Down