Hello,
I have some concurrent writes to the same partition and they overlap in data files, and the isolation level is snapshot. Expectedly, I get this ValidationException thrown from this line<https://sourcegraph.com/github.com/linkedin/iceberg@78a31ff699dd019ed760ef70c8cbf8acbd74bed6/-/blob/core/src/main/java/org/apache/iceberg/MergingSnapshotProducer.java?L266-271>. I can certainly retry the write from the beginning, rewrite the metadata and data files and commit again, but wonder if there is something internal in Iceberg that can help me with that instead. Thank you! Best, Ha