azure-functions-runtime Questions

2

As per my understanding Azure function will execute In case RunOnStartup = true 1. on startup 2. if a host changed 3. a new deployment happen 4. on schedule time And, In case RunOnStartup = ...

3

Solved

If I want to launch all available functions in the dev environment, I simply do: func host start Is there a way to choose a subset of the available functions, without having to move the intende...
Minority asked 20/5, 2019 at 8:29

3

I have a VS 2017 C# developed Azure Function App deployed on the consumption plan using the VS 2017 Publish mechanism. All functions are timer or Service Bus triggered. I see a status of running in...
Sympathetic asked 10/3, 2018 at 19:13

3

Solved

I am using Azure Functions Preview and want to add a QueueTrigerFunction. The function is defined as such: [FunctionName("QueueTrigger")] public static void Run([QueueTrigger("testqueue1", Conne...

2

Solved

If I read the documentation for maxPollingInterval: The maximum interval between queue polls From here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-storage-queue...
Retrieval asked 13/10, 2019 at 15:59

2

Solved

I have a project with a couple of .NET Core based Azure Functions running on a schedule. One of them runs once every 10 minutes and serves to update view counts similar to how SO tracks question vi...
Pennington asked 7/2, 2020 at 13:7

2

How to set Azure Function Environment Variable for development and production-ready code? ExpressJS already provided Environment config file, how to set Azure Function Environment Variable?
Mercaptopurine asked 7/8, 2019 at 6:6

2

Solved

(If this question is poorly worded, could someone please help me clear it up?) I have an Azure Function (2.0) which relies on some System.Drawing code. I've added a NuGet reference to System.Drawi...

3

Solved

I know it probably has something to do with a misconfiguration, but unfortunately the most info I get is The function runtime is unable to start. Session Id: b939c608ae424150878a55eeac6e7d36 Ti...

2

Solved

Now that .Net Core 3.0 has released what's the story for Azure Functions on core3? When I try to flip a project to <TargetFramework>netcoreapp3.0</TargetFramework> it still reports as ...
Dorthea asked 30/9, 2019 at 21:27

3

I have an Azure Functions (2.0) instance deployed by an ARM Template using Azure DevOps pipelines. I have another pipeline that deploys a functions application to the instance through zip deploy. T...

1

Solved

It is generally recommended to use ConfigureAwait(false) when awaiting async calls when context is not required. Just wondering is there any benefit of using ConfigureAwait(false) in Azure Function...

1

Solved

I have a Timer Azure Function which I execute in VS. Right click on the Azure Function project and Debug. The function has an ILogger log. Inspecting the log object I can see that is has two logge...
Escuage asked 14/2, 2019 at 21:24

1

Solved

Following steps are taken to create Azure Function in Visual Studio Create New Project and choose Azure Function template Select Azure Function V2 (.net code ) and IoT Hub Trigger Code ...
Anana asked 17/1, 2019 at 16:21

1

Solved

We have created a blob triggered azure function to process files placed in blob storage. Load on this blob will not be consistent. For example, for some hours there will be hundreds or even thousan...
Alleluia asked 8/1, 2019 at 13:21

1

Solved

Can someone please point me to the right direction with this; I have setup Azure Functions Authentications, it works fine when I deploy my function to Azure but locally the token is not validated ...

6

Is it possible to include a web.config or app.config file in the azure functions folder structure to allow assembly binding redirects?

3

Solved

I need to delay the execution of the data insertion in the DB2. I need to wait for 10 min for the following DB deployment reason Registration Process Step 1: I made an entry to the table of DB1....
Unlovely asked 16/8, 2017 at 6:26

1

Solved

We are trying to migrate azure function to sdk.functions 1.0.21 and we upgraded everything to 3.0.0-rc1 . The console prompted us that the TraceWriter is obsolete and to use ILogger instead. Howeve...

1

Solved

I have created and HTTP Triggered Azure Function (v2) using .NET Core with the hopes that I can execute the function while passing in some info in the request body and then have the function return...

1

I'm trying to process multi-page TIFs in an Azure Function. The function is triggered by changes in blob storage. When the trigger runs, it calls this: function loadFile(Stream mpTif); Bitmap pag...
Turku asked 17/5, 2018 at 19:47

1

Solved

Summary: I'm authoring a function directly in Visual Studio which by design results in readonly function management in the portal. My question is how does one easily create a function key for said ...

1

Solved

I have an Azure infrastructure: 2 HTTP Functions -> Event Hub -> 2 Functions -> Table Storage (so two http functions sending messages to event hub, and two functions triggered by messages in Even...

2

Solved

I developed my Azure function app locally using VScode and pushed it to azure cloud, I have eventhub-trigger functions, I used to debug my code locally through VScode normally, but now when I run f...
Wilbertwilborn asked 29/10, 2017 at 16:26

1

I’m testing the CPU performance of functions, so I made a function that finds the prime numbers in a number. It is triggered by Azure Service Bus. On my local machine it runs in 350ms. The functio...
Regressive asked 15/8, 2017 at 7:49

© 2022 - 2024 — McMap. All rights reserved.