Azure durable function

Akash kumar 1 Reputation point
2021-07-03T03:02:50.767+00:00

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
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,991 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. mahmoud youssri 11 Reputation points
    2021-07-04T19:16:56.793+00:00

    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

    2 people found this answer helpful.
    0 comments No comments

  2. JayaC-MSFT 5,531 Reputation points
    2021-07-14T10:49:58.913+00:00

    Hello @Akash kumar , Please let us know if the answer from @mahmoud youssri 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.

    2 people found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.