summaryrefslogtreecommitdiff
path: root/src/mongo/db/namespace_string.cpp
diff options
context:
space:
mode:
authorMatt Broadstone <mbroadst@mongodb.com>2022-07-11 16:30:54 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-11 17:35:56 +0000
commit80aa9c051ed9bf0a80e6e35f28516aca0561a105 (patch)
treef927b202290710c8ec5522e59edd458fe451a7ac /src/mongo/db/namespace_string.cpp
parent00090a2e2b78603385739481f8954110c33002ce (diff)
downloadmongo-80aa9c051ed9bf0a80e6e35f28516aca0561a105.tar.gz
SERVER-66985 Ensure writes are serialized to shard split donors ns
Diffstat (limited to 'src/mongo/db/namespace_string.cpp')
-rw-r--r--src/mongo/db/namespace_string.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mongo/db/namespace_string.cpp b/src/mongo/db/namespace_string.cpp
index 6ad3b027165..88a821840c3 100644
--- a/src/mongo/db/namespace_string.cpp
+++ b/src/mongo/db/namespace_string.cpp
@@ -280,19 +280,22 @@ bool NamespaceString::isLegalClientSystemNS(
* Process updates to 'admin.system.version' individually as well so the secondary's FCV when
* processing each operation matches the primary's when committing that operation.
*
- * Process updates to config.tenantMigrationRecipients individually so they serialize after inserts
- * into config.donatedFiles.<migrationId>.
+ * Process updates to 'config.tenantMigrationRecipients' individually so they serialize after
+ * inserts into 'config.donatedFiles.<migrationId>'.
*
* Oplog entries on 'config.shards' should be processed one at a time, otherwise the in-memory state
* that its kept on the TopologyTimeTicker might be wrong.
*
+ * Serialize updates to 'config.tenantMigrationDonors' and 'config.shardSplitDonors' to avoid races
+ * with creating tenant access blockers on secondaries.
*/
bool NamespaceString::mustBeAppliedInOwnOplogBatch() const {
return isSystemDotViews() || isServerConfigurationCollection() || isPrivilegeCollection() ||
_ns == kDonorReshardingOperationsNamespace.ns() ||
_ns == kForceOplogBatchBoundaryNamespace.ns() ||
_ns == kTenantMigrationDonorsNamespace.ns() ||
- _ns == kTenantMigrationRecipientsNamespace.ns() || _ns == kConfigsvrShardsNamespace.ns();
+ _ns == kTenantMigrationRecipientsNamespace.ns() || _ns == kShardSplitDonorsNamespace.ns() ||
+ _ns == kConfigsvrShardsNamespace.ns();
}
NamespaceString NamespaceString::makeListCollectionsNSS(const DatabaseName& dbName) {