bigcarp
bigcarp

Reputation: 25

How to limit GAE datastore size to the free quota? So that I won't be charged?

How to limit GAE Datastore size to the free quota 1G? So that I won't be charged?

Upvotes: 1

Views: 54

Answers (1)

Alexander Trakhimenok
Alexander Trakhimenok

Reputation: 6278

You have 3 options:

  1. Calculate on the go how much you store and once near the limit stop adding records to DB
  2. Use GAE stats API to do the same (it can have a delay up to 24 hours): https://cloud.google.com/appengine/docs/python/datastore/stats
  3. Simply do not switch on payments - GAE will limit your app automatically once you've hit the quota.

Upvotes: 3

Related Questions