Cleaning up Google AppEngine Mapreduce Jobs


Do you use the Google MapReduce library on AppEngine? And do you have a lot of completed tasks which clutter your dashboard? Use the JS below by pasting it into your developer console to clean them up! (use it at your own risk, no warranty is provided :-))

schedule = function() { window.setTimeout(function() { var c = $('a:contains(Cleanup)').first(); if (c.length > 0) { c.click(); } else { $('a:contains(Next page)').click(); schedule(); } }, 300); return true; }; window.confirm = schedule; schedule();

, , , ,

2 responses to “Cleaning up Google AppEngine Mapreduce Jobs”

Leave a Reply to Cd-MaN Cancel reply

Your email address will not be published. Required fields are marked *