我的一個GAE任務隊列請求超出了軟內存限制(下面的日誌)。我對軟內存限制的理解是它允許請求完成,然後在完成後關閉實例。GAE:在「超出軟限制內存限制」後執行是否繼續?
但是,從日誌中看,當我遇到軟內存限制時,執行停止。在內存限制消息後我看不到更多的日誌記錄代碼,並且我檢查了我的狀態,看起來不像請求正在完成。我不確定它是否重要,但是這個請求是在延遲的庫TaskQueue中執行的。
因此,如果一個TaskQueue達到一個軟私人內存限制,執行繼續,直到請求完成或立即停止?是否有可能只記錄日誌代碼?
登錄:
2012-04-11 23:45:13.203
Exceeded soft private memory limit with 145.848 MB after servicing 3 requests total
W 2012-04-11 23:45:13.203
After handling this request, the process that handled this request was found to be using too much memory and was terminated. This is likely to cause a new process to be used for the next request to your application. If you see this message frequently, you may have a memory leak in your application.
@speedplane每個請求的日誌記錄是有限制的,但是你應該在日誌查看器 – 2012-04-12 05:29:03
+1中看到最後的日誌,但是你確定實例被關閉立即下降?我的後端實例已經多次超出其軟內存限制,並且從我所觀察到的情況來看,該實例在一段時間後突然關閉之前仍然可以處理請求。 (至少分鐘) – 2012-04-12 06:45:24
是的,我確定。看看我剛剛發佈的日誌。它似乎崩潰而不打印任何日誌代碼。 – speedplane 2012-04-12 13:23:29