-
Hello, While performing IDurableOrchestrationClient's GetStatusAsync, by marking showInput, showHistoryOutput and showHistory as true. I'm not able to see the
Is there a way we can get the Input the particular activity/task received? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @cgillum , I`m not sure if this question is being answered previously. |
Beta Was this translation helpful? Give feedback.
-
We have logic that actually removes the TaskScheduled events after the tasks have completed to keep the size of the history smaller. Part of me regrets this decision because there is less visibility available to you, though I fear removing it would be a breaking change for some. It's something I'm considering revisiting either as a breaking change update or as a feature of alternate Durable Functions backends.
This is not possible currently. Part of the reason is the answer above. However, the other part of the reason is that the Durable Task Framework's Azure Storage backend does not store this information in Azure Storage. It wasn't strictly required to be in the history table since it already exists in the queue message and wasn't needed for replay to work. |
Beta Was this translation helpful? Give feedback.
We have logic that actually removes the TaskScheduled events after the tasks have completed to keep the size of the history smaller. Part of me regrets this decision because there is less visibility available to you, though I fear removing it would be a breaking change for some. It's something I'm considering revisiting either as a breaking change update or as a feature of alternate Durable Functions backends.
This is not possible currently. Part of the reason is the answer above. However, the other part of the reason is that the Durable…