Questions tagged [azure-function-app]

A function app is the container that hosts the execution of individual functions in the serverless framework Azure Functions.

A function app is the container that hosts the execution of individual functions in the framework.

Create a function app from the Azure portal

574 questions
3
votes
1 answer

Is it possible to add an Azure Functions project to a .Net Core Api Solution and use a common repository?

Our team has an existing .Net Core API solution. I'd like to add a series of function apps in a V2 functions project. This would allow reuse of the existing database repositories. Is this possible / rational?
2
votes
2 answers

Deploying Azure Function (isolated process) to Azure using Azure DevOps is not working

Currently Microsoft has introduced a new way to treat azure functions called isolated process and it's the only way to run Azure functions on .NET5. I am trying to deploy a function app that is already running correctly on my local machine to Azure…
Marzouk
  • 2,650
  • 3
  • 25
  • 56
2
votes
1 answer

Have separate Dequeue Count for function in same function app

I have a function app with multiple functions that triggers on storage queues. If af function throws an exception you can configure it to retry in the host file by setting maxDequeueCount to the numbers of times you would like to retry. But what if…
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104
2
votes
1 answer

What happens to a queued message from a Azure Log App + Azure Queue?

Question Does the Azure Queue step (within the Logic App) auto-dequeue messages? Here's some context: I have a logic app which is setup to insert a string into an azure queue. Upon being enqueued, a function app is invoked via a queue trigger. By…
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
2
votes
1 answer

Microsoft.Azure.WebJobs.Extensions.EventGrid: Object reference not set to an instance of an object

I have an azure function V3 (consumption plan, windows, .net 3.1), also using dependency injection. The function was working fine, published many time before. After the last publish, it was working fine and did too many requests. suddenly I'm…
2
votes
2 answers

why Extra subnet for VNET integration for app services

Why do we have to create a new subnet or add the app service to an empty subnet in our vnet? I don't understand the reasoning since I'm trying to use my app service (function app) as a reverse proxy to access the resources in the vnet.
2
votes
2 answers

Value cannot be null. (Parameter 'uriString')

On deploying an Azure function, I see the following exception in Application Insights: I have the following in config setting: The key vault contains the service bus connection string: What am I missing?
user989988
  • 3,006
  • 7
  • 44
  • 91
2
votes
1 answer

Encountered the "Error calling sync triggers (TooManyRequests)" error when running "func azure functionapp publish" for a Python Function App in Azure

I encountered the Error calling sync triggers (TooManyRequests) error when running func azure functionapp publish... for a Python Function App in Azure. Encountered this error consistently after trying to publish.
James Shapiro
  • 4,805
  • 3
  • 31
  • 46
2
votes
2 answers

Xero API Webhook Server using Python and Azure functions

I am working with Azure Function Apps to receive webhooks from Xero for processing. However, I am getting stuck with my HASH not being computed correctly. I think it something to do with the way Python is processing the Body Request. Here is the…
2
votes
1 answer

How can you deploy an Azure Function from within a Python script

In the same way that you would deploy a storage account or a upload a blob file from Python. I am essentially looking for the Python equivalent of the following bash commands az functionapp create --resource-group $RESOURCE_GROUP_NAME --os-type…
2
votes
2 answers

what are the consequences of the Azure Function app restart action?

What will happen to the ongoing running process when the azure function app restart? The process will be killed or pick again after the restart of the azure function app if automatic retry is on in the function app.
Jay Dadhaniya
  • 171
  • 4
  • 15
2
votes
3 answers

Error: Error: Failed to deploy web package to App Service. Bad Request (CODE: 400)

I am using the Devops release pipeline to deploy new releases to my function apps. However a few days ago, the release pipeline stopped working and I continue to receive the following error message on deployments: Error: Error: Failed to deploy web…
user3918443
  • 105
  • 1
  • 13
2
votes
1 answer

Avoid severity-level-0 logging in application insights from function app

In my azure solution, I have 1 app service and 2 function apps logging to 1 application insights instance. In a specific environment I want to reduce the logging load, so I wanted to get rid of severity-level-0 logs. I am currently focusing on one…
2
votes
2 answers

How to read a config json file inside a Azure Function app

I have a json Config file which I would like to read from inside the Azure function. We have by default localsettings.json file but I need a one more Json config file to read in my function code. Whats the best way, till now for my other projects I…
Ankit Kumar
  • 476
  • 1
  • 11
  • 38
2
votes
1 answer

Error Pulling image from ACR in Azure Function

Please am trying to deploy an image in Azure Container Registry(ACR) on my Function App, but am not able to do it. I pushed the latest image from pc to the ACR after creating it. Also the admin under access key is enable. Please advise how to…