The token is expired. unable to deploy to Azure Function
Error: Failed to get resource ID for resource type 'Microsoft.Web/Sites' and resource name 'AF200NitoPlusBillingDev'. Error: Could not fetch access token for Azure. Status code: invalid_client, status message: Error(s): 7000222 - Timestamp: 2025-03-03…
Best approach to call 22 K api requests and update SQL server table on daily basis
We have created an SQL database on Azure, and it contains around 1.5 million records. now on daily basis we need to call an external api on average each day there will be around 22 K api requests. then for each request we need to check if the item exists…

What records do I need for goDaddy to change the DNS for azure function
I am trying trying to change the dns for an azure function that I just created using godaddy. I added a CNAme in Godaddy along with txt record however it does not seem to be resolving. I am using Azure function consumption plan with windows container…
Azure functions app throwing - Timeout value of 00:05:00 exceeded by function 'Functions.Analyticshandler' (Id: '78a8fa14-0b05-440a-9a81-6c0ebda9237b'). Initiating cancellation.
We are facing occasionally server time out error from the azure functions Error log - Timeout value of 00:05:00 exceeded by function 'Functions.Analyticshandler' (Id: '78a8fa14-0b05-440a-9a81-6c0ebda9237b'). Initiating cancellation. The function app…

Problem after migrating from .NET 6 to .NET 8: Queue message is automatically converted to byte[] instead of string
I am experiencing an issue after migrating from .NET 6 to .NET 8 in my Azure Functions project. The problem appeared during the processing of queue messages. In .NET 6, the messages sent to the queue were being read as a string (string…
Azure Function App Deployment Issue
Hello Microsoft Azure Support Team, My function app on the Azure Portal doesn't show the Azure Functions when I deploy the Function App project in my Visual Studio Solution file. They publish and work correctly on local. I have tried all ways of…
How to push path from blob output binding to a queue for later processing in Azure Function
Hi, I have a set of output bindings on an Azure Function (written in PowerShell, because why not) something like this: { "type": "blob", "direction": "out", "name":…
Azure function app showing log in the log stream when displaying hibernate information
We have a few functions that we run in an Azure Function App. We are using C3P0 hibernate to create the connection pool in our functions. When we run the functions in our local environment. We see no errors in the logs. When we check the log stream in…
Unexplainable 502s on Azure Functions HTTP trigger after 30-90 seconds
I'm building an AI plugin on Azure functions which makes requests to an AI API in the background, which can take some time. Sadly, async patterns (Durable Functions etc.) are not an option for this use case due to limitations of the platform I'm building…
Blob triggers stopped working on the 1st of March 2025
Blob triggers have stopped triggering a Azure function. This function has been running for over a year without issue, the last code change was weeks ago and the stop in triggering was not related to any code changes. The Azure function App is using…
FunctionApp Goes Offline Randomly During Automatic Warmup After Working Fine For A Year
Hi All, We have experienced issues where FunctionApps hosting in Azure can be quite unreliable, and sometimes go offline after operating for a while, in some cases for years. On the 18th of February at 21:20, after a standard 'warmup' operation one of…
Azure Function, calling Multiple Instance
Hi All This is my first post on this support, can you please confirm that my account is being acknowledged for priority support? I would like to know how I can achieve the following. I have SQL query that produces a list of my IoT Device IDs. Each…
My function app is not working in the cloud, but working fine locally
My function App is working fine locally, but it is not detecting any functions when uploaded to the cloud. I have reviewed the host.json, function.json, and function_app.py thoroughly. The logs show that an http function is correctly routed when deleting…
Azure Function App: System-Assigned Identity and Storage Access
I have two questions regarding Azure Function App access to a storage account using system-assigned managed identity and RBAC: Public Storage Account: A Flex Consumption Function App uses a system-assigned managed identity to access a public storage…
How to enable the always on in azure functions
How to enable the always on azure functions. We currently running the function app with Consumption plan in order to update it to always on we need assistance on that.
Azure functions scheduled trigger not firing
Dear All, I have setup an Azure function on Scheduled trigger with %SCHEDULE% specified in the environment variable. I have scheduled it to execute on Every Monday @9AM UTC. Here is the relevant cron expression - 0 0 8 * * 1 During testing, the first…
Azure Function Container App not Scaling down
Hi all, I am having a problem with one of my Azure Container App functions. The function is subscribed to Service Bus Topics. My problem is that the Function is not scaling to Zero despite not having any messages in the topics. Any suggestions on…
Is it recommended to run azure function for long time
Hi team, We are developing a function for data migration from an SQL database to Azure Blob Storage. We intend to run the migration for 5 hours daily. Our Azure Function is hosted on the Premium plan, which allows us to configure the timeout. However,…
Azure Function App stopped triggering on Storage Uploads
Hello! I've been using Azure Function APPs to process files uploaded into a Storage Account. I am using the default Storage Polling mechanism described here…
Azure function as a solution for redirecting URLs
We have a requirement to redirect https://oldsystem.olddomain.com/<rest of the path> to https://newsystem.newdomain.com/<rest of the path>. I am thinking to use Azure function for this. I have created the function with required logic but I…