Do activity function calls in the Suborchrestor function count towards the MaxOrchestrationActions in the main orchestrator function?

Ozzy 0 Reputation points
2024-07-23T01:33:41.9766667+00:00

I have a durable function that calls two suborchestrator functions and those in turn, call 2 activity functions each

Durable Orchestrator function()

  • SubOrchestrator A()
    • Activity function call A1()
    • Activity function call A2()
  • SubOrchestrator B()
    • Activity function call B1()
    • Activity function call B2()

Do the activity function calls under the suborchestration functions count towards the orchestrationActions?
That is, does this count as 6 actions (2 calls to suborchestration + 4 activity function calls) or just 2 (suborchestration calls)

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

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.