Questions tagged [gae-quotas]

App Engine limits resources usage up to certain quotas to ensure that your application won't exceed your daily budget.

An App Engine application can consume resources up to certain quotas. With these quotas, App Engine ensures that your application won't exceed your budget, and that other applications running on App Engine won't impact your application's performance.

Use for questions:

About app Engine limitations and managing costs over free quotas threshold.

Do not use for questions:

  1. About quotas for Google services, use instead.
  2. About email or SMTP service sending limits.

Useful resources

  1. Quotas and limits in the official docs

  2. Application daily consumption dashboard.

  3. Issue tracker for the component

48 questions
17
votes
2 answers

What is the maximum memory a Google App Engine app may consume?

What is the maximum amount of local memory (not Memcache) each instance of a Google App engine app is allowed to consume? I couldn't find any information on the GAE quotas page.
Tony the Pony
  • 40,327
  • 71
  • 187
  • 281
8
votes
2 answers

Google App Engine : Quota Error

I got an error when command "gcloud preview app deploy app.yaml --promote" : ERROR: (gcloud.preview.app.deploy) Error Response: [13] CPU Quota Exceeded: in use: 7, requested: 2, limit: 8 Version: 20151201t142343.388948918338383472 Is there anything…
LKM
  • 2,410
  • 9
  • 28
  • 53
7
votes
2 answers

__BlobFileIndex__ fills Datastore Quota

I serialize objects to blobstore in my app, and delete and recreate them whenever they change. I know this is not the best way, but I found that is good way for rapid prototyping. Now I am in the phase to use datastore, however I have a problem. My…
Cigiller
  • 84
  • 1
  • 1
  • 7
5
votes
1 answer

Google App Engine Memcache API Quotas

Google App Engine's documentation states that memcache calls will count towards a quota. Yet, when I click through, memcache quotas or cost is not listed. How can I find the new pricing changes?
ehfeng
  • 3,807
  • 4
  • 33
  • 42
5
votes
1 answer

Programmatically preventing exhaustion of allocated Google App Engine Quotas

Am working on a gae app using python. The app involves some crowd-sourced data collection system and data used in the app is submitted by users all-over the country. Now, am using the default quotas (Free) but am faced with a problem of ensuring at…
JWL
  • 13,591
  • 7
  • 57
  • 63
4
votes
1 answer

What is causing this GCP GAE [RESOURCE_EXHAUSTED] quota error?

When deploying to GCP App Engine (Flexible) I'm getting a [RESOURCE_EXHAUSTED] error that I can't seem to make sense of. The requested amount of instances has exceeded GCE's default quota. Full error: ERROR: (gcloud.app.deploy) Error Response: [8]…
Raphael Rafatpanah
  • 19,082
  • 25
  • 92
  • 158
4
votes
3 answers

Request Denied forever - request gpu quota increase in Google Cloud

I try and google does not accept request to increase the quota of in instance free Google Cloud ...someone could tell them what to do to accept and approve? thank... how do I pay normal and get used and if you know one that offers VPS the same…
topprime
  • 71
  • 1
  • 3
4
votes
1 answer

What is the Email Admin in the App Engine quotas?

I am sending emails with EmailMessage().send() from a Python App Engine app. After sending a few test emails to my gmail addres, in the Quota Details page I read this: Recipients Emailed 5% 5% 5 of 100 Okay Admins Emailed 0% 0% …
stenci
  • 8,290
  • 14
  • 64
  • 104
4
votes
1 answer

Outgoing bandwidth 2x that of total responses

I have a very simple app engine application serving 1.8Kb - 3.6Kb gzipped files stored in blobstore. A map from numeric file ID to blobkey is stored in the datastore and cached in memcache. The servlet implementation is trivial: a numeric file ID…
Dean
  • 14,688
  • 1
  • 19
  • 13
2
votes
1 answer

GoogleAppEngine: how to prevent image resize failure for big images

I've got to manage some images taken from the client. Up to now, my code is the following: Image oldImage = null; try { oldImage = ImagesServiceFactory.makeImage(imageBuf); } catch (Exception e) { log.severe("Cannot make…
Cristiano Ghersi
  • 1,944
  • 1
  • 20
  • 46
2
votes
0 answers

Cannot Locate GPU Quota Increase for Google Cloud Account

I am currently trying to increase the GPU quota for Google Cloud Platform. However, I am unable to search Google Compute Engine API for increasing the GPU quota. No option comes up when I search for "Compute Engine API" or "GPU All Regions" Has the…
2
votes
1 answer

How do you reset the Google AppEngine Datastore Quota Exceeded condition?

If you have a application that exceeds that Datastore quota of 1 Gig (Master/Slave configuration) How do you clear the condition? I have an application called "parking-helper" and it has a Total Stored Data 100% used message. But I've deleted 99%…
Ralph Yozzo
  • 1,086
  • 13
  • 25
2
votes
3 answers

gcloud app deploy - updating service default fails with code 13 Quota for instances limit exceeded, and 401 unathorizeed

Created a new project, on first deploy I get this: Updating service [default] (this may take several minutes)...failed. ERROR:…
blah blah
  • 425
  • 6
  • 12
2
votes
1 answer

Change GPU quota on Google Cloud Platform

I am trying to change the quota for the number of GPUs I can use on a project on the Google Cloud Platform. Thing is I've made requests before on a different account and they all went through. This is a brand new account about 5 days old and even…
SRR
  • 1,608
  • 1
  • 21
  • 51
2
votes
3 answers

Global GPU quota needed but can't request increase

I'm trying to use GCloud's deep learning VM image. My request for 8 Tesla K80s was approved. But when I try to create an instance with even a single GPU, I get an error saying the Global GPU limit of 0 is exceeded. The error statement in…
1
2 3 4