Need a way to create new jobs when process is running already for queue based trigger

Hello All,

In queue based trigger for each new queue item we create or try to create a new job and the minimum limit for “Maximum number of pending and running jobs allowed simultaneously” could be set is 1.
I am looking for a way to not to create a job for new queue items that appear during runtime. Is that possible?

Alternately, is it possible to process only one queue item per job created, that is the queue item that triggered the job will process only that one and not any other queue item even if they are in new state. This will be solved if I connect process to end state but is there any other way to do this if it is a need to use RE framework only?

Hi @SnehajitDas

As you said connect process to end or use a if condition in your get transaction data and use in_TransactioNumber>1 then set the out_TransactionItem to nothing

cheers

Hi @SnehajitDas

If you don’t want to create another process then select only one bot so only that bot would be processing the item

cheers