Queue concept

Hi Team,

We have 50-300 records in excel file. We have check the count of records , if count is < 50 then it should be processed by 1 BOT . If count > 50 then it should be processed by 2 BOT. How I can design a solution for same.

Regards,
Shirish

1 Like

we can create separate process for each of this scenario rather creating a bot
–the steps involved are as follows
–hope you have the count of rows in the datatable
–now use a if condition and check with row count
if true it will go to THEN part where we can use INVOKE WORKFLOW FILE ACTIVITY where we can call the process we need when the above condition is satisfied or will go to else where we can use INVOKE WORKFLOW ACTIVITY with the other process called

Cheers @Shirish

How we can add no of BOTs for processing ? i.e. 1 or 2 or 3

Can we use start job activity ? @Palaniyappan

1 Like

yah that would work either triggering the job
but make sure that the process we run is connected to orchestrator
Cheers @Shirish