dongyoucha0645 2017-04-19 19:11
浏览 114
已采纳

当消息发送回SQS时,Laravel队列工作程序作业失败

I have set up my Laravel application to retrieve messages from an SQS queue. Everything works fine during normal operation: Messages are added to the queue when a queueable job is dispatched, and the queue worker grabs the message from SQS and runs the job successfully.

However, I run into problems whenever I use the "View Messages" feature in the SQS web console. Here are the steps to reproduce:

  • Go into the SQS web console
  • Select the queue
  • Run "View Messages" to get a live view of messages coming in
  • After a while, stop polling
  • Messages that were being intercepted are now released
  • Queue worker grabs the messages but they all end up as failed jobs
  • Run artisan queue:retry all
  • Failed jobs now run successfully

Why is this happening? I'm running Laravel 5.2.41 on PHP 5.6.

  • 写回答

1条回答 默认 最新

  • dsgdhtr_43654 2018-05-08 20:25
    关注

    I figured out what was happening:

    • When messages are "intercepted" to be shown in the live view, they are taken out of the queue.
    • When you close the live view, the messages are re-added to the queue. The message metadata is then updated with the number of times the message has been received.
    • Since my queue worker was set to only retry once, then at this point the message has exceeded the number of retries (aka times received) and it marks the job as failed.

    To solve this, I added an extra retry "buffer" to my queue workers:

    php artisan queue:work redis --tries=3
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