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
/src/mongo/db/storage/durable_catalog.cpp:217: MISSING_LOCK 152608 Accessing "this->_catalogIdToEntryMap" without holding lock "mongo::DurableCatalog._catalogIdToEntryMapLock". Elsewhere, "mongo::DurableCatalog._catalogIdToEntryMap" is written to with "DurableCatalog._catalogIdToEntryMapLock" held 7 out of 8 times.