-
Type: Task
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: Testing Infrastructure
-
None
-
Fully Compatible
-
Execution Team 2020-01-27
-
29
concurrency_replication_multi_stmt_txn will retry transactions that fail with retriable errors, including NoSuchTransaction. Any workload, such as create_database.js, that expects errors that cannot be blindly retried upon, can time out inside concurrency_replication_multi_stmt_txn due to the following sequence:
suite starts transaction with FSM state -> test encounters and ignores non retriable error -> transaction implicitly aborts due to non retriable error -> suite attempts to commit the transaction -> commit fails with NoSuchTransaction -> suite retries the transaction -> suite starts transaction with FSM state
The transaction will keep retrying indefinitely, failing every time, since the non retriable error keeps occurring and getting ignored.
Since this is an incompatibility between create_database.js and the suite, it should be blacklisted from this suite.
- related to
-
SERVER-45769 FSM workloads that run commands and expect them to fail cause infinite retry loops
- Closed