SERVER-93551: Rebalance file/task count for update fuzzers (#26152) (#26517)

The fuzzer currently tests 400 files in 20 tasks. This can timeout when
testing with 7.0 during multiversion tasks. This PR changes it to 400
files in 40 tasks, so that each task has half as many files and should
no longer time out.

Anything in this description will be included in the commit message.
Replace or delete this text before merging. Add links to testing in the
comments of the PR.

GitOrigin-RevId: eecc1ece8520103f7c99dd4466992745b2054632
This commit is contained in:
William L Qian 2024-08-29 16:00:18 -04:00 committed by MongoDB Bot
parent ca8d6e587f
commit 78d326bcab
1 changed files with 6 additions and 6 deletions

View File

@ -563,8 +563,8 @@ tasks:
- func: "generate resmoke tasks" - func: "generate resmoke tasks"
vars: vars:
<<: *jstestfuzz_config_vars <<: *jstestfuzz_config_vars
num_files: 20 num_files: 10
num_tasks: 20 num_tasks: 40
jstestfuzz_vars: --useEsModules jstestfuzz_vars: --useEsModules
npm_command: update-fuzzer npm_command: update-fuzzer
resmoke_args: "--mongodSetParameters='{logComponentVerbosity: {command: 2}}'" resmoke_args: "--mongodSetParameters='{logComponentVerbosity: {command: 2}}'"
@ -582,8 +582,8 @@ tasks:
- func: "generate resmoke tasks" - func: "generate resmoke tasks"
vars: vars:
<<: *jstestfuzz_config_vars <<: *jstestfuzz_config_vars
num_files: 20 num_files: 10
num_tasks: 20 num_tasks: 40
jstestfuzz_vars: --useEsModules jstestfuzz_vars: --useEsModules
npm_command: update-fuzzer npm_command: update-fuzzer
resmoke_args: "--mongodSetParameters='{logComponentVerbosity: {command: 2}}'" resmoke_args: "--mongodSetParameters='{logComponentVerbosity: {command: 2}}'"
@ -597,8 +597,8 @@ tasks:
- func: "generate resmoke tasks" - func: "generate resmoke tasks"
vars: vars:
<<: *jstestfuzz_config_vars <<: *jstestfuzz_config_vars
num_files: 20 num_files: 10
num_tasks: 20 num_tasks: 40
jstestfuzz_vars: --diffTestingMode timeseries --useEsModules jstestfuzz_vars: --diffTestingMode timeseries --useEsModules
npm_command: update-fuzzer npm_command: update-fuzzer
suite: generational_fuzzer suite: generational_fuzzer