💡 Feature description
DurableOrchestrationClient.get_status_by to support all parameters available on the API.
Many parameters are missing, including:
- instanceIdPrefix
- top
- showInput
- showHistoryOutput
The parameter instanceIdPrefix alone is important because it allows the safer implementation of the Durable Function Singleton pattern.
The safer implementation of that pattern is to append a random suffix to the static instanceId. This ensures that even in case of a race condition, when more than one orchestrator is running at the same time, these orchestrators will have different instance IDs.
💡 Feature description
DurableOrchestrationClient.get_status_byto support all parameters available on the API.Many parameters are missing, including:
The parameter
instanceIdPrefixalone is important because it allows the safer implementation of the Durable Function Singleton pattern.The safer implementation of that pattern is to append a random suffix to the static
instanceId. This ensures that even in case of a race condition, when more than one orchestrator is running at the same time, these orchestrators will have different instance IDs.