Taking a guess:  You are writing to a highly contended entity group.

Remember GAE gives you 1 transaction per second per EG, and regular
nontransactional writes will automatically retry. So contention will
produce long delays like this.

Think about your data model and make sure you aren't overloading a single
EG. Either reorganize the data or come up with a sharding scheme.
Unfortunately this is a difficult thing to do when you are already under
load.

Jeff



On Sun, Apr 28, 2013 at 11:04 AM, Panayiotis Papadopoulos <[email protected]
> wrote:

> Hi all my app is experiencing some heavy loads x2 traffic but GAE has
> spawned 1450 instances instead of my avg 17!
> I also get a lot timeouts for db.put!
>
> Do you experience any similar problem?
>
> I already (in 11 hours) at $400 when I am usually at $50
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/google-appengine?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to