为什么 App Engine 任务队列被迫降低处理速度?

Why appengine taksqueues are forced into a lowering processing rate?

在执行任务时,我在 'Task queues' 部分的管理控制台中看到以下内容。这是一个付费应用程序,我准备使用更多资源并为它们付费。任何可能导致它的线索:

"To conserve system resources during peak usage, App Engine is enforcing a processing rate lower than the maximum rate for this queue"

您的应用未正确缩放。

将鼠标悬停在控制台屏幕右上角的问号上。您很可能会看到如下工具提示消息:

"App Engine is enforcing a processing rate lower than the maximum rate for this queue either because your application is returning HTTP 503 codes or because currently there is no instance available to execute a request."

因此,请检查您的日志中是否存在 503。检查您的资源设置以确保您的应用程序可以正确处理流量。