使用 Gearman,我可以检查作业失败了多少次吗?

发布于 2024-11-01 17:41:30 字数 127 浏览 0 评论 0原文

使用 Gearman,我可以检查作业失败了多少次吗? 例如:如果一项工作失败,我希望它重复。如果作业失败 5 次,则将其删除。我必须使用哪个功能。

示例:如果我想排队从服务器下载文件。如果该服务器宕机,那么工作就无法完成。

With Gearman , can i check job failed how much times ?
example: if a job failed , i want it to repeat . if job failed 5 times then delete it. I must use which function.

example: if i want queue up to download file from a server. If that server is down, then job can't be finished .

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

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

发布评论

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

评论(1

客…行舟 2024-11-08 17:41:30

简而言之,不。您无法查询作业失败了多少次。
然而,该信息位于 gearmand 内部,但还没有 API 可以访问它。

我认为您正在寻找的选项是

-j, --job-retries

这是 gearmand 服务器在启动时采用的参数。它指定作业在被丢弃之前可以重试的次数。它是一个全局设置,不能针对不同的作业类型进行不同的配置。它也无法从 gearman 客户端进行设置或更改。

In short, no. You can't query how many times a job has failed.
However the information is there inside gearmand, but there is no API to access it yet.

I think the option you are looking for is

-j, --job-retries

This is an argument the gearmand server takes when starting. It specifies the number of times a job can be retried before being discarded. It is a global setting and cannot be configured to be different for different job types. It also cannot be set or changed from a gearman client.

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