[appengine-java] Re: DeadlineExceededException while executing a server method.

2009-11-04 Thread Sanjith Chungath
yeah I realized that. Since I was trying to read a big .csv file, I spit it to three parts and read it thrice. thanks for the reply Jason. -Sanjith. On Wed, Nov 4, 2009 at 12:56 AM, Jason (Google) wrote: > Hi Sanjith. All App Engine requests must return within 30 seconds or this > exception wi

[appengine-java] Re: DeadlineExceededException while executing a server method.

2009-11-03 Thread Jason (Google)
Hi Sanjith. All App Engine requests must return within 30 seconds or this exception will be thrown. If you have a larger task, you can divide it into several parts and execute these in separate tasks, but each task must also return in 30 seconds or less. - Jason On Sat, Oct 31, 2009 at 11:12 AM,

[appengine-java] Re: DeadlineExceededException while executing a server method.

2009-10-31 Thread Sanjith Chungath
in another word, is there a way to execute a server action through a normal server call or by tasks which can run more than 30 seconds? -Sanjith On Sat, Oct 31, 2009 at 12:40 AM, Sanjith Chungath wrote: > Hi all, > While executing a server method which talks to another system and > get d