Azure Web Roles and Worker Roles

0

What is Azure Web Role and Worker Role? What are the differences between them and in what scenarios can we use each one?

    
asked by anonymous 26.08.2017 / 02:57

1 answer

1

The main difference between the two is that Web Role runs with IIS support, while a Worker Role does not.

For example, a WebRole is a web application that will perform an operation that has no returns, and does not necessarily have low latency. It has an endpoint to be triggered via HTTP, but there is concern about IIS's timeout .

The same with Worker Role, but this is like a Console application, it does not require IIS to run, therefore there is no endpoint for it and no concern for timeout in>.

    
28.08.2017 / 09:28