1

For Larvel Vapor we can define multiple queues

Exmaple form official docs:

id: 2
name: vapor-laravel-app
environments:
    production:
        queues:
            - emails
            - invoices

Also can define queue concurrency

Example form official docs:

id: 2
name: vapor-laravel-app
environments:
    production:
        queue-concurrency: 50
        build:
            - 'composer install --no-dev'

Can we define concurrency per each queue separately?

Something I'm expecting:

id: 2
name: vapor-laravel-app
environments:
    production:
        queues:
            emails
                queue-concurrency: 50
            invoices
                queue-concurrency: 20

1 Answer 1

2

Reply Received From Official Laravel Vapor Developers

It is not possible at the moment

2022-05-10

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.