Content
Azure function not picking up messages from azure storage queue for 4 hours
Hello, I had an issue with one of my functions in Azure last Friday, which is set to fire and process any new item that's added to my Azure storage queue. For some reason, the function wasn't triggered for around 4 hours even though several messages…
Azure Functions Python runtime V2 Model to use SQLAlchemy for ORM and use gcc, libpq, and other dependencies to interact with a PostgreSQL database
Problem Statement: In our application, we are utilizing Azure Functions to interact with a PostgreSQL database. We intend to use SQLAlchemy for ORM in Azure Functions. However, we are facing issues including necessary dependencies such as gcc, libpq, and…
Need Expert Advice on Azure Function App V2 and CI/CD Pipeline Best Practices
We're in the midst of developing a B2B SaaS application focusing on procurement services and analytics. We've designed our architecture to be robust, leveraging Azure AD B2C custom policies for user authentication, Azure API Management (APIM) for JWT…
Deploy code to network secured function app
I read this article which shows how to deploy to network secured web apps https://azure.github.io/AppService/2021/03/01/deploying-to-network-secured-sites-2.html I have a similar situation but with a function app. I figured it would be similar. Instead…
maven azure function to package/wrap additional resources (outside jar)
Hi I am working on a Maven azure function. Generally this is working fine, but I am struggling with resources that I would need to be deployed outside the jar file. Currently, everything from /src/main/resources will end up within the jar package.…

How to use Drivers in Azure Functions?
Usually, if we want to connect to a Database (SAP, SQL, Oracle etc.) using python for example, we need to install drivers in our machines and make the connection. For example using pandas.read_sql But a machine or a VM is a full environment with…

Object reference not set to an instance of an object. at Microsoft.Azure.WebJobs.Script.Grpc.AspNetCoreGrpcServer.ShutdownAsync
This is not our code, it is the MSFT Function Host: Application: w3wp.exe CoreCLR Version: 6.0.2023.32017 .NET Version: 6.0.20 Description: The process was terminated due to an unhandled exception. Exception Info: System.AggregateException: One or more…
What should I do about the Azure Function Http trigger not connecting to Cosmos DB?
I am learning the module called "Chain Azure Functions together using input and output bindings". The previous modules are learning without any problem and can successfully access the http trigger via url. But in this module, I have…
Access user info in a python Azure function
Hi, Failry new to Azure. I have created a React web app service and protected it with authentication following https://learn.microsoft.com/en-us/azure/active-directory/develop/multi-service-web-app-authentication-app-service. Using this web app, my users…
Visual Studio fails to deploy Azure Function App on production slot
Hello, I created a function App on Azure (Linux, Consumption plan) automatically created through Visual Studio tools (latest versions, VS2022 Community). Deployments were going fine at first, then I had to add…
Azure Function - Internal server error
We have an Azure Function (Runtime V3) running a .NET Core 3.1 application. On several occasions, we receive HTTP Status code 500 Internal Server Error when executing HTTP Functions. I've looked in several logs (AppInsights Exceptions, Log System,…
Error 404 on Microsoft Learn article "Chain Azure Functions together using input and output bindings"
I have been working through the Microsoft Learn article titled Chain Azure Functions together using input and output bindings I have made it through to Module 7: Exercise - Write data with output bindings I am getting a 404 error when I try to do the…
Connection Error. Azure Function App connecting to Azure SQL Server. Aggregate Authentication Error
I am running an Azure Timer Trigger function that insert data into an Azure SQL Server. When Run and Debug in Visual Studio Code (local), it works fine. This is mssql config. const config = { server: process.env['SQL_SERVER'], port:…
Use Azure Function (.Net 6) with JwtBearer middleware
Hello, I couldn't find any official documentation on the following: I want Azure function to use bearer token authentication. Is it possible to use Azure Function (.Net 6) with JwtBearer middleware? So like in an ASP.NET app, set this code into…
Azure Function App hanging or crashed on Code + Test
Hi, My Function App code for http-trigger unable to load after i added something inside the function.json. It is showing blank page, the 'now loading icon' disappeared. Tried to download app content also cannot, keep 'downloading'. I'm able to view the…
Azure Function Publish issue from Visual studio 2022
Publish has encountered an error. Publish has encountered an error. We were unable to determine the cause of the error. Check the output log for more details. A diagnostic log has been written to the following…
property "type" is not allowed in host.json
Hallo everybody, I want to create a blob trigger azure function and I have an error which I hope you can help me. After creating a blob trigger function I got this host.json file: { "version": "2.0", "logging": { …
Issues while debugging a published Azure function
I am trying to debug a published Azure function app. I've followed all the steps as per the below link but was unable to succeed. It looks remote debugger is not being started. Any suggestions will be helpful. Thanks! Azure function debugging The error…
How to run make REST calls to Azure Resource Manager (ARM) inside Github Workflow?
I have a working powershell script inspired by https://techcommunity.microsoft.com/t5/azure-paas-blog/import-azure-function-app-to-azure-api-management/ba-p/2594810 and I would like to run it in a Github workflow. I assume I would use…

Azure Function Queue Trigger V2 not reading the message
I am trying to read a message from a queue storage. I am following exactly the tutorial code and running locally using azurite (tested also with a storage). The the strange thing is that when a new message arrive at the queue the function gets triggered…