Azure Function (Python) suddenly stopped getting loaded
We have two very similar Azure Function instances which both stopped working correctly in the last 24 hours, seemingly without any interaction. Setup: 2 Azure Function Apps, both Consumption plan (very similar setup, only slight differences in the…
Azure Functions
I have created a Azure function and I am trying to import another function from different file into function_app.py file. But I see when I tried to deploy on Azure function App, deployment shows success but no function is getting displayed.
I have subscribed to Flex Plan. And my Azure function contain different helper(python) files from where I am trying to import function into function_app.py. I see that when I comment out below line from my code then my function get's deployed on Azure…
Azure Functions
Azure Function timeout exception is dead-lettering Service Bus messages
We have a Service Bus message queue that gets thousands of messages added to it by a Function run on a timer. The Service Bus queue then trigger another Function to process the messages. The second function is triggering as expected and runs for 5…
Azure Functions
Getting package error from Microsoft.Azure.Functions.Worker.Sdk having hard dependency on Newtonsoft.Json v10.0.2
I am getting the below nuget feed error when I use Microsoft.Azure.Functions.Worker.Sdk for my azure functions. The feed - lists package 'Newtonsoft.Json.10.0.2' but multiple attempts to download the nupkg have failed. The feed is either invalid or…
Azure Functions
Facing error: Could not found version while deploying Python based Azure Function
When I am trying to deploy the python based azure function using Visual Studio code facing issue as below: ERROR at stage Running oryx build: Could not find a version that satisfies the requirement azure-functions==1.23.0 (from versions: none) ERROR: No…
Azure Functions
Func app and functions are down for 5 hours and 43 minutes. Haven't changed anything since weeks. It is because of a problem in azure side. Requesting urgent fix. My product is live.
Function app and functions are down for 5 hours and 43 minutes. Haven't changed anything since weeks. After maintance work it says service unavailable. Requesting urgent fix. My product is live. Resource Id:…
Azure Functions

Azure Function Deployment Issue: [Kudu-RemoveWorkersStep] Fails with HttpClient.Timeout
I’m trying to publish a TypeScript Azure Function to a Function App running on Flex Consumption plan. Inbound traffic to the Function App is disabled. Outbound traffic goes into a VNET. The storage account has public access disabled and Private…
Azure Functions
Azure Functions app stopped working Error codeBadRequest (ServiceUnavailable) from host runtime.
Error codeBadRequest MessageEncountered an error (ServiceUnavailable) from host runtime. Please know that i have not made any redeployments or made changes in the code, The app was fine and working and all of a sudden stopped, this was not based on…
Azure Functions
Intermittent CPU spikes and metric gaps
We have a Function App that runs with two timer triggers. One every 24 hour and one every fifth minute. It's doing lots of i/o against Azure resources and remote APIs with a timeout of 10 minutes. The service plan is an EP2 and it's written in…
Azure Functions
Connecting to an on-premise SQL Server from a Function App.
I am working on a project that requires me to connect to an on-premise SQL server. When in production we will have private Azure connection but for development I am connecting to the local LAN via a VPN connection. I am using this connection string in…
Azure Functions
Azure SQL Trigger Function fails with exception: Invalid object name 'az_func.Leases_xxx_xxx' after function redeployment.
I have an SQL Trigger Azure Function that is deployed to an Azure Function App as a container. The function image is stored in Azure Container Registry (ACR). All RBAC permissions (to pull from ACR, access the database, etc.) are correctly…
Azure Functions
How to expose my function app endpoint deployed to APIM which has an Azure Application Gateway in front of it.
Hello, I've an Azure Function app running on App Service plan deployed to Azure APIM. The architecture is like Client API ->Application Gateway -> APIM -> Function App How can I expose my function end point deployed to an APIM to the end client…
Azure Functions
azure function app is not getting iot hub event
azure function app running on consumption plan is not able data via iot event hub or not getting triggered by the basic event. Also are not able to configure it to only get data and not the event information
Azure Functions
I am trying to deploy a sample function App code to a function app. VSCode says it deployed successfully, but I don't see those functions in portal or the app
I am trying to deploy a sample function App code to a function app. VSCode says it deployed successfully, but I don't see those functions in portal or the app But I see none here: I created a storage account without key based access as it's mandated…
Azure Functions
Azure function can't access storage account
I have an Azure function that goes to the storage account(s) and container(s) and, for some reason, in one of the containers it doesn't have access (Authorization error), when it's running on a schedule. When I run it manually, it does everything…
Azure Functions
Azure Function App not showing function after refactoring Python code into multiple files
I am working on refactoring my Azure Function (Python, V2 programming model). Previously, all of my code was in a single file, and deployment from VS Code worked fine — the function appeared correctly in the Azure Function App. After refactoring, I…
Azure Functions
Issues with deploying application to Flex Consumption Apps
I have an Azure DevOps Pipelines "AzureFunctionApp@2" task which works fine for normal Consumption Plans. However, when I try to deploy to FlexConsumption Apps this does not work. I have added "isFlexConsumption: true" to the task,…
Azure Functions
Azure Function cost and performance question
Dear Experts, We have a requirement to run 19 python scripts everyday at 11 pm. This fetches data from the Jira Cloud delta tables and loads them in a table inside SQL Server. Currently they are running via task scheduler configured over a user's AVD.…
Azure Functions
Azure Function App HTTP Trigger Keys Automatically Changed, Causing .NET App Failures
I have created an Azure HTTP Trigger Function App and consume it in my .NET application. Recently, I have encountered an issue where the function keys (passed via the x-functions-key header) are changing automatically every few days, causing my .NET app…
Azure Functions
How to access on premise resources via function app function?
I have a function app function that calls an on premise API. I have whitelisted the function app's outbound IP addresses to the on premise server, however, I get this error message each time I invoke the function: "A connection attempt failed…