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

Function App with VNet Integration Failing Deployment When Setting WEBSITE_CONTENTAZUREFILECONNECTIONSTRING to Storage Behind Firewall

The following ARM template deploys: Virtual Network, Network Security Group, Storage Account, App Service Plan, Function App When the settings for WEBSITE_CONTENTAZUREFILECONNECTIONSTRING and WEBSITE_CONTENTSHARE are omitted (commented out) the…
1
vote
1 answer

Azure Storage Download to Blob prematurely ends Function App call

I am using Nodejs to download a file to a buffer to use for processing in my code. The relevant code is let bbc = containerClient.getBlockBlobClient( userId + "/" + documentUuids[i] + ".pdf" ); let blob; …
IrtzaSuhail
  • 97
  • 1
  • 9
1
vote
1 answer

How can I create a zip file from array variable [fileName and FileContent]. using azure function or Azure logic app(with out any third part service)

How can I create a zip file from array variable [{"fileName":"", "FileContent" :""}]. using azure function or Azure logic app(with out any third part service)
1
vote
1 answer

resultCode is 0 for all requests in Application Insights

I have a function app connected with an application insights instance. When I look at the requests on application insights, all entries have a resultCode of 0, regardless of whether it was successful or not. How can I have the resultCode showing…
JoaoRibeiro
  • 808
  • 7
  • 24
1
vote
1 answer

Sending email via Azure Functions from my company Azure subscription using company email addresses for sender and receivers

I want to send email via Azure Functions hosted on my company Azure subscription using company email addresses for both sender and recipient. Is it possible to use SMTP server like below: var fromAddress = new MailAddress("from@myfirm", "From…
Pingpong
  • 7,681
  • 21
  • 83
  • 209
1
vote
2 answers

Azure function: The listener for function 'Test' was unable to start. Please verify that the Azure Storage Emulator is running

I am getting below error while trying to debug an azure function, which is triggered every 30 secs and creates a file and uploads it on Azure storage account (using Azure Storage Emulator for development). The listener for function 'Test' was…
1
vote
1 answer

How i can read any file from resources folder in java spring-boot AZURE function?

I am writing an azure function using spring boot and i want to read a file form resources folder but every time getting null pointer Exception. please help me on this how i can fix this issue ? either i have to put the file in blob storage or…
1
vote
1 answer

QueueTrigger Bindings for Sendgrid -Python

Guided by this post I have written the following queuetrigger code intended to send emails when a message is queued. import logging import sendgrid import azure.functions as func import os def main(msg: func.QueueMessage) -> None: …
wwnde
  • 26,119
  • 6
  • 18
  • 32
1
vote
1 answer

Missing metadata with CloudBlockBlob as input trigger

Using Azure function 3.0 (dotnet) on an eventgrid trigger on Blob Storage (Data Lake Gen2). For some reason I am not getting the metadata associated with the blob in the "inputBlob" (of type CloudBlockBlob). Any idea why the metadata is not getting…
Sowmyan Soman
  • 853
  • 1
  • 9
  • 21
1
vote
1 answer

How to pass blob name to different azure python functions

I have 3 azure functions first is blob trigger, second is service bus queue trigger and third is service bus topic functions. The functions is running fine but now I have a requirement to have blob name in all the 3 functions which is helping to…
1
vote
1 answer

Function Running in local and not when deployed to Azure

I have a http trigger function, when I sent a message to the url, it logs data on the queuestorage as required; http://localhost:7071/api/xxxx?message=89000 However when I do the same in azure on the function…
wwnde
  • 26,119
  • 6
  • 18
  • 32
1
vote
1 answer

Call Azure Functions API from Angular Static Web Page Frontend with Azure Active Directory Authorization

Both my Frontend and Backend(Azure Functions) are secured by Azure Active Directory(AAD). Frontend: I have implemented MSAL in Angular the way its described here:…
1
vote
1 answer

AZURE FUNCTIONS: PDFInfoNotInstalledError: Unable to get page count. Is poppler installed and in PATH? for pdf2image

I am getting this error "Result: Failure Exception: PDFInfoNotInstalledError: Unable to get page count. Is poppler installed and in PATH? for azure functions." I am using pdf2image library's convert_from_path() to process my pdf to image. This works…
1
vote
1 answer

Azure Functions: Is using gcServer recommended for consumption plans?

I'm going through the list of perf improvements that can be made against Cosmos DB. My APIs are hosted in a Function app in consumption mode. Is turning on gcServer recommended for Azure Functions? There is more information on gcServer here. For…
user246392
  • 2,661
  • 11
  • 54
  • 96
1
vote
2 answers

Azure function deploy error : 503 Temporarily Unavailable

I have a python function app created using ARM template. When i tried to deploy a function using the azure devops pipeline, I am facing the below error, "Failed to deploy web package to App service. Service Temporary unavailable Code 503”
Arun7even
  • 67
  • 1
  • 8