You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a scheduler using DTF, CreateScheduledOrchestrationInstanceAsync(Type orchestrationType, string instanceId, object input, DateTime startAt) is used to schedule orchestration. The issue is that once orchestration is scheduled and in Pending state, is it possible to override scheduled time. Have tried to use CreateScheduledOrchestrationInstanceAsync again with different time and same instanceid but then orchestration is getting executed at both the times (old and new/updated)
any idea on how to fix this?
The text was updated successfully, but these errors were encountered:
vipul0517
changed the title
Is it possible to cancel(or reschedule at different time) orchestration when in Pending state?
Need help : Is it possible to cancel(or reschedule at different time) orchestration when in Pending state?
Jan 6, 2022
Just for my curiosity, which orchestration service are you using? I ask because this behavior can vary between the different implementations.
To answer your question, I don't believe it's possible to reschedule an orchestration when it's in the Pending state. I think this would need to be a new feature that gets implemented by each orchestration service.
AzureStorageOrchestrationService, have tried to use ForceTerminateTaskOrchestrationAsync(string instanceId, string reason) but it can terminate/cancel only running orchestration, is that correct?
We have a scheduler using DTF, CreateScheduledOrchestrationInstanceAsync(Type orchestrationType, string instanceId, object input, DateTime startAt) is used to schedule orchestration. The issue is that once orchestration is scheduled and in Pending state, is it possible to override scheduled time. Have tried to use CreateScheduledOrchestrationInstanceAsync again with different time and same instanceid but then orchestration is getting executed at both the times (old and new/updated)
any idea on how to fix this?
The text was updated successfully, but these errors were encountered: