MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Valori distinti di una chiave in un sottodocumento MongoDB (100 milioni di record)

Ho provato la soluzione che ho trovato qui e ha funzionato bene :) .. Terrò il thread e aggiungerò il mio codice nel caso qualcuno ne avesse bisogno.

var SOURCE = db.sample;
var DEST = db.distinct;
DEST.drop();
map = function() {
  emit( this.user.screen_name , {count: 1});
}

reduce = function(key, values) {
  var count = 0;

  values.forEach(function(v) {
    count += v['count'];   
  });

  return {count: count};
};

res = SOURCE.mapReduce( map, reduce, 
    { out: 'distinct', 
     verbose: true
    }
    );

print( "distinct count= " + res.counts.output );
print( "distinct count=", DEST.count() );

Saluti