Services/Sync/Server/Notes/QuotaAlgo

From MozillaWiki
< Services‎ | Sync‎ | Server(Redirected from Labs/Weave/QuotaAlgo)
Jump to: navigation, search

Define low_threshold = quota - 1M

Quota results are in bytes

On a write

  1. If a user has no quota entry, grab the list from the database and put it into memcache along with the current timestamp
  2. get current total and associated timestamp
  3. if total > low_threshold and timestamp is older than 1h - refetch total from dbreset total and timestamp in memcache
  4. if total > quota, reject write
  5. add sum of incoming payloads to quota
  6. if total > low_threshold, add an X-Weave-Quota-Remaining header (value is remaining storage space in bytes)

On a delete

  1. delete user quota record from memcache

add /info/collection_usage (requires version bump to 1.1)

  1. get grouped collection totals
  2. sum them and write overall total (and timestamp) to memcache

monitoring script

  1. when user total is calculated, update memcache (may be firewall issues here)