Questions tagged [timer-trigger]

84 questions
0
votes
1 answer

TimerTrigger support Ending

Can anyone point me to where this announcement is held publicly? I remember getting an e-mail a while ago that stated The TimerTrigger support was ending in 12 months. We do use one and we want to log that we have work to do to change it when not…
onesixtyfourth
  • 744
  • 9
  • 30
0
votes
1 answer

Keeping user session alive with Azure Function

Since I cannot trigger a Timer-based function with a queue or providing it with a param (session id to keep it alive, refreshing it every 30 minutes), is it possible to create a basic HTTP/Queue Function (and NOT Timer function) and add a c# code…
nmrlqa4
  • 659
  • 1
  • 9
  • 32
0
votes
1 answer

Is it possible to pass a double variable as an argument in Timer Trigger Azure function?

I am making a Timer trigger Azure Function. I am using a variable here which indicates TimeToCopy. This variable has to be updated after every iteration of the function. I have: [FunctionName("Function1")] public static void…
das
  • 201
  • 1
  • 3
  • 10
0
votes
1 answer

Azure function with Timer Trigger is working but why does my resource keep running?

I've been using the new Azure Functions for 3 months now, and everything is working fine. I got a timer trigger set up to trigger every day. (see screenshot) But this Azure Function is only running <1 sec a day, but still the Resource is up and…
Jelle
  • 365
  • 3
  • 11
0
votes
1 answer

Want to trigger Different methods at different time interval in Azure Web Job

I have hosted my web job through website (with option Added Existing project as a Azure Webjob). I am want to trigger different methods at different time interval. Code : static void Main() { var config = new JobHostConfiguration(); …
-1
votes
1 answer

Set Cron in Azure that runs from a particular time every 5 minutes

Is it possible to run a timer trigger function 5 mins starting from a particular time and date. I want the timer trigger function to run from for eg 7 Aug 2023 from 12:00 am at every five mins. Eg 0 0 0,23 7 Aug This run 7 Aug only. But I want the…
Minimalism
  • 107
  • 2
  • 9
-1
votes
1 answer

python timer trigger errors no job functions found

I have created an azure timer trigger function using python, IDE as VSCode. My project folder structure is as shown below. As you can see on the "Terminal" it is giving me an error saying "No job functions found". This is because my "Dockerfile"…
Vijay Ande
  • 101
  • 11
-1
votes
1 answer

How to invoke functionapp on every 5 minutes with Httptrigger function?

I have small doubt I have one function app with Httptrigger function .I want to invoke this function app on every 5 miutes ? automatically this should happen If it is supposed to be possible May i know how can we acheive this? Any help is…
-2
votes
1 answer

How to set multiple Timers trigger time dynamically in Azure WebJob

My solutions are below. Please check below points.
1 2 3 4 5
6