Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GAE Soft Memory Limit

is there a way to catch the soft memory limit warning in google ? I am not referring to the Memory Exceeded Error of 300 MB but the warning message which appears when you cross 180 MB memory limit.

01-06 07:11PM 08.597
Exceeded soft memory limit with 247.434 MB after servicing 1 requests total

I want to catch this warning when it shows up in my code and start deleting some memory

like image 823
Sam Avatar asked Jan 25 '26 09:01

Sam


1 Answers

No exception is thrown in your code when this happens - it's logged by the runtime after your request finishes executing, so there's no way to 'catch' it.

like image 81
Nick Johnson Avatar answered Jan 28 '26 00:01

Nick Johnson