|
The commit for SERVER-28968 introduced a way for ShardedClusterFixture to use replica set shards, but the default is still to use standalone shards.
Many suites do override the default:
// Total number of suites that use the ShardedClusterFixture
|
$ grep -rIn ShardedClusterFixture buildscripts/resmokeconfig/suites/ | wc -l
|
58
|
|
// Number of suites that override num_rs_nodes_per_shard
|
$ grep -rIn num_rs_nodes_per_shard buildscripts/resmokeconfig/suites/ | wc -l
|
44
|
This ticket is to attempt to change the default in ShardedClusterFixture to "1" so that by default, the fixture uses single node replica set shards.
If any suites require standalone shards, the default should be overridden in them to be "None" and a comment should be placed above this describing why.
|