laravel-queue-rabbitmq icon indicating copy to clipboard operation
laravel-queue-rabbitmq copied to clipboard

Autocreate queue

Open asvechkar opened this issue 3 years ago • 1 comments

When I change parameter RABBITMQ_QUEUE, I get error: queue *** dosn't exists. How to make new queue automaticaly?

asvechkar avatar Dec 01 '21 18:12 asvechkar

This feature have a PR opened #453 but the package owner still out of attend the incoming PR :cry:

soulcodex avatar Dec 09 '21 09:12 soulcodex

Seems to have been removed between v9 and v10.

Other laravel queue libraries (e.g. sqs) do not auto generate queues as well.

My recommendation is to make sure you define your queues as part of your deploy using the rabbitmq:queue-declare artisan command.

M-Porter avatar Jan 31 '23 19:01 M-Porter

Publishers: are responsible for creating queues. Consumers just consume when queues exist with messages.

Consumers must die when there is nothing to consume.

adm-bome avatar Mar 14 '23 09:03 adm-bome