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 0cce666 commit 2955fcaCopy full SHA for 2955fca
engines/ep/src/dcp/producer.cc
@@ -182,6 +182,14 @@ DcpProducer::DcpProducer(EventuallyPersistentEngine& e,
182
logger.min_log_level = EXTENSION_LOG_WARNING;
183
}
184
185
+ // MB-28468: Reduce the minimum log level of FTS DCP streams as they are
186
+ // very noisy due to creating streams for non-existing vBuckets. Future
187
+ // development of FTS should remedy this, however for now, we need to
188
+ // reduce their verbosity as they cause the memcached log to rotate early.
189
+ if (name.find("eq_dcpq:fts") != std::string::npos) {
190
+ logger.min_log_level = EXTENSION_LOG_FATAL;
191
+ }
192
+
193
engine_.setDCPPriority(getCookie(), CONN_PRIORITY_MED);
194
priority.assign("medium");
195
0 commit comments