1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
description: server selection for load-balanced clusters
schemaVersion: '1.3'
runOnRequirements:
- topologies: [ load-balanced ]
createEntities:
- client:
id: &client0 client0
useMultipleMongoses: true
observeEvents:
- commandStartedEvent
- database:
id: &database0 database0
client: *client0
databaseName: &database0Name database0Name
- collection:
id: &collection0 collection0
database: *database0
collectionName: &collection0Name coll0
collectionOptions:
readPreference:
# Use secondaryPreferred to ensure that operations can succeed even if the shards are only comprised of one
# server.
mode: &readPrefMode secondaryPreferred
initialData:
- collectionName: *collection0Name
databaseName: *database0Name
documents: []
tests:
- description: $readPreference is sent for load-balanced clusters
operations:
- name: find
object: *collection0
arguments:
filter: {}
expectEvents:
- client: *client0
events:
- commandStartedEvent:
command:
find: *collection0Name
filter: {}
$readPreference:
mode: *readPrefMode
commandName: find
databaseName: *database0Name
|