App Engine limits resources usage up to certain quotas to ensure that your application won't exceed your daily budget.
-1
votes
2answers
31 views
GAE - mail API - dialy limits
According to https://developers.google.com/appengine/docs/quotas#Mail
a GAE app developed by a third party (anyone of us) and hosted in GA Cloud has a limit of 20.000 messages that can send each day, ...
2
votes
1answer
52 views
How to save memcache value till quota is replenished?
In order to send not more than 100 e-mail messages per day, I create the following logic in my application:
all e-mail messages to be sent are stored in Datastore;
there is a cron job, which runs ...
2
votes
1answer
106 views
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 ...
1
vote
1answer
69 views
appengine toy program hitting quota limits for reads and writes
Let's say I wanted to make an appengine application that stores a 50,000 word dictionary and also equivalent dictionaries in 10 other languages of similar size.
I got this working locally on my dev ...
0
votes
1answer
95 views
Why am I hitting the datastore read operation quota?
I was in a place without Internet access for 3 weeks and just came back to find out that one of my apps since January 18 started to reach a quota limit (Datastore Read Operations) after around the 18 ...
1
vote
1answer
107 views
How to deal with channel api rate limit?
I need to implement real time notification system like stackoverflow(when someone adds answer/comment to a question) to my website. I came to know that channel API is the easiest way to implement that ...
0
votes
0answers
122 views
Appengine over quota
I'm using appengine already for a long time, but today, my application is already after 3 hours over quota (> my daily cost). The dashboard howevers show almost no resources have been used, so it ...
4
votes
1answer
137 views
__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 ...
0
votes
2answers
81 views
App Engine Backend Quota Not Touched
I have a dynamic backend process that gets called from within my frontend app code. To do this it must be visible via app.yaml. But when the backend gets run in this way I see no change in my backend ...
0
votes
1answer
53 views
Why Requests and Secure Requests Quota has been increased in google app engine?
When I use the request URL as http://myapp.appspot.com quota use increases only for Quota Details --> Requests.
But When I use the request URL as https://myapp.appspot.com quota use increases for ...
0
votes
1answer
217 views
GAE: Queues, Quotas and backend instances
I have a queue with a lot of tasks in it. I would like to use one backend instance to process this queue. My quota info tells me I have blown my budget on hundreds of frontend instance hours and have ...
1
vote
1answer
186 views
GAE Mysterious Quota Limit
I have a Google App Engine app which currently displays:
Over Quota
This application is temporarily over its serving quota. Please try again later.
I have a billed account. When I check my quotas, ...
0
votes
1answer
56 views
How to increase App Engine Conversion service quota limit with billing enabled
Apparently Conversion service quota limit is 100 conversions a day whenever you have billing enabled or not.
How to increase this quota?
How to check current quota usage for Conversion service?
1
vote
1answer
223 views
Just want to transfer all data from table in one GAE datastore to identical table in another datastore
I haven't been able to find anything that specifically addresses this problem.
Google App Engine has a somewhat straightforward set of instructions for downloading/uploading data. They specifically ...
5
votes
1answer
2k views
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?
2
votes
1answer
95 views
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);
} ...
0
votes
1answer
208 views
How urlfetch quotas work?
The following quotas are given at GAE docs:
request size: 1 megabyte
response size: 32 megabytes
If my GAE app receives upload file, 1 megabyte quota is applied?
If my GAE app sends (POST) the ...
1
vote
1answer
286 views
How to detect HTTP response size in Google App Engine
I'm writing an app for Google App Engine with Java. A certain servlet produces responses that may go over the 32 megabyte limit. On the development server, this does not seem to cause any issues. On ...
2
votes
1answer
324 views
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 ...
3
votes
1answer
268 views
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 ...
9
votes
1answer
617 views
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.
