Questions tagged [azure-functions-runtime]
424 questions
3
votes
1 answer
Azure Function Timeout after 30 minutes
I have set up an Azure Function v3. Configured with Standard plan per this document: https://learn.microsoft.com/en-us/azure/azure-functions/functions-host-json#functiontimeout. Also, set up functionTimeout to Unlimited
Is Standard (S1:1) plan the…

ShaneKm
- 20,823
- 43
- 167
- 296
3
votes
1 answer
How to get Azure Function name from within a function using C# script (csx)
My goal is to provide a code snippet to customers. One file will contain customer's business logic, another file will provide its handling. For the latter I need to have a name of a function [would like to avoid asking customers to enter this…

ZakiMa
- 5,637
- 1
- 24
- 48
3
votes
1 answer
Azure Function Host to give a Message in case of invalid URI path:
Azure Function Host to give a Message in case of invalid URI path:
Hi, I'm using an Azure Function and testing it through Postman.
My requirement is, when we pass the invalid URI path but the correct Host... we are getting Status: 404 Not Found.
But…

Sathya
- 55
- 5
3
votes
1 answer
Azure function for python is unreachable
I am getting the below error in the Azure Function for Python
Please see the below screenshot
Whenever I am trying to open the azure function python on the portal then I got the above error.
Let me know if anyone has any idea regarding this error.

Akshay Godase
- 187
- 1
- 12
3
votes
3 answers
Using the temp directory for Azure Functions
I have a set of Azure functions running on the same host, which scales up to many instances at times. I'd like to store a very small amount of ephemeral data (a few kb's) and opportunistically share those data between function executions. I know…

jdimmerman
- 124
- 4
- 15
3
votes
3 answers
How do you set the java version while creating Azure Function App using Terraform?
In the Azure Portal I can set the Java Version like follows:
portal image
In the terraform config file I can only set the Azure Function version using:
resource "azurerm_function_app" "function-app" {
name = "test"
location…

Balaji Arumugam
- 33
- 4
3
votes
2 answers
How to avoid hosting restart when deploying Azure Functions with deployment slot?
I configured pipeline to do zero down time deployment for Azure Functions. For that purpose I have following steps:
create slot
deploy to slot
start swap with preview
complete swap
My understanding of this is process is that all restarts should…

Krzysztof Madej
- 32,704
- 10
- 78
- 107
3
votes
0 answers
Azure Python function-app execution time really slow
At this moment we are using a serverless python function app to run multiple azure functions. When I run a certain function locally (VScode), the execution-time is usually around a minute.
However, in the deployed version the function always reaches…

BrahimEG
- 41
- 1
3
votes
1 answer
Where can exceptions raised within FunctionsStartup.Configure be found logged on Azure?
In the following code, where is the error logged in Azure? Sometimes the cause of such an error is difficult to identify, and results in "Function host is not running.", I've not been able to find the logged exception.
I've worked around this before…

Lee
- 1,591
- 1
- 14
- 28
3
votes
2 answers
"Function host is not running" - Where do I find the error log?
This is the second time I've ran into the "Function host is not running." error. Rather than just knowing a solution, I'd like to know the process for troubleshooting such a problem, in particular knowing where to go to obtain the underlying…

Lee
- 1,591
- 1
- 14
- 28
3
votes
0 answers
Could not load file or assembly 'Microsoft.Azure.WebJobs.EventHubs on Azure Function under runtime ~3
I am currently updating my Azure Function from 2.2 to 3.1, I have updated all the packages and csproj
netcoreapp3.1
v3
…

Azran
- 263
- 1
- 3
- 14
3
votes
2 answers
How to configure the pre-warmed instances in Azure Functions Premium?
We were experiencing timeouts the first time a function from a Function App was being called so we move from a normal to premium service plan as in theory you can have always a warmed instance ready to answer a call (based on this…

Ignacio Soler Garcia
- 21,122
- 31
- 128
- 207
3
votes
0 answers
Exception handling in Http-triggered azure function - better control of JSON content response
I wonder about a good practice of handling exceptions in the Http-triggered azure functions -in the detail I wonder about standard output in case of the unhandled exception - it produces HTTP error status 500 and a JSON body about detailed error…

rychlmoj
- 385
- 1
- 3
- 14
3
votes
2 answers
Azure Function: Old code still running after a deployment
Right now I again faced the issue that old code is used on an Azure Function App even after the zip deployment through KUDU returns success.
Of course, that is after some 30 mins that I expect the new code to get loaded, not immediately.
The…

Farrukh Normuradov
- 1,032
- 1
- 11
- 32
3
votes
1 answer
Which plan to select for my Azure function : Consumption Plan or App Service Plan?
We have created a blob triggered azure function to process files placed in blob storage. Load on this blob will not be consistent.
For example, for some hours there will be hundreds or even thousands of file will be placed in that blob every…

Yash
- 356
- 1
- 5
- 22