feat: Add support for MongoDB driver options serverSelectionTimeoutMS, maxIdleTimeMS, heartbeatFrequencyMS (#9910)

This commit is contained in:
Manuel
2025-11-07 20:11:12 +01:00
committed by GitHub
parent d5e7d6e0f6
commit 1b661e98c8
5 changed files with 33 additions and 0 deletions

View File

@@ -1164,6 +1164,18 @@ module.exports.DatabaseOptions = {
action: parsers.booleanParser,
default: false,
},
heartbeatFrequencyMS: {
env: 'PARSE_SERVER_DATABASE_HEARTBEAT_FREQUENCY_MS',
help:
'The MongoDB driver option to specify the frequency in milliseconds at which the driver checks the state of the MongoDB deployment.',
action: parsers.numberParser('heartbeatFrequencyMS'),
},
maxIdleTimeMS: {
env: 'PARSE_SERVER_DATABASE_MAX_IDLE_TIME_MS',
help:
'The MongoDB driver option to specify the amount of time in milliseconds that a connection can remain idle in the connection pool before being removed and closed.',
action: parsers.numberParser('maxIdleTimeMS'),
},
maxPoolSize: {
env: 'PARSE_SERVER_DATABASE_MAX_POOL_SIZE',
help:
@@ -1199,6 +1211,12 @@ module.exports.DatabaseOptions = {
'The duration in seconds after which the schema cache expires and will be refetched from the database. Use this option if using multiple Parse Servers instances connected to the same database. A low duration will cause the schema cache to be updated too often, causing unnecessary database reads. A high duration will cause the schema to be updated too rarely, increasing the time required until schema changes propagate to all server instances. This feature can be used as an alternative or in conjunction with the option `enableSchemaHooks`. Default is infinite which means the schema cache never expires.',
action: parsers.numberParser('schemaCacheTtl'),
},
serverSelectionTimeoutMS: {
env: 'PARSE_SERVER_DATABASE_SERVER_SELECTION_TIMEOUT_MS',
help:
'The MongoDB driver option to specify the amount of time in milliseconds for a server to be considered suitable for selection.',
action: parsers.numberParser('serverSelectionTimeoutMS'),
},
socketTimeoutMS: {
env: 'PARSE_SERVER_DATABASE_SOCKET_TIMEOUT_MS',
help: