Biman54 commented on issue #13091:
URL: https://github.com/apache/iceberg/issues/13091#issuecomment-3015234552
Currently, Iceberg does not support limiting conflict detection to a
specific partition or row filter during serializable isolation. However If your
workload would benefit from more relaxed isolation for performance reasons, you
can opt into snapshot isolation, which does not perform strict conflict checks
for added files that don’t match the operation’s filter.
You can configure the isolation level per operation using these table
properties:
```
tbl_properties = {
'write.delete.isolation-level' = 'snapshot',
'write.update.isolation-level' = 'snapshot',
'write.merge.isolation-level' = 'snapshot'
}
```
Setting the isolation level to snapshot can reduce validation scope, but at
the cost of weaker conflict guarantees.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]