using helper functions along with durable functions

na 146 Reputation points
2022-05-05T10:34:23.897+00:00

Is there any issue with using helper functions/methods along with durable functions.

e.g. if i have 2 durable functions, both have to save a value to a database.
There is a helper method that the durable functions call that saves the value to the database. This method is not a durable function, its likely private within the function app.

Based on how durable functions seem to operate, I want to be sure this practice is acceptable before developing.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,909 questions
0 comments No comments
{count} votes

Accepted answer
  1. MughundhanRaveendran-MSFT 12,506 Reputation points
    2022-05-09T16:45:00.77+00:00

    @na ,

    Thanks for reaching out to Q&A.

    There doesn't seem to be any problem with this approach, it should work as expected. However, it would be more appropriate, if you could make the helper function as an activity function that orchestrator or sub orchestrator would call as a part of its flow. This would be easier for logging and tracking purposes.

    https://learn.microsoft.com/en-us/azure/azure-functions/durable/durable-functions-types-features-overview#activity-functions

    I hope this helps!

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.


0 additional answers

Sort by: Most helpful

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.