Dynamic Laravel Queue Connection

I have a 'proposal' table on my database, each proposal's row will generate a photo album (for all users) on certain time.

I set a queue to generate per photo album, so there's a thousand jobs in my jobs table at database.

to generate 1 photo album takes 4-10 seconds because there's an algorythm process.

I create 8 proposals, so the last photo album will take a long time to be generated, could someone have a solution for me?

Is there a way to create a multiple queue connection that run in the same time? lets say i have 5 proposal, so there's 5 queue connection, so each proposal has it's queue connection so the generate process will be done on time.

Thank you.

Upvotes: 0

Views: 775

Answers (1)

sisve
sisve

Reputation: 19791

The documentation mentions the Supervisor Configuration, and the example configuration has numprocs=8.

In this example, the numprocs directive will instruct Supervisor to run 8 queue:work processes [...]

It sounds like you're running with numprocs=1 which will only run one queue worker, thus only processing one job at a time.

Upvotes: 1

Related Questions