Service saying "out of memory"
My project was on a Hobby plan and I've received errors on one of the services mentioning Out of Memory issue - upgraded to Team plan with 32gb but still getting the out of memory error message
I've restarted and redeployed the service - still receiving the error - how can I debug/resolve that issue?
5 Replies
Project ID:
f568f607-e4d1-4517-ba1a-537dc9a8be86
f568f607-e4d1-4517-ba1a-537dc9a8be86
please stand by - it might be unrelated
it says:
Out of sort memory, consider increasing server sort buffer size
meaning your sort_buffer_size
isn't big enough
so you just have to increase it to a bigger size
so just pop this command in your SQL CLI
SET sort_buffer_size = SIZE_IN_BYTES;
the default size is 256Kb, so maybe try 400Kb
1024 * 1024 * 0.4
= 400 kbthank you!
no problem :)