Questions tagged [dotnet-isolated]
37 questions
13
votes
2 answers
Difference .net 6 and .net 6 isolated for Azure Function Apps
With Azure functions what is the difference of using .net 6 and .net 6 isolated?

Mark Homer
- 960
- 6
- 15
4
votes
4 answers
WorkerConfig for runtime: dotnet-isolated not found
Created a .NET 6.0 Isolated Function (with HTTP Trigger) in Visual Studio 2022. But when running/debug this function locally, get following error:
Microsoft.Azure.WebJobs.Script: WorkerConfig for runtime: dotnet-isolated not found. Value cannot be…

sulmanm
- 41
- 1
- 4
3
votes
0 answers
How do you abandon a message in a dotnet isolated Servicebus triggered function?
Is there a best way to abandon a message in an Azure dotnet isolated function app? I'm currently throwing an exception to force the function to complete unsuccessfully as there is no way to access a MessageReciever like you do in an in-process azure…

AJames
- 59
- 6
3
votes
1 answer
Azure function dotnet-isolated v4
I have recently started my C# journey so bare with me...
so my issue is that after installing azure-functions-core-toolsv4 (mac using brew) I was finally able to see why Rider (which use the same as a plugin) just exited with error (Process finished…

Arleth
- 51
- 1
- 6
2
votes
1 answer
Configuring NET 6 Azure Function App Healthchecks
I'm struggling to find any up to date documentation on how to setup healthchecks in Azure for a .NET 6 Core function app.
The app is running in DOTNET-ISOLATED, within an app service plan (not consumption).
This documentation explains how to setup…

Phil S
- 642
- 8
- 19
2
votes
1 answer
Timeout attribute in azure function isolated 6.0
Recently I have moved my azure function from 3.0 to 6.0 Isolated, Everything works well only Timeout attribute which we are using right now Microsoft.Azure.WebJobs.TimeoutAttribute
My code is looks like right…

Gautam Parmar
- 686
- 8
- 18
1
vote
1 answer
How to debug net7 signalr azure functions worker service?
I am using dotnet 7 isolated functions
I installed package Microsoft.Azure.Functions.Worker.Extensions.SignalRService
While developing locally, the negiotate function seems to be called.
However, I can not get my web client (angular) to invoke any…

hannes neukermans
- 12,017
- 7
- 37
- 56
1
vote
0 answers
Is there any way to know target method in a middleware of azure function isolated app
I have a .NET 6.0 isolated azure function app. I want to implement custom JWT token validation. I am following this blog and created Authentication middleware for validating tokens. However there is a piece of code which uses reflection to get…

aksvinu
- 147
- 10
1
vote
1 answer
Service bus-triggered Azure function failing with System.Threading.Tasks.TaskCanceledException
We have a very simple .NET isolated v4 Azure function app running .NET7 that has three functions all using the ServiceBusTrigger.
We've found a small proportion of executions are failing with the following…

Tom Troughton
- 3,941
- 2
- 37
- 77
1
vote
1 answer
Azure function queue trigger distributed tracing
I have a .NET isolated function with a queue trigger.
When triggering that queue from the storage explorer or from another function using a QueueServiceClient, a new operationId is made up. Thus I cannot correlate it, it seems.
Is it possible to do…

XWIKO
- 308
- 4
- 13
1
vote
0 answers
Azure function does not scale
Today we met a problem with our azure function after redeploy a new version. We use Azure Function v4, .NET 6 and isolated process. Function is on consumption plan. Function includes about 150 http-trigger functions. Usually function scales for some…

Veranika
- 11
- 1
1
vote
1 answer
Schedule a queue triggered azure function in Azure Function 4
In Azure functions 4 Isolated Process, I'm using queue triggered functions and multi-output bindings in my workflow. Everything works great until I try to figure out how to delay one of the work items via A VisibilityTimeout in the output binding.…

Angelo
- 954
- 2
- 8
- 15
1
vote
1 answer
Output Multiple Objects to CosmosDB with Azure Function (Isolated Process)
I cannot seem to find any documentation on how to output multiple documents to Azure CosmosDB from an Azure Function isolated process.
I understand "Because .NET isolated projects run in a separate worker process, bindings can't take advantage of…

user1477388
- 20,790
- 32
- 144
- 264
1
vote
0 answers
Running Azure Function Net5 (dotnet-isolated) in Linux Container generate error - System.IO.DirectoryNotFoundException: /home\site\wwwroot/
I have a Azure Function App running in a Linux Container with the following Specs
net5.0
v3
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated"
The function runs fine…

O'Neil Tomlinson
- 702
- 1
- 6
- 28
1
vote
0 answers
How to using strings in blob triggers over isolated Azure Functions
I'm using an Azure Function v4 (isolated process) and I have a Blob Trigger Function that receives "string", instead a "Stream" because currently are not supported.
How can I transform this string to a Stream.
The string should be an image that I…

Sergio
- 175
- 5
- 21