应用程序引擎任务可以获取其运行次数吗?

发布于 2024-09-08 23:17:43 字数 197 浏览 2 评论 0原文

我每小时在 Google App Engine 中运行数千个任务,其中大约 0.1% 即使在多次重试后也会失败。理想情况下,我希望他们停止尝试并退出。然而,由于应用程序引擎的设计,他们似乎只是一次又一次地尝试。我知道有一个退避时间,该时间会随着每次不成功的执行而增加,但我希望它们在 n 次重试后退出。

我可以以某种方式完成这个吗?任务可以获取其运行失败的次数吗?

I am running thousands of tasks per hour in Google App Engine and around .1% of them are failing even after multiple retries. Ideally, I want them to stop trying and exit. However, due to app engine's design they seem to be just trying again and again. I know there is a backoff time which increases with every unsuccessful execution, but I want them to exit after n retries altogether.

Can i accomplish this somehow? can a task get a count of the number of times it has unsuccessfully run?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲欢浪云 2024-09-15 23:17:43

是的,您可以通过阅读 X-AppEngine-TaskRetryCount HTTP 标头。

Yes, you can get a count of the number of times your task has been retried by reading the X-AppEngine-TaskRetryCount HTTP header.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文