Skip to content

Commit ad218ca

Browse files
pdillingermeta-codesync[bot]
authored andcommitted
Temporary disable multiscan_use_async_io in crash test (facebook#14263)
Summary: Seeing many errors like this ``` Iterator diverged from control iterator which has value ... iterator is not valid with status: IO error: Req failed: Unknown error -14 VerifyIterator failed. Control CF default ``` Pull Request resolved: facebook#14263 Test Plan: CI Reviewed By: archang19 Differential Revision: D91478886 Pulled By: pdillinger fbshipit-source-id: 94b955b6ecdb7a3cab39dac8e7b0d1047d49a0bb
1 parent 6a79e02 commit ad218ca

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tools/db_crashtest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,8 @@ def apply_random_seed_per_iteration():
444444
"use_multiscan": random.choice([1] + [0] * 3),
445445
# By default, `statistics` use kExceptDetailedTimers level
446446
"statistics": random.choice([0, 1]),
447-
"multiscan_use_async_io": random.randint(0, 1),
447+
# TODO: re-enable after resolving "Req failed: Unknown error -14" errors
448+
"multiscan_use_async_io": 0, # random.randint(0, 1),
448449
}
449450

450451
_TEST_DIR_ENV_VAR = "TEST_TMPDIR"

0 commit comments

Comments
 (0)