Share via

Azure Function Apps trigger

Niren Adhikary (NAD) 146 Reputation points
2022-08-02T12:26:52.127+00:00

Hi,

We have multiple functions within a function app that we want to run in the sequence.

Is there a way where we can coordinate the execution of the functions, for example one function starts only after another one is executed successfully.

We explored durable functions but then it seems to be an issue for other standalone functions.

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Nasreen Akter 10,896 Reputation points Volunteer Moderator
    2022-08-02T20:10:50.12+00:00

    Hi @Niren Adhikary (NAD) ,

    There are some options you can do:

    • you can create a LogicApp to call the functions in sequence.
    • if you have a DataFactory, you can create a Pipeline to call the Functions in seq
    • you can create a Durable Function (you mentioned this already)

    Thanks!

    Was this answer helpful?


Your answer

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