-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[YCQL] Statements doesn't run serially by default in YCQL transaction block #11686
Comments
@adil246 In the latest version the It can be disabled to enable full parallelism but only if the user is sure the workload does not contain conflicting statements within one transaction. |
Closing as duplicate of #5026. |
Jira Link: DB-1216
Description
In order to run operations serially in the YCQL transaction block, the
_ycql_serial_operation_in_transaction_block_
variable has to be set to True, else statements within the block are not able to see changes made by previous. In the below example, when this flag is set to false, the delete statement after insert got lost.Steps to Reproduce the issue
Ref Ticket
2658
The text was updated successfully, but these errors were encountered: