sql >> Database >  >> NoSQL >> MongoDB

mongodb documenten van de ene collectie naar de andere collectie verplaatsen

De bulkoperaties die @markus-w-mahlberg liet zien (en @mark-mullin verfijnd) zijn efficiënt maar onveilig zoals beschreven. Als de bulkInsert mislukt, gaat de bulkRemove nog steeds door. Gebruik in plaats daarvan dit om ervoor te zorgen dat u geen gegevens verliest tijdens het verhuizen:

function insertBatch(collection, documents) {
  var bulkInsert = collection.initializeUnorderedBulkOp();
  var insertedIds = [];
  var id;
  documents.forEach(function(doc) {
    id = doc._id;
    // Insert without raising an error for duplicates
    bulkInsert.find({_id: id}).upsert().replaceOne(doc);
    insertedIds.push(id);
  });
  bulkInsert.execute();
  return insertedIds;
}

function deleteBatch(collection, documents) {
  var bulkRemove = collection.initializeUnorderedBulkOp();
  documents.forEach(function(doc) {
    bulkRemove.find({_id: doc._id}).removeOne();
  });
  bulkRemove.execute();
}

function moveDocuments(sourceCollection, targetCollection, filter, batchSize) {
  print("Moving " + sourceCollection.find(filter).count() + " documents from " + sourceCollection + " to " + targetCollection);
  var count;
  while ((count = sourceCollection.find(filter).count()) > 0) {
    print(count + " documents remaining");
    sourceDocs = sourceCollection.find(filter).limit(batchSize);
    idsOfCopiedDocs = insertBatch(targetCollection, sourceDocs);

    targetDocs = targetCollection.find({_id: {$in: idsOfCopiedDocs}});
    deleteBatch(sourceCollection, targetDocs);
  }
  print("Done!")
}


  1. Stop Mongodb met het negeren van speciale tekens?

  2. MongoDB installeren met Homebrew

  3. Zoeken in mongo db met behulp van mangoest regex vs. tekst

  4. 3 manieren om een ​​index te verbergen voor het queryplan in MongoDB