summaryrefslogtreecommitdiff
path: root/src/mongo/db/cloner.cpp
diff options
context:
space:
mode:
authorLucas de Castro Borges <lucas@gnuabordo.com.br>2025-02-11 15:07:35 -0300
committerLucas de Castro Borges <lucas@gnuabordo.com.br>2025-02-11 15:07:35 -0300
commit4cb8841196d0625dfa3825aa326f071cd27c7b8b (patch)
tree1682a647d4463397c119183369ae6f750d5fdcff /src/mongo/db/cloner.cpp
parentaa03c6362cbaa767638e6eed9b031d86dd2643d1 (diff)
parent8f0827553e09872941945a093b647a4211a9db7f (diff)
Update upstream source from tag 'upstream/6.0.0'master
Update to upstream version '6.0.0' with Debian dir 5604a80ec1c96ca76f25f40d78e6ef855abec322
Diffstat (limited to 'src/mongo/db/cloner.cpp')
-rw-r--r--src/mongo/db/cloner.cpp15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/mongo/db/cloner.cpp b/src/mongo/db/cloner.cpp
index 658996e8245..7d289892fa5 100644
--- a/src/mongo/db/cloner.cpp
+++ b/src/mongo/db/cloner.cpp
@@ -48,7 +48,7 @@
#include "mongo/db/cloner_gen.h"
#include "mongo/db/commands.h"
#include "mongo/db/commands/list_collections_filter.h"
-#include "mongo/db/concurrency/exception_util.h"
+#include "mongo/db/concurrency/write_conflict_exception.h"
#include "mongo/db/curop.h"
#include "mongo/db/dbdirectclient.h"
#include "mongo/db/index/index_descriptor.h"
@@ -71,7 +71,6 @@ namespace mongo {
using IndexVersion = IndexDescriptor::IndexVersion;
MONGO_FAIL_POINT_DEFINE(movePrimaryFailPoint);
-MONGO_FAIL_POINT_DEFINE(movePrimaryClonerHangBeforeStartCloneDocuments);
BSONElement getErrField(const BSONObj& o);
@@ -409,8 +408,7 @@ Status Cloner::_createCollectionsForDb(
{
OperationShardingState::ScopedAllowImplicitCollectionCreate_UNSAFE
- unsafeCreateCollection(opCtx,
- /* forceCSRAsUnknownAfterCollectionCreation */ true);
+ unsafeCreateCollection(opCtx);
Status createStatus = db->userCreateNS(
opCtx, nss, collectionOptions, createDefaultIndexes, params.idIndexSpec);
if (!createStatus.isOK()) {
@@ -535,13 +533,6 @@ Status Cloner::copyDb(OperationContext* opCtx,
// now build the secondary indexes
for (auto&& params : createCollectionParams) {
-
- // Indexes of sharded collections are not copied: the primary shard is not required to
- // have all indexes. The listIndexes cmd is sent to the shard owning the MinKey value.
- if (params.shardedColl) {
- continue;
- }
-
LOGV2(20422,
"copying indexes for: {collectionInfo}",
"Copying indexes",
@@ -559,8 +550,6 @@ Status Cloner::copyDb(OperationContext* opCtx,
}
}
- movePrimaryClonerHangBeforeStartCloneDocuments.pauseWhileSet();
-
for (auto&& params : createCollectionParams) {
if (params.shardedColl) {
continue;