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

how to create a excel file in azure function App by using timer trigger

I created a method in my azure function app which gets the static data from a class and stores it to a excel file I am storing the excel file in a storage account. when I run the method a empty Excel file is created in storage account How to…
1
vote
2 answers

how to read the data from blob storage and access it by using azure function app

I have a CSV file in my Blob Storage and I need to trigger it every day So I am using timer trigger in azure function app I am able to get the Csv file Data in my azure function-app how to read and write the CSV-file data and store it in .xlsx…
1
vote
0 answers

Azure SIgnalR Service user credential validation before negotiation

We are trying to connect azure signalR service with our azure function app. We have a negotiate method in the function app that returns SignalRConnectionInfo object to client and before that, it makes a call to signalR service. We want to make a…
Anup
  • 1,502
  • 2
  • 15
  • 31
1
vote
1 answer

Azure Cognitive Services TTS: Resource not found

I am trying text to speech by following instructions given at https://learn.microsoft.com/en-us/azure/cognitive-services/speech-service/rest-text-to-speech. Get Token is working and returns an authorization token. While…
1
vote
1 answer

Compare the Application settings of two Azure function apps

I want to compare the Application settings of two differents function app. I have one function app for the development and an other for the production and I want to check if I don't forget to add one setting on production. I started with the Azure…
ElRoro
  • 203
  • 1
  • 13
1
vote
1 answer

Azure function in VNET still needs Function access keys?

Suppose I have an Azure function on Consumption plan hosted in VNET, if my function calls are restricted to the App Service Instance in the VNET, do I still need to ensure my function is only accessible with Function/Admin keys? My view is that, if…
2Xchampion
  • 666
  • 2
  • 10
  • 24
1
vote
0 answers

Deploying Azure Functions through Maven Plugin

I am trying to deploy a Java based Azure Function App through IntelliJ IDEA as mentioned [here][1]. I am using the Maven goals for the deployment with the following settings in my POM file. com.microsoft.azure
Prabal Rakshit
  • 417
  • 1
  • 6
  • 16
1
vote
0 answers

Create a DB export using a function app and saving it to a secured storage account in Azure portal

I have a function app that is setup to run on a storage account that is open to all networks. I then created a function that utilizes the New-AzSqlDatabaseExport cmdlet to export a DB to a different storage account. I want the second storage account…
1
vote
1 answer

Publishing Azure function to Azure fails randomly

I am using Visual studio Professional 2019 v 16.2.3 . I am using web deploy method to publish my azure function to azure portal. The publish is not working as it says Publish has encountered an error. Publishing Failed. A diagnostic log has been…
1
vote
1 answer

Azure Functions Keeping HTTP Connection Alive

I've been struggling to find any kind of information related to the issue I'm experiencing with Azure Functions (Node.js). I'm attempting to keep a HTTP request/connection alive and start a text/stream on initial request and the write chunks to this…
H S
  • 103
  • 13
1
vote
1 answer

Azure Functions: Querying endpoint throws error 500.37 - ANCM Failed to Start Within Startup Time Limit

I deployed some changes to Azure Functions, but it looks like my endpoint is not reachable. For a while, I kept getting "Function host is not running" errors. Lately, the errors became "HTTP Error 500.37 - ANCM Failed to Start Within Startup Time…
1
vote
1 answer

Azure Data Factory's Web Hook Activity times out after 1 minute

I have an Azure Data Factory V2 with a Web Hook Activity which is used to invoke an Azure Function with HTTP trigger, code as below. using namespace System.Net # Input bindings are passed in via param block. param($Request, $TriggerMetadata) #…
bit
  • 4,407
  • 1
  • 28
  • 50
1
vote
1 answer

Azure function instance and scaling

By creating Azure function app service under consumption plan with single HTTP trigger function in it, can I control that Azure function app service number of instances serving the incoming request? If yes, how to control app service instance? If…
1
vote
0 answers

Azure Function Proxies Configuration is Being Ignored

I tried creating a simple Azure Functions App through the UI both on Linux and Windows machines and it works. However having a simple proxies configuration seems to be completely ignored. It doesn't work locally either using the provided Docker base…
simo
  • 15,078
  • 7
  • 45
  • 59
1
vote
1 answer

Avoid - An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

I get following error from an Azure Function App when using cosmos DB. I have got the same with HttpClient but seemed to solve that by doing HttpClient static. Can you solve the same problem just by making the CosmosDB client static? Something…
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104