When you perform an ancestor query, it is limited to one write per ancestor per second. Does this apply to different entity kinds or the same kind?
For example, https://cloud.google.com/appengine/docs/python/ndb/queries#ancestor
class Customer(ndb.Model):
name = ndb.StringProperty()
class Purchase(ndb.Model):
price = ndb.IntegerProperty()
class Order(ndb.Model):
shipping = ndb.StringProperty()
purchase1 = Purchase(parent=customer_entity.key)
order1 = Order(parent=customer_entity.key)
Can you write to both purchase and order at the same time?