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
0
votes
1 answer

Python Azure Function on Premium Plan: Publishing / deployment of functions fails…

I encountered multiple issues regarding the publishing / deployment of functions when using Python Azure Functions running on Linux and Premium Plan. Following are options what can be done in cases where it fails or it is successful but the function…
quervernetzt
  • 10,311
  • 6
  • 32
  • 51
0
votes
1 answer

How do I cache files within a function app?

I am trying to temporarily store files within a function app. The function is triggered by an http request which contains a file name. I first check if the file is within the function app storage and if not, I write it into the storage. Like this: …
muzykfs
  • 62
  • 3
0
votes
1 answer

In Azure Functions app, how can we execute the How can i run this command "sudo apt-get install libasound2 alsa-utils alsa-oss"

Command: "sudo apt-get install libasound2 alsa-utils alsa-oss" Functions app : Linux, python We install other modules using requirements.txt, But how can i run the above command in functions app. Please guide/help on this.. Thanks!
0
votes
0 answers

Call from Azure Function App to another Function App through API Management

I am working on a project that using Azure function apps as API, for eg. FuncA and FuncB. All the function apps are behind the API Management with B2C authentication. I want to make a call from FunA logic code to FuncB but must be through the APIM…
0
votes
1 answer

Azure Function Apps Hybrid Connections connect to Azure Load Balancer

Regarding Hybrid Connections attaching the relevant documentation here. What we currently have is: (WebApp) <--> (Hybrid Connection Manager) <--> (EndPoint A) In the configuration of Hybrid Connection we specify: Hybrid Connection name Endpoint…
0
votes
1 answer

Get Azure Storage Account Key inside Powershell Function App

I am trying to get the Key of a Storage Account from inside a Powershell Function App under the same Resource Group "rg-mobileplans". I am certain I have the correct Azure Context and when listing all the Storage Accounts I see the one I am trying…
0
votes
1 answer

Azure Function App 2.0 unable to deploy properly

I'm trying to deploy my azure function (.NET Core 2.1) using zip based method but when I check the portal, Azure function always creates a sample run.csx to execute instead of executing my .cs file which contains run method tagged with function…
WULF
  • 197
  • 1
  • 2
  • 12
0
votes
0 answers

How to execute bash script on an Azure Linux VM from Azure Functions app

I need to call a bash script on an Azure Linux VM from an azure function app, and I need it to use the compute on that VM and not my resource plan for my function app. I know I can perform remote execution via Azure CLI, but I can't seem to wrap my…
NoCarrier
  • 2,558
  • 4
  • 33
  • 44
0
votes
0 answers

ServiceBus Trigger is not firing

ServiceBus Trigger is not firing when it has been idle for a long time. I am sending all the messages to the azure queue once in a day. Then my service bus trigger will read messages from the queue, after a few days, I observed the service bus…
akhil
  • 1,649
  • 3
  • 19
  • 31
0
votes
1 answer

Invoke Funtion App(running locally) from Logic App(Azure)

How do we invoke a function app running locally (VS) from a Logic App(in Azure)? And also what's the best practice to debug during dev(like setting up break points..) for cloud solutions?
Hani
  • 15
  • 2
  • 8
0
votes
2 answers

How do I get Azure Function App to get invoked

I have a simple blob listener which connects to a blob container. The listener(on Azure) shows it's running but the function is not being invoked. Here's the log from the console. Azure Functions Core Tools (3.0.2630 Commit hash: ......) Function…
0
votes
0 answers

Azure Function - Service Bus Topic Trigger - local debugging intermittently stops working for periods of time

I'm developing a service bus topic trigger azure function in visual studio 2019. I debug it locally the same way as any other application, Debug -> Start new instance. When I debug locally, about 70% of the time it works perfectly. I can trigger a…
0
votes
1 answer

Set Blob path dynamically in Azure function Integrate

I am developing Azure Function App using portal. I want to set blob storage path on json input file key value name. How I can?
Swap
  • 45
  • 4
0
votes
1 answer

How to use await/async properly in Nodejs Azure Function App

I am trying to write a code to connect with snowflake inside the azure function app using nodejs stack. Here is the code I have writtern. async function af2snf() { console.log("starting connection"); var snowflake = require('snowflake-sdk'); //…
0
votes
1 answer

What happens to the messages being processed on functions running when we disable the function?

We are working with Azure functions, which are triggered on every message in the service bus queue. We are trying to solve a problem whereby we need to disable a function on the function app processing messages, dynamically, so that it does not…
animat089
  • 97
  • 1
  • 9