I need to delete a bunch of files, stored in Mongo's GridFS that are older than a given date. This implies that I'd need to delete from both fs.files and fs.chunks collections.
I was thinking of writing a function that finds all documents from fs.files that match the search criteria, iterate over them and in the loop delete all documents from fs.chunks that match the files_id value of the corresponding document in fs.files, however, according to the docs:
MongoDB supports atomic operations on single documents. MongoDB does not support traditional locking and complex transactions
which makes me think my suggested approach might not be the correct one.
I know I could use one of the client drivers to manipulate the GridFS directly. For example, using PHP I could implement it like this:
<?php
$grid = $db->getGridFS('fs');
$grid->remove(array(
"uploadDate" => array(
'$lt' => new MongoDate(strtotime("2011-02-01 00:00:00"))
)
));
... however I wish to accomplish this using only the mongo console.
So, what is the preferred way to remove files, matching certain criteria regarding a field in fs.files from both collections, using the mongo console, or a JS file, feeding the console?