Oleg Sh
Oleg Sh

Reputation: 9011

Azure Functions "throttling" calls

I have an Azure timer Function (v3):

    [Microsoft.Azure.WebJobs.Singleton]
    [Function(nameof(FunctionCreateSuspensionRequestsReachSmsLimit))]
    public async Task Run([TimerTrigger("0 40 * * * *")] MyInfo myTimer, FunctionContext context)

so, it should be called every hour at 40 minutes 0 seconds. But really I see the following:

enter image description here

Why it's not called at 02:40, 03:40 etc?

Thanks

Upvotes: 1

Views: 103

Answers (1)

anon
anon

Reputation:

I have created .NET 6 Azure Functions Timer Trigger on the Azure Portal with the same duration "0 40 * * * *" you have given:

enter image description here Tested today by creating the new function app around 6 AM and checked, it was not missing any schedules in between the executions that I observed for 2 consecutive days:

enter image description here

enter image description here

  • Even though the log streaming service time outs, schedule functionality works continuously until we stop from the log console.
  • Please recreate the Function App Timer Trigger with the same duration and check once.

Upvotes: 0

Related Questions