On Sun, Sep 13, 2009 at 5:29 AM, hg <[email protected]> wrote: > > Hi, > I have a task that I need to run via cron. It takes a fair amount of > time - is there any way around the 30 second request time limit? I > tried Runtime.getRuntime().exec("java ...., but I get a permission > denied error. > Does anyone have any ideas? >
Using Task Queues may help. The idea is that you break the job into 30 second or less chunks-o-work and queue them. -- Gianni Mariani Google, Sydney --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en -~----------~----~----~----~------~----~------~--~---
