Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does the azure compute emulator simulate the performance?

Does the azure compute emulator try to simulate instance performance based on the vmsize specified in the service definition file?

like image 741
Joe Avatar asked Mar 24 '23 02:03

Joe


1 Answers

The Azure emulator is a local (your computer) emulator of Windows Azure. It allows you to build and test logic of your application before Azure deployment.

The emulator will not reduce performance if you are testing small instance on a very powerful system. So sometimes single emulator instance can perform better in compute emulator than on Azure. However, real power of Azure comes with ability of scaling out your application (among other great features).

like image 104
Tom Avatar answered Apr 08 '23 03:04

Tom