I want to trigger process in gap of 1 hour and process should only run for an hour

For example I want to run form 6-7 am then 8-9 am then 10-11, like this. How can we achieved this? Also If I have dispatcher and performer separate and dispatcher needs to be run twice in 1 hour process run time. how can we achieve this.

Hi @jast1631

Hope it helps!!

There should be gap of one hour in each run for example 6-7 bot should run - than 8-9 and 10-11 like this also. Job should stop in one hour even though data is there in queue

Okay got it… @jast1631

Use the Time Triggers to schedule the process. Check the below steps,
→ Create a new Time Trigger in the Time Triggers tab in Orchestrator. In the Frequency option select the Hourly option and give 2 at Repeat every field.
→ Then Turn on the Toggle of scheduling ending the job execution option.
→ Then Select the Stop from dropdown, give 1 in hours field.

Check the below image for better understanding,

It will run for every 2 hours and after one hour it will stop the Performer. Select the Performer code in Process Name.

Hope it helps!!

This will work if setit for 50 min ? and Will it be smooth stop or force stop ? The entry which is being processed at that time will be processed properly right?

Yes you can instead of giving 2 in hours give 50 in the minutes field.

If the process has to be stop smoothly then we are recommend to use the Stop option then it will stop the bot after 50 minutes… @jast1631

Hope you understand!!

Stop option as in stop signal with condition of 50 min time span in code it self ?
If we add job stop like this it will also send stop signal and than it should stop smoothly. Please correct me if there is gap in understanding

In the Time Triggers when you give 50 minutes and stop option in schedule end of job execution. It will send signal to the should stop activity in the code, when bot came to execute the shouldstop activity it stop executing and went to end process state.

Hope you are clear with this… @jast1631

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.