With an Azure WebJob with QueueTrigger, does setting the graph have any effect?

I have an Azure WebJob that has a QueueTrigger setting (so that the task will run when the item is found in the corresponding storage queue. When I load the task, I don't know if I should choose Run on schedule or Run on demand. If I choose execution as scheduled, does the job reload and execute the Main () function every iteration, then wait for triggers?

I would like the job to start the install once and then essentially wait for triggers. I tried looking for documentation but couldn't find any guidance on this, any help would be appreciated, thanks!

+3


source to share


1 answer


After doing some trial and error (also definitely don't follow the schedule, this caused some phantom sites to keep popping from queues even after they were deleted), it seems like the Continuous

right way to run the queued web jobs.



+3


source







All Articles