Stop & Kill Info

Hi Team,

I want to know what is the difference how stop and kill will work. I have a process where we have more transactions, which keeps running. So after sometime sending a stop, want to know when will kill and start actually start..

Eg : When trigger runs a job, then a job is in pending state for sometime like 10-15 mins. So since im enabling stop state, then after bot starts , then after 20 mins will it send, or from the time trigger started job..

Can kill start early then, if trigger is calculated from trigger time..

Hope this helps, kill starts only after stop timer is done.

Time calculation starts since job is in pending/running state only.

4 Likes

Hi @ba12235590747

Stop sends a graceful stop signal and allows the robot to complete the current transaction and clean up.
Kill forcefully terminates the robot process if it does not stop.
The Stop and Kill timers start only when the job status becomes Running, not when the trigger fires and not while the job is Pending.

Pending time is excluded from the calculation. Kill will never start earlier due to trigger time.

Hope this will help

1 Like

It wil start the time from job start

1 Like

Hi @ba12235590747

stop sends a graceful shutdown signal after the job starts, allowing current transaction to finish before ending
kill forcefully terminates immediately without waiting. stop and kill timers count from the moment the job actually starts running, not from trigger time. kill can occur earlier only if explicitly sent, otherwise stop completes first.

if the job stays pending for 10–15 mins, the 20-min stop timer begins only after the bot starts executing. kill will not start early unless you explicitly send a kill command; it does not depend on trigger time.

If helpful, mark as solution. Happy automation with UiPath

1 Like

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