Run Process through Multiple Queues

Hi All,

I need the BOT to pick up Four queue items at one go so that the execution of the process becomes faster.
Can anyone suggest here?

1 Like

Hi @suzzkr ,

You can have additional bots to process the queue items. Does all this queue items should be processed with the same business logic or different?

@suzzkr

In get transaction data you can conditions and check multiple queues…

Or anither and best way would be to schedule multiple bots by passing different queue names…this way it is more flexible

Cheers

For this do i need to create multiple performers of the same process?

@suzzkr

No the performer would be same…in the input arguments you will pass the queue name from orchestrator arguments options…

Cheers

1 Like

can you pls help by providing sample or something in image?

Because if performer is same then at one 1 go…BOT will run for 1st queue and performer will become busy and next queues will have to wait…right?

@suzzkr

If you see in re framework…you have an input for queue name…so if youw ant to run on teo queue…then we will triggwr two processes each with one queu name…so the first bot processes iteam from queue 1 and second one processes items from queue 2

Cheers

can u please share a sample on how to implement it?

@suzzkr

You only need to create in argument in your main workflow…

and the setting or the queue values are to be passed from orchestrator when you create a trigger or start the job

Hope this helps

cheers