MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

MongoDB allowDiskUse não está funcionando..


Por favor, use a consulta agregada no comando de execução, isso permitirá usar a tag allowDiskUse.
db.runCommand(
   { aggregate: "test",
     pipeline: [
                {$group: {_id: {email: "$email", gender: "$gender"}, cnt: {$sum: 1}}}, 
                {$group: {_id: "$_id.email", cnt: {$sum: 1}}}, 
                {$match: {cnt: 2}}
               ],
     allowDiskUse: true
   }
)