MongoDB
 sql >> Teknologi Basis Data >  >> NoSQL >> MongoDB

Cara tercepat untuk menghapus dokumen duplikat di mongodb

dropDups: true pilihan tidak tersedia di 3.0.

Saya memiliki solusi dengan kerangka kerja agregasi untuk mengumpulkan duplikat dan kemudian menghapusnya sekaligus.

Mungkin agak lebih lambat daripada perubahan "indeks" tingkat sistem. Tetapi ada baiknya dengan mempertimbangkan cara Anda ingin menghapus dokumen duplikat.

sebuah. Hapus semua dokumen sekaligus

var duplicates = [];

db.collectionName.aggregate([
  { $match: { 
    name: { "$ne": '' }  // discard selection criteria
  }},
  { $group: { 
    _id: { name: "$name"}, // can be grouped on multiple properties 
    dups: { "$addToSet": "$_id" }, 
    count: { "$sum": 1 } 
  }},
  { $match: { 
    count: { "$gt": 1 }    // Duplicates considered as count greater than one
  }}
],
{allowDiskUse: true}       // For faster processing if set is larger
)               // You can display result until this and check duplicates 
.forEach(function(doc) {
    doc.dups.shift();      // First element skipped for deleting
    doc.dups.forEach( function(dupId){ 
        duplicates.push(dupId);   // Getting all duplicate ids
        }
    )
})

// If you want to Check all "_id" which you are deleting else print statement not needed
printjson(duplicates);     

// Remove all duplicates in one go    
db.collectionName.remove({_id:{$in:duplicates}})  

b. Anda dapat menghapus dokumen satu per satu.

db.collectionName.aggregate([
  // discard selection criteria, You can remove "$match" section if you want
  { $match: { 
    source_references.key: { "$ne": '' }  
  }},
  { $group: { 
    _id: { source_references.key: "$source_references.key"}, // can be grouped on multiple properties 
    dups: { "$addToSet": "$_id" }, 
    count: { "$sum": 1 } 
  }}, 
  { $match: { 
    count: { "$gt": 1 }    // Duplicates considered as count greater than one
  }}
],
{allowDiskUse: true}       // For faster processing if set is larger
)               // You can display result until this and check duplicates 
.forEach(function(doc) {
    doc.dups.shift();      // First element skipped for deleting
    db.collectionName.remove({_id : {$in: doc.dups }});  // Delete remaining duplicates
})


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Luwak:Skema vs Model?

  2. Cara menjatuhkan indeks menggunakan Mongoose

  3. Luwak Tidak Dapat Terhubung Tanpa Internet

  4. mongoexport tanpa bidang _id

  5. Meteor Berlangganan tidak memperbarui urutan pengurutan koleksi