Relative Content

Tag Archive for c#.netasync-awaitazure-functionsazure-durable-functions

Azure Function OrchestrationTrigger Parallel Issue

I am building an Azure Orchestration Function App that has four different functions. The first function is a start task function that removes containers inside a Cosmos DB database. The second function, which I am having a problem with, scans a Cosmos DB container that consists of multiple links and extracts some of the links. Then, it saves the links inside a new Cosmos DB container.

Azure Function OrchestrationTrigger Parrallel Issue

I am building an Azure Orchestration Function App that has four different functions. The first function is a start task function that removes containers inside a Cosmos DB database. The second function, which I am having a problem with, scans a Cosmos DB container that consists of multiple links and extracts some of the links. Then, it saves the links inside a new Cosmos DB container. Inside the Orchestration Function, I am using a for-loop that runs this function 4 times with different parameters, in reality, I will have around 9 or more: I want the App takes A, B, C, D and finishes all. Now it is going back and forth. Thank you for your help