作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的项目中使用 Beanstalkd 消息队列进行 ffmpeg 处理视频。我用 pheanstalk beantalkd 队列的 PHP 客户端。我的 worker 看起来像:
...
// get latest job
$job = $this->pheanstalk->reserve();
// get the data from the job
$jobData = unserialize($job->getData());
// process job, giving a result
$result = $this->task($jobData);
if ($result) {
// success = delete
$this->pheanstalk->delete($job);
} else {
// failed = bury
$this->pheanstalk->bury($job, 1024);
}
...
// video processing
$processVideo = 'ffmpeg -vpre libx264-max -y -i inputfile ...';
shell_exec($processVideo);
// taking screenshots from video
...
最佳答案
根据mailing list message ( this thread 的一部分),' DEADLINE_SOON
' 消息只有在您提出保留请求时才会被发回,当作业的 TTR 即将到期时。
如果您保留一份工作,并且正在处理它(而不是收集许多其他工作),您将不会看到截止日期消息 - 您不是在寻找它,如果是,那么您可能不会首先处理文件。
将 TTR 设置视为第二次机会,如果 worker 有问题并且没有问题 touch
或 delete
它接手的工作。将超时设置至少与您期望的处理时间一样长,然后添加更多作为安全余量。为一个复杂的 Action 等待一段时间,而不是一遍又一遍地在同一个 Action 上失败。如果您将 TTR 设置得太低,您将继续获得相同的文件,并且您将继续让 TTR 过期。
关于php - 在 php 中捕获 beanstalkd DEADLINE_SOON 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5326227/
我在我的项目中使用 Beanstalkd 消息队列进行 ffmpeg 处理视频。我用 pheanstalk beantalkd 队列的 PHP 客户端。我的 worker 看起来像: ... // g
我是一名优秀的程序员,十分优秀!