Reputation: 41447
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.
Upvotes: 17
Views: 10732
Reputation: 3198
The maximum memory limit for an App Engine instance depends on the instance class that you choose. The default limit is 128 MB. The following classes are currently available:
Edit: Second generation instances have double the memory:
Upvotes: 9
Reputation: 74134
The maximum amount of local memory is not documented.
speculation:
I believe they have not imposed any hard limits because it may depend on your application traffic/load/activity and by other GAE applications.
There's an open issue MemoryError undocumented/hard to predict that you might want to star.
EDIT:
Reading the new Backends documentation here it seems capped to 128MB
Upvotes: 5