2

TL;博士:

如何解决 Appengine 中的这个错误:有时is_shutting_down返回 False,然后在一两秒钟内,实例被关闭?

细节

我在 Google Appengine 应用程序 (Python) 上有一个后端实例。后端实例用于生成报告,有时需要几分钟甚至几小时才能完成。

为了处理意外关闭,当返回 True时,我正在观察runtime.is_shutting_down()报告的中间状态并将其存储到 DB中。is_shutting_down

这是我检查它的代码部分:

from google.appengine.api import runtime

#...

def my_report_function():
    #...
    # Check if we should interrupt and reschedule to avoid timeout error.
    duration_sec = time.time() - start
    too_long = MAX_SEC < duration_sec
    is_shutting_down = runtime.is_shutting_down()
    log.debug('Does this report iteration need to wrap it up soon? '
              'Too long? %s (%s sec). Shutting down? %s'
               % (too_long, duration_sec, is_shutting_down))
    if too_long or is_shutting_down:
        # save the state of report, reschedule next iteration, and return

有时它有效,但有时我在 Appengine 日志中看到以下内容:

D 2013-06-20 18:41:56.893 Does this report iteration need to wrap it up soon? Too long? False (348.865950108 sec). Shutting down? False 
E 2013-06-20 18:42:00.248 Process terminated because the backend took too long to shutdown.

runtime.is_shutting_down()显然,从我检查返回的值到 Appengine 终止后端的时间之间,30 秒的超时还没有过去。

有谁知道为什么会发生这种情况,以及是否有解决方法?

先感谢您!

4

1 回答 1

1

这里有来自 Google IO 的演示代码http://backends-io.appspot.com/

包含的 counter_v3_with_write_behind.py 演示了一个模式:

通过'/_ah/start'设置关闭挂钩

runtime.set_shutdown_hook(something_to_save_progress_and_requeue_task)

看起来您的代码是“您现在是否正在关闭,如果没有,请去做一些可能需要一段时间的事情”。这种模式应该听“尽快关闭,否则你会失去一切”。

于 2013-06-27T12:40:11.883 回答