Back to Top

Tuesday, November 12, 2013

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 comments:

  1. I think you also need JQuery somehow referred.

    ReplyDelete
  2. JQuery is used/incldued by the Google MapReduce library interface thus you don't need to worry about explicitly including it.

    ReplyDelete