In orchestrtaor the bot ran 1st time and failed to process queue items so status f queue items is failed. Now if i run the bot again will it take those failed items again or not.
Hi @Abh
Failed queue items in Orchestrator are not picked again when the bot runs the next time, because their status is already marked as Failed (i.e., processed). The robot only picks items with New status.
To process failed items again, you can:
• Use Retry mechanism (Auto Retry in queue settings or Retry Scope in workflow)
• Manually click Retry in Orchestrator, which creates a new queue item
• Or re-add the failed items into the queue using automation/API
So, just rerunning the job will not process failed items unless you explicitly retry or requeue them.
If solution works for you please mark as solution
Thanks