Due to error in client code, mongodb have created many "mr.mapreduce...." collections, how to remove them all (by mask maybe).

link|improve this question

62% accept rate
feedback

3 Answers

up vote 8 down vote accepted

I run script in interactive shell:

function f() {
    var names = db.getCollectionNames();
    for(var i = 0; i < names.length; i++){
    if(names[i].indexOf("mr.") == 0){
    db[names[i]].drop();}}};
f();

It resolved my problem.

link|improve this answer
copied the same code, but did not work for me :( EDIT: the name was different. It works now. Thanks. – Kaustubh P Nov 12 '10 at 11:27
Good idea. You might want to address the cause of the issue in the long-term though. Creating (and leaving) a load of temporary collections for manual cleanup is probably not ideal. – Mark Embling Nov 12 '10 at 11:56
1  
You should write > if(names[i].indexOf("tmp.mr.") == 0){ < because collections has names like tmp.mr.mapreduce_1295256376_56_inc – Creotiv Jan 17 '11 at 9:53
feedback

Temporary map-reduce table should be cleaned up when the connection which created them is closed:

map/reduce is invoked via a database command. The database creates a temporary collection to hold output of the operation. The collection is cleaned up when the client connection closes, or when explicitly dropped. Alternatively, one can specify a permanent output collection name. map and reduce functions are written in JavaScript and execute on the server.

-- MongoDB docs

If not, you could delete them using them same method you would delete any other collection. It might get a bit repetitive though.

link|improve this answer
feedback

Another way to achieve the same thing is this snippet:

db.system.namespaces.find({name: /tmp.mr/}).forEach(function(z) {
  try{
    db.getMongo().getCollection( z.name ).drop();
  } catch(err) {}
});

Pro: It won't try to collect all your namespaces into a JavaScript Array. MongoDB segfaults on too many namespaces.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.