Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2014-06-25 Thread Kaan Soral
Let me haunt this thread, instead of creating a new one: DeadlineExceededError: The API call images.GetUrlBase() took too long to respond and was cancelled. My app received these errors today, during a time period, for the first time It's pretty devastating losing an uploaded image, and

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2013-08-19 Thread Richard Spillane
Thanks for the advice Vinny, much appreciated. On Sun, Aug 18, 2013 at 6:48 PM, Vinny P vinny...@gmail.com wrote: On Sun, Aug 18, 2013 at 5:44 PM, Richard Spillane necro...@gmail.comwrote: Our website has to wait for the image to become available. So, should we poll somehow (repeatedly call

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2013-08-18 Thread Richard Spillane
Hi Vinny, so what is the best practice in this case? Our website has to wait for the image to become available. So, should we poll somehow (repeatedly call getServingUrl())? Is there a way to be notified when getServingUrl() will no longer fail (some kind of completion callback we need to fill

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2013-08-18 Thread Vinny P
On Sun, Aug 18, 2013 at 5:44 PM, Richard Spillane necro...@gmail.comwrote: Our website has to wait for the image to become available. So, should we poll somehow (repeatedly call getServingUrl())? Is there a way to be notified when getServingUrl() will no longer fail (some kind of completion

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2013-08-13 Thread Vinny P
On Sun, Aug 11, 2013 at 6:39 PM, Richard Spillane necro...@gmail.comwrote: I've been experiencing this exact same problem, but for the go client. When I upload a small image (1M), then call getServingUrl on the blob key, everything works fine, but when I upload a larger image (8M was what I

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-02-02 Thread blackpawn
this doesn't seem to have made a difference, i've updated to 1.6.2 and still see this time out with 5 second requests. :/ -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

RE: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-02-02 Thread Brandon Wirtz
From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of blackpawn Sent: Thursday, February 02, 2012 2:20 AM To: google-appengine@googlegroups.com Subject: Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-02-02 Thread blackpawn
thanks for sharing your solution pamela. i have some image processing that happens in task queues and those retry and retry and retry until they finally get a serving URL. i'm still reworking parts that the users should be able to expect happen immediately to handle some notice that the

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-01-25 Thread blackpawn
After a week this is still killing my app. :( Would love any extra info I can get on the issue or things I can do to help track it down or work around it. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-01-25 Thread Pamela Fox
Here's how I am currently dealing with it, if it helps: 1) I upload blobs using the deferred queue, and save the blob_key to an entity. I try to save the URLs in the entity via get_serving_url, but if it fails, I set them to a designated empty URL (e.g. blank.png) 2) On a cron job (run every 20

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-01-25 Thread Stuart Langley
FYI I've extended the deadline from 5 sec to 15 sec. This change will be available in the 1.6.2 release. It would be great to get some feedback on any improvements that are noticed with this chance once 1.6.2 is available. -- You received this message because you are subscribed to the

Re: [google-appengine] Re: images.GetUrlBase deadline problems since yesterday morning

2012-01-23 Thread Amy Unruh
On Tue, Jan 24, 2012 at 1:19 PM, pamela pamela...@eatdifferent.com wrote: I am also experiencing an increased number of these (although I also have more traffic going to my app generally, so the increase in errors may be proportional). Either way, I call this function on a deferred task, and