A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.microsoft.com/en-us/answers/tags/87/azure-functions below:

Azure Functions - Microsoft Q&A

Microsoft Q&A

Azure Functions

6,031 questions

An Azure service that provides an event-driven serverless compute platform.

6,031 questions with Azure Functions tags

1 answer One of the answers was accepted by the question author.

Azure Functions Zone Redundancy as a multiregion solution

Is Azure Functions Zone Redundancy just a availability solution, making sure that local disruptions don't take out the whole app, or does it also help to serve customers using the closest instance? Is there any routing logic/functionality that users…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-16T16:25:53.1266667+00:00 commented 2025-08-17T07:02:07.1533333+00:00 asked 2025-08-12T22:17:52.8+00:00 commented 2025-08-15T21:56:07.99+00:00

1 answer

How to reduce cold start latency in Azure Functions on Consumption Plan?

I’m developing Azure Functions on the Consumption Plan, and I’m facing significant cold start delays (5-10 seconds) when the function triggers after being idle. This impacts the responsiveness of HTTP-triggered functions in my app. What I’ve tried so…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-05T22:05:32.9466667+00:00 answered 2025-08-15T15:33:51.2933333+00:00

0 answers

Why does the TimeTrigger not fire ?

I've this Azure Function with a TimeTrigger: [Function("SomeFunction")] [FixedDelayRetry(5, "00:00:05")] public async Task Run([TimerTrigger("0 */5 * * * *")] TimerInfo timerInfo) { // Awaiting some async stuff …

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-15T09:01:34.3033333+00:00 edited the question 2025-08-15T09:10:30.4133333+00:00

0 answers

Azure Function - Unrecognized Function After CI/CD Deployment

Hi everyone, I am facing an issue with deployment Azure Function with Github Action, function not visible in overview. I am using Python v2 programming model. This is the GitHub Action script that I use: # Docs for the Azure Web Apps Deploy action:…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-07-29T06:22:08.63+00:00 commented 2025-08-15T04:28:31.2766667+00:00 asked 2025-08-07T21:57:19.1933333+00:00 commented 2025-08-14T19:48:28.4933333+00:00 asked 2025-07-30T08:59:02.26+00:00 commented 2025-08-14T19:47:05.0633333+00:00 asked 2025-08-14T15:29:50.7966667+00:00 answered 2025-08-14T16:27:04.4733333+00:00

0 answers

Azure Functions App | Getting error calling external API

Hi community! I currently have an Azure Function App that it's written in PowerShell on a Linux OS (it always uses Linux when I even try to create a new Function App on a Flex Consumption plan), the objective is to call an external API. First a POST and…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

1 answer

Is there additional cost for turning always_on for Azure Function?

We already have a premium app service plan in our enterprise. So, would there be additional costs for enabling always_on in Azure function? If so, would creating a timer trigger function (in PowerShell I think?) to disable always_on during off peak hours…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-03-12T15:48:44.9433333+00:00 commented 2025-08-14T13:00:23.7966667+00:00 asked 2025-08-14T11:36:33.04+00:00 asked 2025-08-14T11:36:33.04+00:00 asked 2025-08-12T09:12:46.42+00:00 commented 2025-08-14T09:26:18.3133333+00:00 Rupesh Asati 85 Reputation points • Microsoft External Staff • Moderator

0 answers

RabbitMQ Trigger Support in Azure Functions Python v2

Hi, I’m currently working on Azure Functions in Python and was planning to use a RabbitMQ trigger. However, I’ve just realised that the RabbitMQ trigger appears to only be available in the v1 programming model. Could you please confirm whether there is…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-07T16:49:29.64+00:00 commented 2025-08-14T09:04:06.7366667+00:00

0 answers

Azure Function stops executing midway without any errors

I have created an Azure function (python HTTP Trigger) which reads csv files from a storage account, transforms the data and loads it into an azure postgres database. The csv files i am running are in the range of 20-50 gb files and has the potential to…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-14T05:14:28.32+00:00 commented 2025-08-14T08:22:39.7466667+00:00

0 answers

Azure Insights gets no telemetry data from Azure Functions

I have some Azure Functions that "setup" to Azure Application Insights, but I do not get any data in the Azure Application Insights. Basic Troubleshooting I have done already: I know my Azure functions are running and executing correctly…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-07-14T20:40:09.24+00:00 commented 2025-08-14T08:04:53.31+00:00 Rupesh Asati 85 Reputation points • Microsoft External Staff • Moderator

0 answers

Durable function stuck after a activity completion

I have a Durable Function that extracts data from Table Storage, fetches data from an API, processes it, and stores JSONL files in Blob Storage. The processing happens in batches using ContinueAsNew. This function has been running smoothly for 3-4…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-12T04:48:31.36+00:00 commented 2025-08-14T08:03:01.6733333+00:00 Rupesh Asati 85 Reputation points • Microsoft External Staff • Moderator

0 answers

I can't upload my azure function

I’m having trouble deploying my local Azure Function. The deployment logs show the message: "No HTTP triggers found", and I suspect this might be the reason why it’s failing. Additionally, I can’t create a new Azure Function from the Azure…

Azure Functions Azure Functions

An Azure service that provides an event-driven serverless compute platform.

asked 2025-08-08T02:11:41.61+00:00 commented 2025-08-14T08:02:38.2566667+00:00 Rupesh Asati 85 Reputation points • Microsoft External Staff • Moderator asked 2025-08-13T08:14:28.9766667+00:00 commented 2025-08-14T06:57:54.67+00:00

4 answers One of the answers was accepted by the question author.

asked 2024-04-12T16:26:31.89+00:00 edited an answer 2025-08-14T06:55:19.8166667+00:00 Pradeep M 9,785 Reputation points • Microsoft External Staff • Moderator

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4