Azure functions are not displaying in the function app.
Hello, I deployed an Function App through Azure DevOps Pipelines, all files exist but are not displaying in the overview to run or test it. Step by step I verified: All files exist in /wwwroot. Checked on Azure DevOps, the artifact was correct and…
how to rollback the transaction of API from Azure function which calls the API
how to rollback the transaction of API from Azure function which calls the API below is my code in azure function. when My Azure function fails in any case I want to rollback the API changes using (TransactionScope scope = new…
How can I create a new azure function in Azure portal without getting the error: "Error while loading - Error retrieving function"?
I created a new python Azure function app, which is up and running. (Using the Consumption Plan) When I try to create a new function in Azure portal, I can go through the configuration steps and get the notification, that the function was successfully…
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…
Azure Functions dont deploy when I try to import pymssql
I want my azure functions to be able to connect to my azure SQL server/database. I have configured the connection using SQL username and password and this works as expected when running locally. However, when I try to deploy my functions to azure, they…
Is there a solution if I have lost Azure Functions apps logs?
Hello Everyone. I am using a BI tool to check Azure Functions apps logs, but am having problems with some data being missing. I followed the instructions on the official…
Azure Function cannot process data streaming at 10 Hz
Hi I have the following architecture I am using the Azure Function to be able to save data in CosmosDB for Mongo since this is not supported by the Azure Streaming Analytics API and we need to use MongoDB. All is working but when I test with…
Unable to Create Service Connector Between Azure Function App and MySQL Flexible Server in VNet
Hello, I'm trying to set up a service connector between an Azure Function App and a MySQL Flexible Server, but I’m encountering difficulties because the database server is within a Virtual Network (VNet). Steps Tried: Used the Azure CLI command: bash az…
i'm using azure function and eventhub trigger so if there is any exception comes during the processing the event then offset commit or checkpointing will handled by azure function runtime or it is handled manually.
i'm using azure function and eventhub trigger so if there is any exception comes during the processing the event then offset commit or checkpointing will be handled by azure function runtime or we have to handled it manually. (if exception is throws…
SMB 3 Implementation in .net core
There isn't any library available to implement network file sharing using SMB3 protocol in .net core. The existing SMBLibrary only supports SMB1 and SMB2. Which library to use for SMB3 implementation?
Unable to run Azure Function in ADF
https://stackoverflow.microsoft.com/questions/435338 https://stackoverflow.microsoft.com/questions/435426 I want to run a C# program in ADF but cannot. I am facing errors with Azure Function and Azure Custom block. PS: My end goal is to get my Azure…
Function App Dependency Error when Sending Http Requests
Hello, I encountered problems with outgoing requests to dependencies. My server got System.Net.Http.HttpRequestException when I was sending HttpRequest using IHttpClientFactory.CreateClient().SendAsync() and "cancelled" when I was connecting to…
Azure Stream Analytics Job -> Azure Function App output failed connection when using automatic unique default hostname?
Hi I believe when using the new feature that generates a hash for a secure unique default hostname will cause issues for the Stream Analytics Job to be able to connect to the Azure Function App as an output. I have tested this by creating 2 functions…
Function App Cannot Create within Azure Portal
Seems there have been two changes that are getting in the way of creating functions after having created a function ressource. There is no longer the "Function f(x)" under the left menu called Functions, and seems we can only access it now…
Use HttpRequestData or HttpRequest in HttpTrigger when using the isolated worker model?
We are planning to migrate function apps from in-process model to isolated model. In below links, the isolated worker model sample are using the HttpRequest & IActionResult same as in-process…
How to Configure Azure Functions Consumption Plan to use System Assigned Managed Identity with underlinig Storage Account
After creating an Azure Functions with a Consumption Plan and a System Assigned Managed Identity linked to the underlying Storage Account, the Function displays a warning: 'Storage is not configured properly, Function scaling will be limited.' Managed…
Options for Deploying Azure Function Code from JFrog to Blob Storage
The goal is to deploy an Azure Function that runs on Java, using an artifact (zip archive) stored in JFrog. Currently, the only method identified for deploying this artifact is transferring it to Azure Blob Storage and utilizing the URL for the…
Is it possible to ensure an Azure Function executes only once in parallel?
I have the requirement to execute an Azure Function (let's call it OperationalFunction) only once in parallel. What I mean is the following: I have two "entry point" functions: I have a BlobTrigger Function (BlobTriggeredStartFunction) I…
Azure function not able to index functions
Since 27 my azure function is not working with the error Error: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.33' not found But what can i do now? Is there a fix? A work around? what is the recommended action?
Azure function gives Exception: ModuleNotFoundError: No module named 'XXXXXXXX'. Cannot find module.
AZURE FUNCTIONS - Operating System: Linux Runtime version: 4.31.1.1 I am using Azure Functions with Python, which have been working as expected so far. However, all the recent Azure Functions that I have built and deployed are giving module not found…