no there isnt, i myself parse large xml files for example that i download
remotely and the time for the process to run varies because of the time it
takes for the urlfetch to grab the data.
You can split the data into smaller chunks and use mapper to cycle when you
finished your time to continue posting.
You can also split it across alot of small tasks that run asyc like i did
for parsing the data into the datastore. works perfectly.

my suggestions, just split the chunks.
-
Cheers,
public static function AlonCarmel() {
//Contact me
var email = '[email protected]';
var twitter = '@aloncarmel';
var web = 'http://aloncarmel.me';
var phone = '+972-54-4860380';
}

* If you received an unsolicited email from by mistake that wasn't of your
matter please delete immediately. All E-mail sent from Alon Carmel is
copyrighted to Alon Carmel 2008. Any details revealed in e-mails sent by
Alon Carmel are owned by the Author only. Any attempt to duplicate or
imitate any of the Content is prohibited under copyright law 2008.



On Tue, Jun 22, 2010 at 5:45 AM, rpalmer68 <[email protected]>wrote:

> Hi,
>
> I have a GAE app that is using this line;
>
> result = urlfetch.fetch(url=url, payload=encodedParams,
> method=urlfetch.POST, deadline=10);
>
> The problem is that the server/app the GAE app is communicating with
> may have to do some external lookups from another remote databse and
> depending on servr load sometimes the response back to my GAE app can
> be 12 or 15 seconds.  This of course triggers a DownloadError.
>
> Is there any other way of performing the above task without being
> restricted to the 10 second deadline?
>
> Thanks
> Richard
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-appengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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?hl=en.

Reply via email to