Hi all, I am seeing the error below.
java.lang.IllegalArgumentException: [BUG] Expected sorted snapshot log entries.
at org.apache.iceberg.relocated.com.google.common.base.Preconditions.checkArgument(Preconditions.java:142)
at org.apache.iceberg.TableMetadata.<init>(TableMetadata.java:306)
at org.apache.iceberg.TableMetadata$Builder.build(TableMetadata.java:1040)
Does it mean we shouldn’t write the new snapshot too frequent (within a minute)? I wonder should an improvement be added to the writer side to prevent such error happen? https://github.com/apache/iceberg/blob/master/core/src/main/java/org/apache/iceberg/TableMetadata.java#L310
The check is introduced from #1110 #1109