Connection Options
This section explains the MongoDB connection and authentication options
supported by the Node.js driver that you can set within a MongoClientOptions
instance.
For more information on setting connection options directly in a connection string, see Connection Strings in the MongoDB Server manual.
Name | Accepted Values | Default Value | Description |
---|---|---|---|
appName | string |
| Specifies the app name the driver passes to the server in the client
metadata as part of the connection handshake. The driver sends the
|
authMechanism | string |
| Specifies the authentication mechanism method to use for connection to the
server. If you do not specify a value, the driver uses the default mechanism,
either |
authMechanismProperties | comma separated key:value pairs, for example, "opt1:val1,opt2:val2" |
| Specifies other options provided for authentication, such as the option to enable hostname canonicalization for GSSAPI. |
authSource | string |
| Specifies the database that connections authenticate against. |
autoSelectFamily | boolean |
| If set to |
autoSelectFamilyAttemptTimeout | non-negative integer |
| Specifies the amount of time in milliseconds to wait for a connection
attempt to finish before trying the next address when using the
|
compressors | comma separated list of strings, for example, "snappy,zlib,zstd" |
| Specifies the allowed compression types for wire protocol messages sent to or received from the server. See Network Compression for more information. |
connectTimeoutMS | non-negative integer |
| Specifies the amount of time, in milliseconds, to wait to establish a single TCP
socket connection to the server before raising an error. Specifying
|
directConnection | boolean |
| Specifies whether to force dispatch all operations to the host specified in the connection URI. |
enableUtf8Validation | boolean |
| Specifying Specifying You can also set UTF-8 validation in your Node.js code. To learn more about UTF-8 characters, see UTF-8 on Wikipedia. |
heartbeatFrequencyMS | integer greater than or equal to 500 |
| Specifies the interval, in milliseconds, between regular server monitoring checks. |
loadBalanced | boolean |
| Specifies whether the driver is connecting to a load balancer. |
localThresholdMS | non-negative integer |
| Specifies the size of the latency window, in milliseconds, on round trip time for
selecting between suitable servers. Specifying |
maxIdleTimeMS | non-negative integer |
| Specifies the amount of time, in milliseconds, a connection can be idle before it's closed.
Specifying |
maxPoolSize | non-negative integer |
| Specifies the maximum number of clients or connections the driver can create in its connection pool. This count includes connections in use. |
maxConnecting | non-negative integer |
| Specifies the maximum number of connections a driver's connection pool may be establishing concurrently. |
maxStalenessSeconds | -1, or an integer greater than or equal 90 |
| Specifies the maximum replication lag, in wall clock time, that
a secondary can experience and still be eligible for server selection.
Specifying |
minPoolSize | non-negative integer |
| Specifies the number of connections the driver creates and maintains in the connection pool even when no operations are occurring. This count includes connections in use. |
proxyHost | string |
| Specifies the SOCKS5 proxy IPv4 address, IPv6 address, or domain name. |
proxyPort | non-negative integer |
| Specifies the TCP port number of the SOCKS5 proxy server. If you
set the |
proxyUsername | string |
| Specifies the username for authentication to the SOCKS5 proxy server. If you set this option to a zero-length string, the driver ignores it. |
proxyPassword | string |
| Specifies the password for authentication to the SOCKS5 proxy server. If you set this option to a zero-length string, the driver ignores it. |
readConcernLevel | string |
| Specifies the default read concern for the client. See read concern for more information. |
readPreference | string |
| Specifies the default read preference for the client (excluding tags). See read preference for more information. |
readPreferenceTags | comma-separated key:value pairs, for example, "dc:ny,rack:1" and "dc:ny can be specified multiple times, each instance of this key is a separate tag set |
| Specifies the default read preference tags for the client. This option is valid only if the read preference mode is not primary. The driver uses the order of the tags in the URI as the order for the read preference. |
replicaSet | string |
| Specifies the name of the replica set to connect to. |
retryReads | boolean |
| Enables retryable reads. |
retryWrites | boolean |
| Enables retryable writes. |
serverMonitoringMode |
|
| Specifies the monitoring mode that the driver monitors use. When
this option is set to |
serverSelectionTimeoutMS | non-negative integer |
| Specifies the timeout, in milliseconds, to block for server selection before raising an error. |
socketTimeoutMS | non-negative integer |
| Specifies the amount of time, in milliseconds, spent attempting to send or receive on a
socket before timing out. Specifying |
srvMaxHosts | non-negative integer |
| Specifies the maximum number of SRV results to randomly select when initially populating the seedlist or, during SRV polling, adding new hosts to the topology. |
srvServiceName | a valid SRV service name according to RFC 6335 |
| Specifies the service name to use for SRV lookup in initial DNS seedlist discovery. |
ssl | boolean |
| The |
tls | boolean |
| Specifies whether TLS is required for connections to the server.
Using a |
tlsAllowInvalidCertificates | boolean |
| Specifies whether the driver generates an error when the server's
TLS certificate is invalid. Set this option to |
tlsAllowInvalidHostnames | boolean |
| Specifies whether the driver generates an error when there is a mismatch
between the server's hostname and the hostname specified by the
TLS certificate. Set this option to |
tlsCAFile | string |
| Specifies the path to a file with either a single or bundle of certificate authorities to trust when making a TLS connection. To learn more about setting this connection option, see the Provide Certificate Filepaths section of the TLS guide. |
tlsCertificateKeyFile | string |
| Specifies the path to the client certificate file or the client private key file. If you need both, you must concatenate the files. To learn more about setting this connection option, see the Provide Certificate Filepaths section of the TLS guide. |
tlsCertificateKeyFilePassword | string |
| Specifies the password to decrypt the client private key to be used for TLS connections. |
tlsInsecure | boolean |
| Specifies to relax TLS constraints as much as possible, such as
allowing invalid certificates or hostname mismatches. Set this option
to |
waitQueueTimeoutMS | non-negative integer |
| Specifies the amount of time, in milliseconds, spent attempting to check out a connection from a server's connection pool before timing out. |
zlibCompressionLevel | integer between |
| Specifies the level of compression when using zlib to compress wire
protocol messages. |
Additional Information
To learn more about connection options that you can set within a
MongoClientOptions
instance, see MongoClientOptions
in the API Documentation.