On Sat, Aug 6, 2011 at 12:45, Wendel <[email protected]> wrote: > "The High Replication code sample above writes to a single entity group per > guestbook. This allows queries on a single guestbook to be strongly > consistent, but also limits changes to the guestbook to 1 write per second > (the supported limit for entity groups)" > > Does this limit of 1 write per second apply to a single entity item or to > the entire table of entities of the same kind? > > The documentation is unclear about this, but I assume it is limited to only > a single entity record, otherwise it would be impossible to scale.
The docs clearly state that the write-rate limit applies to an *entity group*. An entity group is a collection of entities you define (by specifying a parent). By default, every entity is in its own group. http://code.google.com/appengine/docs/python/datastore/entities.html#Entity_Groups_and_Ancestor_Paths > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-appengine/-/NgLOARGK7J8J. > 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. > -- 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.
