[google-appengine] Re: perform task on upload

2009-11-01 Thread Baron
thanks Stephen - that's just what I was thinking over the weekend because the files may be over 1MB so I would need to split them up anyway. Richard On Oct 30, 11:41 pm, Stephen wrote: > On Oct 28, 1:33 pm, Baron wrote: > > > hello, > > > part of my app uploads a file and needs to parse each

[google-appengine] Re: perform task on upload

2009-10-30 Thread Wooble
On Oct 30, 12:11 am, Roy Smith wrote: > I've never been there so I'm speculating. Is "deadline exceeded" something > you can catch and then still perform further processing? > One would expect that allowing you further processing would somewhat defeat > the objective of having a deadline in the

[google-appengine] Re: perform task on upload

2009-10-30 Thread Stephen
On Oct 28, 1:33 pm, Baron wrote: > hello, > > part of my app uploads a file and needs to parse each line of the > file. The parsing of the whole document takes longer than 30 seconds, > so I was wondering how to handle this. > > Currently I am considering storing the upload in the datastore and

[google-appengine] Re: perform task on upload

2009-10-29 Thread Roy Smith
I've never been there so I'm speculating. Is "deadline exceeded" something you can catch and then still perform further processing? One would expect that allowing you further processing would somewhat defeat the objective of having a deadline in the first place. You might need to pre-slice your fi

[google-appengine] Re: perform task on upload

2009-10-29 Thread Baron
I know it won't be - it is a fixed column CSV On Oct 29, 11:31 am, OvermindDL1 wrote: > On Wed, Oct 28, 2009 at 7:33 AM, Baron wrote: > > > hello, > > > part of my app uploads a file and needs to parse each line of the > > file. The parsing of the whole document takes longer than 30 seconds, >

[google-appengine] Re: perform task on upload

2009-10-28 Thread OvermindDL1
On Wed, Oct 28, 2009 at 7:33 AM, Baron wrote: > > hello, > > part of my app uploads a file and needs to parse each line of the > file. The parsing of the whole document takes longer than 30 seconds, > so I was wondering how to handle this. > > Currently I am considering storing the upload in the