ListInstancesAsync not returning all instances when InstanceIdPrefix is passed #2011
Unanswered
bhuvesh321
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Can you share the code you wrote that generates the queryCondition? I was not able to reproduce this problem, even if I use your exact same InstanceIdPrefix value (I got all 5 instances back). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are using Azure durable functions with custom deployment on service fabric servers. We are using same instanceId prefix for parent orchestration and suborchestrations but while querying the table using ListInstancesAsync with InstanceIdPrefix, its returning only 1 parent orchestration instance. Other sub orchestration instances are not returned. Can you please help?
More details:-
In the attached screenshot, there are multiple instances with same prefix. Only 1 record is returned after passing 2 below values in OrchestrationStatusQueryCondition.
InstanceIdPrefix - 0abb6ebb-d712-453a-97c4-6c7c1f78f49f
TaskHubNames -
OrchestrationStatusQueryResult results = await orchestrationClient.ListInstancesAsync(queryCondition, cancellationToken).ConfigureAwait(false);
I have recently upgraded to latest DTF version 2.6.0. Please let me know if you need more information.
Beta Was this translation helpful? Give feedback.
All reactions