Data race condition
The value of the shared data will be determined by the interleaving of thread execution. Thread shared data is accessed without holding an appropriate lock, possibly causing a race condition
/data/bazel_cache/1de52aaeb35278243ca29a4785ce7969/execroot/_main/src/mongo/db/modules/enterprise/src/streams/exec/queued_sink_operator.cpp:350: MISSING_LOCK 173292 Accessing "this->consumerStats" without holding lock "streams::QueuedSinkOperator::WriterThread.consumerMutex". Elsewhere, "streams::QueuedSinkOperator::WriterThread.consumerStats" is written to with "WriterThread.consumerMutex" held 2 out of 3 times.