question

Akashkumar-1455 avatar image
0 Votes"
Akashkumar-1455 asked JayaC-MSFT answered

Azure durable function

Developing a azure durable function to manage online subscription process where we can use external api to query current promotions. Query results can take upward of 5 mins.you need to periodically check for query results.how to do it.

azure-functions
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

JayaC-MSFT avatar image
2 Votes"
JayaC-MSFT answered

Hello @Akashkumar-1455, Please let us know if the answer from @mahmoudyoussri-9323 helped in this case. If yes, please "Accept the answer" and "Up-vote" so that it helps others in the community. If you are still encountering the issue, I would request you to open a support ticket with Microsoft Support if you have a subscription which allows you to do so. Otherwise ,you can send an email with subject line “Attn:Jaya” to AzCommunity[at]Microsoft[dot]com referencing this thread along with the subscription id.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

mahmoudyoussri-9323 avatar image
2 Votes"
mahmoudyoussri-9323 answered

You should scale the performance of your Durable Functions
by using payloads from external events that are also stored in the History table. Because the full history is loaded into memory every time an orchestrator needs to execute, a large enough history can result in significant memory pressure on a given VM. The length and size of the orchestration history can be reduced

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.