cron 是全局执行的还是每个应用程序实例执行的(即依赖于负载)?
如果我在 App Engine 中定义一个 cron 来执行“每 10 分钟” - 这是否意味着:
(a):
“每个应用程序实例每 10 分钟执行一次(即依赖于负载)”
(b):
“在应用程序的所有实例中全局每 10 分钟一次”(即独立于负载)
?
If I define a cron in App Engine to execute "every 10 minutes" - does that mean:
(a):
"every 10 minutes per app instance (i.e. load dependent)"
(b):
"every 10 minutes globally across all instances of the application" (i.e. load independent)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
全球范围内每 10 分钟发生一次。请注意,间隔是指作业之间的时间。因此,作业 2 将在作业 1 完成后 10 分钟开始。如果您的作业需要长时间运行(例如,如果需要运行 5 分钟,那么如果您指定“每 10 分钟”,它实际上会每 15 分钟启动一次),这可能很重要。
It is once globally every 10 minutes. Note that the interval refers to the time between jobs. So job 2 will start 10 minutes after job 1 finishes. This might be important if your job is long-running (e.g., if it takes 5 minutes to run, then it will actually start every 15 minutes if you specify "every 10 minutes").