I am running function app and it is timedbased trigger of 10 min so I want to know like is it going to run another instance even if already running one is not finished yet.

Sharma, Yashaswi 1 Reputation point
2022-08-12T12:41:41.45+00:00

I have made the time trigger based function app using Python now I have one doubt like is it creating multiple instance of function app and running simultaneously all the instance if it has been trigger in the interval and all have not finished it processing yet.
Actually, I don't want in that way, I want it to start running to another time once this already running one is finished.

So please let me know any property which will help in setting this to one so that only at a time one is running.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,911 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Cristian SPIRIDON 4,486 Reputation points Volunteer Moderator
    2022-08-13T05:17:19.087+00:00

    Hi

    If you have a time triggered function it will not run another instance based on that trigger. You have to not trigger the function by other means though:

    https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=in-process&pivots=programming-language-csharp#scale-out

    Hope this helps!

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.