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
1
vote
1 answer

Sending JSON to privateEndpoint azure with azure function app VNET integration

I have a function app that is reversed proxied to a private endpoint which is also a function app. I'm trying to use this proxy to send JSON to the private endpoint so it can add the JSON to the DB. But for some reason, it doesn't do this, however,…
Amir
  • 69
  • 1
  • 5
1
vote
2 answers

Azure Functions concurrency: maxConcurrentRequests vs FUNCTIONS_WORKER_PROCESS_COUNT

How to see difference between maxConcurrentRequests vs FUNCTIONS_WORKER_PROCESS_COUNT in terms of concurrency and limits for Azure Functions. We can find some definitions at…
1
vote
1 answer

Exception "Failed to create an app in Azure Active Directory" when setting up a build pipeline for a Python Azure Function App

I am trying to setup a build pipeline for an Azure function app coded in Python. However, I get the exception: Failed to create an app in Azure Active Directory. Error: Insufficient privileges to complete the operation. Ensure that the user has…
1
vote
3 answers

Is it possible to deploy multiple azure functions from different projects can be deployed in single Azure function app via Azure Devops pipeline?

I have multiple azure functions in different .Net projects. I'm not sure whether we are able to deploy multiple functions from different projects into a single azure function app via Azure DevOps. Generally, we will deploy azure functions as zipping…
1
vote
0 answers

azurerm_function_app transient error - "Operation not supported: RepoUrl VSTSRM is not supported"

I have created an azure function app via Terraform and then deployed source code of function app into it via Azure DevOps CI & CD pipelines. Next, I have deployed the Terraform scripts with some modifications then I am getting the following error…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
1
vote
1 answer

Accessing nested json app setting in azure app setting returns null

I have an Azure Functions project and locally there is a local.settings.json file with this JSON: "PushFile": { "Location": "value", "Port": 22 } And I can get the values like…
andrewb
  • 2,995
  • 7
  • 54
  • 95
1
vote
1 answer

Function App unable to fetch connection string

I have below Folder structure All below are in a single solution:- API project (All API related Controller,Helper, Extension Methods) BLL Class library Project(for all business Layer logic) DAL Class Library Project(Here the EF Core Db context…
1
vote
3 answers

Azure Function using Python - Blob trigger not firing

I am working on one of the Azure Function which is written in Python and it should get called based on Blob trigger event. However, the trigger is not firing when I am uploading a zip file in a blob container to which azure function is supposed to…
1
vote
2 answers

Azure Function - Unzip password protected file using python code

I am trying to unzip password protected file which is stored on Azure Blob container. I want to extract it on Azure Blob itself. I have created a Azure Function App using Python (currently it is Timer Control event based) to test things - Following…
1
vote
1 answer

How to use System.Runtime.Caching in an Azure Function App

I want to use simple in-memory caching of some values between function calls in a serverless function in an Azure Function App. I am developing directly in the Azure portal using C# script files. Following the suggestion 2) from this blog post by…
Marcel
  • 15,039
  • 20
  • 92
  • 150
1
vote
1 answer

How to use PEM files in azure function using MqttNET

I hope, that you can help me here. I'm trying to make a MQTT client (azure function in an app service environment) that extracts data from MQTT broker (hivemq), but I'm kind of lost when it comes to certificates (I'm not an expert). Anyways, I…
Zaz
  • 1,074
  • 3
  • 17
  • 29
1
vote
3 answers

Retrieve Source Code Files from Azure Function in Azure Portal

I had developed azure function solution in Visual Studio 2019 and deployed to azure function by downloading publisher . But accidently I had deleted entire source code in local machine where I could not get even from "recovery software tools"…
1
vote
1 answer

How to log with application insights in a .NET library class?

I have a C# .NET (4.6.1) Class Library that is being consumed by an Azure function app (V3). I am trying to get that Class Library to use the function app's App Insights for logging, but I'm completely lost on how to even start with setting it up…
1
vote
1 answer

Azure function written in java throws FailureException: OutOfMemoryError: Java heap spaceStack while unzipping file size > 80MB

I have an Azure function written in java, which will listen to a queue message on azure, queue message has path to zip file on azure blob container, once the queue message is received it take zip file from the path location on azure and unzips to a…
1
vote
1 answer

Nodejs azure function app Error: connect ETIMEDOUT ipaddress:443

I am trying to do http call using axios in node azure function app and **sometimes** I get ETIMEDOUT error. The timeout duration is less than what's set. Error: connect ETIMEDOUT 'ip address of endpoint':443 at TCPConnectWrap.afterConnect [as…
Vivek Ranjan
  • 1,432
  • 2
  • 15
  • 37