summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_knobs.idl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/query_knobs.idl')
-rw-r--r--src/mongo/db/query/query_knobs.idl19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mongo/db/query/query_knobs.idl b/src/mongo/db/query/query_knobs.idl
index f894629037f..8aad5969289 100644
--- a/src/mongo/db/query/query_knobs.idl
+++ b/src/mongo/db/query/query_knobs.idl
@@ -871,6 +871,25 @@ server_parameters:
default:
expr: false
+ internalQueryGlobalProfilingFilter:
+ description: "Enables the setProfilingFilterGlobally command."
+ set_at: [ startup ]
+ cpp_varname: internalQueryGlobalProfilingFilter
+ cpp_vartype: AtomicWord<bool>
+ default: false
+
+
+ internalQueryDocumentSourceWriterBatchExtraReservedBytes:
+ description: "Space to reserve in document source writer batches for miscellaneous metadata"
+ set_at: [ startup, runtime ]
+ cpp_vartype: AtomicWord<int>
+ cpp_varname: internalQueryDocumentSourceWriterBatchExtraReservedBytes
+ validator:
+ gte: 0
+ lte:
+ expr: 8 * 1024 * 1024 # 8MB
+ default: 0
+
# Note for adding additional query knobs:
#
# When adding a new query knob, you should consider whether or not you need to add an 'on_update'