Hi Rob, Is that the only datastore query in the request, or does the request also contain other datastore queries? To clarify, it may be timing out here as a result of the total number of results fetched in the entire request. So if, in the handler, you are requesting a lot of entities, it just may happen that this is the place where the error is thrown.
-Marzia On Tue, Nov 25, 2008 at 9:39 AM, Rob <[EMAIL PROTECTED]> wrote: > > In most cases, only 1 or 2 results are expected. There can never be > more than 8 matches at a time (due to the maximum number of players we > allow in each room.) For testing, I've hard coded it to only request > 5 (at most) with the line: > > results = query.fetch(5) > > But that request continues to timeout regularly as well. I'd love it > if there's anyway to debug these timeouts as they are pretty > crippling. > > Thanks again. > > Rob > > > On Nov 25, 9:28 am, Marzia Niccolai <[EMAIL PROTECTED]> wrote: > > Hi Rob, > > > > How many entities in total per request are you fetching? Waldemar is > > correct that it is generally better to set a specific fetch number than > just > > using an iterator. But it may be that even though it is getting this > error > > on that one request, that this is due to the fact that you are fetching > more > > entities in total per the request than should be expected. > > > > -Marzia > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
