Deployment failing - trackingID 79cbb4e9-457b-458c-bcf1-84b0e483a64a
Getting this error when trying to create a function app using blob storage. The same service is configured in a QA environment the same way we are trying to create in a development environment. { "status": "Failed", …
Azure Functions

Function App Deployment Center GitHub Actions setup hangs with message Loading..., instead of allowing Sign In.
I'm trying to configure Continuous Deployment for an Azure Function App, in the Function App Deployment Center. When I select GitHub as the Source and Build with GitHub Actions as the trigger, I'd expect to see the currently logged on account or, be…
Azure Functions
The subscription <id> is not allowed to create or update the serverfarm.
I am not able to create azure function it is giving me this error The subscription '<id>' is not allowed to create or update the serverfarm.
Azure Functions
Blob trigger not working when new file arrives in the blob storage. The files are still kept in the blob storage
The blob trigger functions doesn't triggers whenever a new files arrives. It works randomly sometimes and rest it doesn't processes the files Below is my host.json { "version": "2.0", "logging": { …
Azure Functions
How can I improve Azure Function execution where I have multiple sequential (~50-100) processes inside one execution? Now it sometimes fails or fails to timeout.
I have queue triggered azure function which processes multiple pdfs sequentially. In one part of process each pdf goes through RAG technique process using AzureOpenAI, chromadb and Langchain. I have identified that in this part it failes after a while of…
Azure Functions
Cannot delete virtual network, subnet in use by /serviceAssociationLinks/legionservicelink and cannot be deleted
I am trying to delete a Virtual Network with 1 subnet. That subnet that was at one point in use by a Flex Consumption Function App Virtual Network Integration. The Function App has long since been deleted, but I cannot delete the Virtual Network due to…
Azure Functions
What is the best way to implement timeout restrictions in an Azure Function orchestrator?
I have a Function App written in python with multiple durable function entities such as orchestrator and activity functions to implement the fan-out fan-in pattern in my code. It collects some data for multiple different sources through different…
Azure Functions
Azure cloud is there a way to run application that connects to other applications outside organization via socket connection?
Our organization is all running on the Azure Cloud. So far, we have not created any virtual dedicated servers on the cloud. 1. Suppose I need to create an application that will need to open the Socket connection to application running outside our…
Azure Functions
How to share code over multiple function apps? (PYTHON)
What is the recommended way to reuse the same code between multiple function apps without having to go through a lot of ugly steps to make deployment work? I have a directory setup which is super simple to test and verify this concept: workspace …
Azure Functions
Azure function triggered by sessioned queue is processing only one session at a time
Hi, I've been trying to set up an Azure Function that gets triggered whenever a message is inserted in a sessioned queue. When I deploy the function app, I can tell that sessions are processed one at a time for each function instance, which is less…
Azure Functions
Where is the API reference doc for azurefunctions.extensions.bindings.blob
I was going through the blob triggers example on the Microsoft website and came across this import azure.functions as func import azurefunctions.extensions.bindings.blob as blob For azure.functions, I know the api doc is at link. For…
Azure Functions
I have created function in Azure but not able to see it on portal
I have created function in Azure Apps but I am not bale to see it on the portal.
Azure Functions
To Deploy multiple functions within a single function app service
I want to create multiple HttpTrigger functions under a single function app service. For example, there are 2 functions, automation1 and automation2, they should be deployed under same function app service but they should be allowed to be called…
Azure Functions
How to get per function runtime metrics in a functions app
My team is developing a functions app which consists of three functions of varying types. Broadly speaking, the setup looks like this: A starter function of type httpTrigger starts a durable function when the user submits a request. The durable…
Azure Functions
Azure Function ( Python ) fails with error
We do have deployed Azure Python function as part of our solution. Suddenly its stopped working. Getting below error messages on its function overview page. Python version - 3.12 still its giving error on this function as below: You are receiving…
Azure Functions
DevOps deployment of function app to flex consumption
Hello, I have updated my old function app to use the flex consumption plan and I've updated the Azure Functions Deploy task in DevOps to have the flex consumption plan option marked as true, but when I run the deployment it says 'The Deployment Type…
Azure Functions
Function {function_name} Invocation id {id}: An exception was thrown by the invocation. dotnet8 Azure Functions
Hi Team, Some of my functions on project besi-data-platform stopped working. I recently upgraded to dotnet8 but I believe the functions were working after the upgrade. Now I realise that some of the function return instantly with code 500. After looking…
Azure Functions

Python Azure Function don't load the functions
I have created an example code that it's not working loading in my azure resource. In local is working fine, but in azure I never see the function running. function_app.py import azure.functions as func from src.code import test app =…
Azure Functions

Azure function app error - Unhandled exception. Grpc.Core.RpcException
I have an Azure function app hosting multiple functions. The new function is failing to execute with the below error message. Unhandled exception. Grpc.Core.RpcException: Status(StatusCode="Unavailable", Detail="Error reading next…
Azure Functions
Migrate Azure function from in-process model to isolated model
I have an Azure function app running on the in-process model. Now I'm migrating it to the isolated model. I did the code change required and changed the FUNCTIONS_WORKER_RUNTIME to dotnet-isolated and .NET Version change to .NET Isolated. Project cs…