In BigTable’s data writing example, “Conditionally write a value” support to do some predefined operation, like increase. This can avoid data be override by distributed writing operations
Is it doable to use Read-update-write style to load the original value with version in bigtable, update the value in client side, write the updated value back with read version check to make sure the write operation will not override value that written after its read?