We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ce9989 commit e5c8ec7Copy full SHA for e5c8ec7
1 file changed
lib/settings-handler.js
@@ -138,6 +138,15 @@ const SETTING_KEYS = [
138
.allow('')
139
.trim()
140
.pattern(/^\d+\s*[a-z]*(\s*,\s*\d+\s*[a-z]*)*$/)
141
+ },
142
+
143
+ {
144
+ key: 'const:max:bulk_batch_size',
145
+ name: 'Max bulk batch write size',
146
+ description: 'The maximum number of entries that are collected and then written with mongodb insertMany in one insert query.',
147
+ type: 'number',
148
+ constKey: 'BULK_BATCH_SIZE',
149
+ schema: Joi.number()
150
}
151
];
152
0 commit comments