Reputation: 13610
What is the difference between WebJob and Cloud Service? I'm trying to get an overview over the two and by definition they seem to be able to accomplish the same goal? Maybe Cloud Service has more features?
Upvotes: 10
Views: 3697
Reputation: 136196
Cloud Services (Web/Worker Role) will give you a full virtual machine (VM). Since you wanted to compare WebJobs with Cloud Service, I am assuming you're interested in Worker Role. Typically you would want to use a Worker Role to process background tasks. You could do the same with WebJobs as well. From what I understand, here are some of the key differences:
PaaS
offering but I consider WebJobs as true PaaS offering as you just come with your task and the platform takes care of scheduling and executing that task. Upvotes: 12