4,571 questions with Azure Functions tags

Sort by: Updated
2 answers

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…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2023-09-26T13:25:51.8466667+00:00
Akhilesh Vikram Singh 5 Reputation points
answered 2024-06-19T12:33:53.7133333+00:00
SvenGlöckner 441 Reputation points
1 answer One of the answers was accepted by the question author.

A second operation was started on this context instance before a previous operation completed. This is usually caused by different threads concurrently using the same instance of DbContext

I have a project using Azure Function with ASP.NET Core 8 and Service Bus, for data access I use EF Core. I'm getting hit a lot and we still haven't found the cause of the error: "A second operation was started on this context instance before a…

Entity Framework Core
Entity Framework Core
A lightweight, extensible, open-source, and cross-platform version of the Entity Framework data access technology.
719 questions
Azure Service Bus
Azure Service Bus
An Azure service that provides cloud messaging as a service and hybrid integration.
579 questions
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-17T17:33:53.32+00:00
Pedro Otávio 20 Reputation points
accepted 2024-06-19T10:57:18.12+00:00
Pedro Otávio 20 Reputation points
2 answers

How to restart an individual azure container

az container restart restarts "all containers in a container group". Since this can cause downtime, how do I only restart an individual container instance? I currently use the Python SDK in an Azure Function to run…

Azure Container Instances
Azure Container Instances
An Azure service that provides customers with a serverless container experience.
670 questions
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-17T14:53:26.59+00:00
Reuben Cummings 50 Reputation points
commented 2024-06-19T06:45:55.9233333+00:00
Dan Rios 1,735 Reputation points MVP
1 answer

Azure function app (python) Retry with timer_trigger is not working

I am facing an issue to run the below code. I directly ran the code from the Microsoft official documentation Code: from azure.functions import FunctionApp, TimerRequest, Context, AuthLevel import logging app =…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-05T04:03:34.8+00:00
Akash Kunwar 0 Reputation points
commented 2024-06-19T04:01:35.91+00:00
SwathiDhanwada-MSFT 18,466 Reputation points
1 answer One of the answers was accepted by the question author.

How to handle mutiple .py files in Azure Functions?

Hi all, I am trying to deploy an azure function which utilizes a lot of my own scripts and classes, which are to be executed via a blob trigger. I do not want to copy all the code into the function_app.py, but rather have it imported but have yet to…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-11T18:18:26.8966667+00:00
Victor Skou Fertin 25 Reputation points
commented 2024-06-18T18:11:36.4666667+00:00
Victor Skou Fertin 25 Reputation points
1 answer One of the answers was accepted by the question author.

Test/Run trigger not working from within Azure Function under Flex Consumption pricing tier; throws CORS error

I'm an Azure novice/intermediate. Please bear with me. I have a Function App with a collection of timer triggered functions that need to run for ~20minutes each. I decided to upgrade my Function App to the Flex Consumption plan from the lowest-tier…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-11T14:33:43.82+00:00
jmahmood 20 Reputation points
accepted 2024-06-18T11:58:23.3733333+00:00
jmahmood 20 Reputation points
3 answers

Azure Function: No such host is known Storage Account

Hi everyone, I have 2 Azure functions with VNet integration, and each of them has its own storage account. The first function is fine, but the second one generates this error when integrated into a network: Azure.Core: No such host is known.…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,875 questions
asked 2023-05-26T00:06:27.7533333+00:00
Jesus Orlando Aguilar Contreras 75 Reputation points
commented 2024-06-18T09:36:54.96+00:00
Amruta Deshmukh 0 Reputation points
1 answer One of the answers was accepted by the question author.

Encrypt/Decrypt for blobs produced or consumed outside of Azure

We have files we want to exchange with systems outside of Azure. For import we want them written to blob PGP encrypted by the source system, and for export want them PGP encrypted by ADF for the destination system. I understand that Azure does it's…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,576 questions
asked 2024-06-12T18:22:51.2166667+00:00
Moyer, Todd 80 Reputation points
commented 2024-06-18T08:03:09.85+00:00
Pieter de Bruin 321 Reputation points Microsoft Employee
1 answer

Does Function Apps scale instances automatically if an instance can’t start properly, and another if that instance can’t start, etc.?

A question: if a function app has network issues connecting to its storage and as such can’t start, would the container scale up more instances to try to cope? If the second one can’t start for the same reason, does it spin up a third and so on to the…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-13T08:16:47.8466667+00:00
Leif Rask 1 Reputation point
commented 2024-06-18T06:18:13.55+00:00
JananiRamesh-MSFT 23,256 Reputation points
1 answer

Validation failed for a resource. Check 'Error.Details[0]' for more information. (Code: ValidationForResourceFailed) This region has quota of 0 instances for your subscription. Try selecting different region or SKU. (Code: SubscriptionIsOverQuotaForSku)

I am unable to create a new Azure Function. It throws an error like below Validation failed for a resource. Check 'Error.Details[0]' for more information. (Code: ValidationForResourceFailed) This region has quota of 0 instances for your…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-07T16:15:47.69+00:00
Harendra Singh 0 Reputation points
commented 2024-06-18T06:14:22.5933333+00:00
JananiRamesh-MSFT 23,256 Reputation points
3 answers

