Skip to main content

ReplSetOpts

API Documentation of ReplSetOpts-Interface

Values

auth

Typings: auth?: AutomaticAuth
Default: { enable: false }

Set whether to enable Authentication, with configuration from AutomaticAuth.

Also see MongoMemoryInstanceOpts.auth.

args

Typings: args?: string[]
Default: []

Set custom arguments to passs to the mongod binary.

Also see MongoMemoryInstanceOpts.args.

dbName

Typings: dbName?: string
Default: ""

Currently unused.

Set a custom dbname to use in getUri.

Also see MongoMemoryInstanceOpts.dbName.

ip

Typings: ip?: string
Default: "127.0.0.1"

Set which ip to bind to.

Also see MongoMemoryInstanceOpts.ip.

name

Typings: name?: string
Default: "testset"

Set which replset name to use.

See MongoDB replication.replSetName

spawn

Typings: spawn?: SpawnOptions
Default: {}

Set extra spawn options to pass to childProcess.spawn.

Also see MongoMemoryInstanceOpts.spawn.

storageEngine

Typings: storageEngine?: StorageEngine
Default: "ephemeralForTest" (unless mongodb version is 7.0.0, where its wiredTiger)

Set which Storage Engine to use, uses StorageEngine.

Also see MongoMemoryInstanceOpts.storageEngine.

configSettings

Typings: configSettings?: MongoMemoryReplSetConfigSettings
Default: {}

Set custom ReplSet config options

See MongoDB Replica Set Configuration.

count

Typings: count?: number
Default: 1

Set how many ReplSet members to spawn, this number will be deducted from length of instanceOpts array.

tip

It is recommended to set this number to a odd number, and try to never have it be even, see MongoDB Deploy an Odd Number of Members.