Hello,

The documentation on atomic batches says:

"For example, there is no batch isolation. Clients are able to read the
first updated rows from the batch, while other rows are still being updated
on the server."

However does a write-write conflict scenario arise when I'm updating a
column in two different tables as part of a batch?

Reference: https://en.wikipedia.org/wiki/Write%E2%80%93write_conflict

For example:

Batch 1: Table1.column = x, Table2.column = x

Batch 2: Table1.column = y, Table2.column = y

Result (write-write conflict case): Table1.column = x, Table2.column = y

Thanks!

Reply via email to