The Subscription is not allowed to create or update the serverfarm

Hello Everyone,  I have been using Azure for a while, but just started trying to build some Function Apps. I want a function app to launch some python code. When I try to build the app, I get an error stating that my subscription isn't allowed to create…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-15T18:58:11.52+00:00
JustinRodriguez 0 Reputation points
edited the question 2024-06-18T02:26:00.1366667+00:00
Ryan Hill 26,866 Reputation points Microsoft Employee
0 answers

How to connect Function app and Event Grid?

Hey, I have two questions that are related to Event Grid and I'd be happy for any help. My idea is to have a function app that sends an event to another function app. For that I have created a topic in my Event Grid and set receiver function as a…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
343 questions
asked 2024-06-17T17:46:15.78+00:00
Vlad K 0 Reputation points
1 answer

FunctionApps are failing with "0 Unknown HTTP error"

Hi, I was trying to build few functions apps and they work as intended for a day or just few hours, then it suddenly stops with the following message: HTTP response code: 0 Unknown HTTP error HTTP response content: Error:…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-11T10:55:45.14+00:00
Varske 10 Reputation points
commented 2024-06-17T16:44:33.1233333+00:00
Kyle P 0 Reputation points
0 answers

Enhancing Event Processing Efficiency

Hello, I have documents that I read and use to create events of different types. The system_id serves as a unique identifier for each event and will be passed as a parameter for the vertex. I send these events to Event Grid with an endpoint at Azure…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
343 questions
asked 2024-06-06T14:56:20.08+00:00
Maryna Paluyanava 211 Reputation points
edited the question 2024-06-17T10:51:53.77+00:00
PRADEEPCHEEKATLA-MSFT 84,456 Reputation points Microsoft Employee
1 answer One of the answers was accepted by the question author.

ADF web activity payload is to big

We are using ADF now, there is a step need send Post to Remote Sever, but this payload is too big, far more than 896KB, it's already 15MB, so we try to store the request payload to blob and then use the Copy Activity, but we facing another issue is Copy…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
2,576 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
10,023 questions
asked 2024-06-07T03:06:18.0733333+00:00
Ricky chen (陈帅) 20 Reputation points
accepted 2024-06-17T10:02:25.73+00:00
Ricky chen (陈帅) 20 Reputation points
0 answers

Azure Event Grid Web Hook - Unauthorized Error

Hi everyone, We're upgrading our function apps to V4 and our Event Grid Web Hook trigger is now failing with a 401 Unauthorized Error. It's supposed to detect whenever a CSV file gets uploaded to our Blob Storage and trigger a function which creates…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
343 questions
asked 2024-06-17T07:52:02.97+00:00
Chris Buley 51 Reputation points
2 answers

Reading appsettings.json in a Docker container

How can I read appsettings.json in a Docker container? I created a Docker image using mcr.microsoft.com/azure-functions/dotnet:4, but when I run the image from a container, it cannot find the appsettings.json file. I added the file to the container in…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-05-31T15:06:44.9733333+00:00
Paul Bush 21 Reputation points
answered 2024-06-16T14:01:42.5033333+00:00
Martin Power 6 Reputation points
0 answers

How do we add the storage table data in cosmos db trigger in isolated worker process model in Azure function .net 8

Hi Team, Below is the current azure function cosmos db trigger configuration, [FunctionName("log-available-agents")] public async Task Run([CosmosDBTrigger( databaseName: "%CosmosDatabaseId%", collectionName:…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
asked 2024-06-15T17:45:51.7266667+00:00
lakshmi 651 Reputation points
edited the question 2024-06-15T18:09:26.6833333+00:00
lakshmi 651 Reputation points
1 answer

Spring boot azure function : Http Trigger : This function was programmatically called via the host APIs return 500 error

I am trying to create a spring boot azure function using the following guide https://github.com/eggboy/springcloud-azurefunction/tree/springboot3 https://medium.com/microsoftazure/create-azure-function-with-spring-cloud-function-ab150216d2bd I was able…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Spring Apps
Azure Spring Apps
An Azure platform as a service for running Spring Boot applications at cloud scale. Previously known as Azure Spring Cloud.
114 questions
asked 2024-06-15T11:39:59.12+00:00
Kapila Roshan Bogahapitiya 0 Reputation points
answered 2024-06-15T11:41:48.3966667+00:00
Kapila Roshan Bogahapitiya 0 Reputation points
1 answer

Function App host storage account shared key access disabled issues.

Hi, Please help on the below issue. Recently I set "disabled" on my host storage account Property "Allow storage account key access" as part S360 issue fix but Function app which is running in Standard plan stopped working. Storage…

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,571 questions
Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,875 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
20,361 questions
asked 2024-06-15T06:04:13.0066667+00:00
SivaD 0 Reputation points Microsoft Vendor
edited an answer 2024-06-15T06:14:47.6166667+00:00
akinbade abiola 7,355 Reputation points