Questions tagged [azure-durable-functions]

Durable Functions is an extension of Azure Functions and Azure WebJobs that lets you write stateful functions in a serverless environment. The extension manages state, checkpoints, and restarts for you.

Durable Functions is an extension of Azure Functions and Azure WebJobs that lets you write stateful functions in a serverless environment. The extension manages state, checkpoints, and restarts for you.

https://learn.microsoft.com/en-us/azure/azure-functions/durable-functions-overview

668 questions
0
votes
1 answer

How to query all Azure Orchestration Instances to determine status for purposes of monitoring?

We are using Azure Functions and the Durable Framework where we "publish" millions files (e.g. to blob storage). We have a "Starter" Function App that calls an Orchestrator to publish a single file. Given the volume of files we are publishing, and…
0
votes
1 answer

Azure Durable Functions - fanout-fanin scalability

We are a skills based development company that creates competitions . The players of this competition can upload photos and rank each other photos to earn points . One of the key requirements of this is to update the competition leader board…
Sabarish Sathasivan
  • 1,196
  • 2
  • 19
  • 42
0
votes
2 answers

Azure Durable Function getting slower and slower over time

My Azure Durable Function(Runtime V3) getting an average of 3M events per day. When it runs for two or three weeks it is getting slower and slower. When I remove two table storages(History & Instances) used by Durable Function Framework, it is…
Sachith
  • 33
  • 6
0
votes
1 answer

How to purge durable entity history with record deletion

I have a doubt and before programming a solution I would like to know if it is right. We use durable entities and we want to delete the records that are saved in the "history" table storage (and I don't want to delete the table vía Storage Explorer,…
0
votes
0 answers

Unexpected character encountered while parsing value in azure durable function

I have a problem with the CallActivityAsync function, I am trying to pass the value (https://www.web.eu/a?b=0123456789) to ActivityTrigger (to GetWebContent) and I still get the error: Unexpected character encountered while parsing value: {. Path…
RoKeFeLeR
  • 1
  • 2
0
votes
1 answer

Azure Durable Functions - HTTP Starter Install

I have been following the Microsoft azure developers online course and i have started an exercise on durable functions First thing i had to do was to use Kudu to install the durable functions package via a package.json file all details are in this…
0
votes
2 answers

How to convert Json into C# object?

I have a specific Json that I want to convert to C# class object: Json: { "Database": "DEMO", "Schema": "PUBLIC", "Warehouse": "TEST_WH", "Query": "Call proc();", "Role": "SYSADMIN", "IsOpsTestRequest": "false", …
0
votes
1 answer

Azure Functions - An attempt was made to access a socket in a way forbidden by its access

I have an ARM template that populates a resource group with a Durable Function (C# .Net Core 3.1) and storage account. The function app contains a durable function that's triggered uses the RabbitMQ binding to collect a message from a queue. This…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
1 answer

Azure Functions - Split queue message

Currently we have a legacy system (.net framework library) where a message is queued in service bus queue. There is windows service, which has multiple message handlers (custom classes for processing a message). We have a logic to split the message…
0
votes
1 answer

How to use same azure functions with different parameters

I have console application for syncing products, orders data for different clients. I am using API's to pull and push data from 1 server to another server with task scheduler. But now I m facing a problem since number of clients are increasing. So…
Jigar Sangoi
  • 159
  • 6
0
votes
1 answer

is it *always* wrong to use an `if`-`else` structure inside a Durable Orchestration?

Is the following if-else structure too non-deterministic for an Azure Durable Functions orchestration?: [FunctionName(FUNC_NAME_ORCH0)] public static async Task RunPlayerYouTubeOrchestration( [OrchestrationTrigger]…
rasx
  • 5,288
  • 2
  • 45
  • 60
0
votes
1 answer

Is using Durable entities a good way to store result of the workflow?

I want my orchestrator function to return an object representing what happened in my workflow, basically some stats about what my workflow has done: users retrieved from an API, users inserted in a database, ... What I was doing until now was to…
TechWatching
  • 1,363
  • 1
  • 11
  • 23
0
votes
1 answer

Azure Function 2.0 Dependency injection error

Before the Azure Function 3.0 my app is working properly but after the Microsoft update. The Function application doesn't work even if I deploy it on Azure it will return the dependency injection error. Why would MS upgrade version that break…
0
votes
0 answers

How to load Access file (.accdb) in Azure Function?

as a new .NET developer I received a task to load access file (.accdb) in Azure Durable function. I've written a pseudo code for console app private static void Main(string[] args) { var myConn = new…
0
votes
1 answer

Durable function based design for long running activity

As per business requirement, we need to on broad customer's data of third party AD in to our application database & then need to establish real time sync with third party AD to sync up with their thereafter changes. To do that, our side APIs and…
191180rk
  • 735
  • 2
  • 12
  • 37