-
Type: Task
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: Sharding, Testing Infrastructure
-
Fully Compatible
-
Sharding 2017-09-11, Sharding 2017-10-02
New resmoke.py YAML suites and Evergreen tasks should be defined to run the concurrency suite with CSRS primary stepdowns both when the balancer is enabled and when the balancer is not enabled. The reason to define them as separate test suites and Evergreen tasks is because that's ultimately the model we'll have once we move away from the concurrency framework having a JavaScript file to run other JavaScript files. Additionally, we'll avoid increasing the duration of the existing concurrency_sharded and concurrency_sharded_WT tasks (see SERVER-27858).
test_kind: js_test selector: roots: - jstests/concurrency/fsm_all_sharded_with_stepdowns.js # Concurrency tests that run against a sharded cluster start one themselves. executor: config: shell_options: nodb: '' readMode: commands
The jstests/concurrency/fsm_all_sharded_with_stepdowns.js and jstests/concurrency/fsm_all_sharded_with_stepdowns_and_balancer.js files should be adapted from jstests/concurrency/fsm_all_sharded_replication.js and jstests/concurrency/fsm_all_sharded_replication_with_balancer.js, respectively. The main difference between these files will be to specify
{ sharded: {enabled: true, stepdownOptions: {configStepdown: true, shardStepdown: false}}, replication: {enabled: true} }
as the cluster options.
Note: These JavaScript files should be excluded from all other concurrency*.yml test suites.
Names of new resmoke.py YAML suites
- concurrency_sharded_with_stepdowns.yml
- concurrency_sharded_with_stepdowns_and_balancer.yml
Names of new Evergreen tasks
- concurrency_sharded_with_stepdowns
- concurrency_sharded_with_stepdowns_WT
- concurrency_sharded_with_stepdowns_and_balancer
- concurrency_sharded_with_stepdowns_and_balancer_WT
The new Evergreen tasks should be run on the following build variants:
- Enterprise RHEL 6.2
- Enterprise RHEL 6.2 (inMemory)
- Windows 2008R2 DEBUG
- SSL OS X 10.10
- ASAN Enterprise SSL Ubuntu 16.04 DEBUG
- UBSAN Enterprise Ubuntu 16.04 DEBUG
- Enterprise RHEL 6.2 DEBUG Code Coverage
- depends on
-
SERVER-30676 Add support for stepdown options to the concurrency framework
- Closed