Reputation: 12912
I just came across a new Azure feature - Azure Scheduler:
http://gauravmantri.com/2013/11/10/windows-azure-scheduler-service-part-i-introduction/
I was wondering - from an architectural perspective - how is this any better or different from using an online CRON service to send a predefined request to a WebAPI endpoint? I'll need a WebAPI endpoint in both cases - with the Azure offering, I have the ability to Enqueue into an Azure Queue, but otherwise it's the same thing, right (maybe with the former being cheaper)?
Upvotes: 0
Views: 397
Reputation: 5419
Two big differences with the scheduler service
As good as it may be, it is expensive compared to other offerings in the market (I use setcronjob). As you point out, you still need to write your job endpoint anyway.
Upvotes: 1