If I have a WCF service hosted in an Azure webrole, how many small machine instances would I need to spin up so that potentially 1000 clients could be connected at once?
Processing power is not the issue I'm concerned about, just the maximum number of active connections that Azure will allow me to have open at any given moment.
We have a service method that will take some time to complete (say 20-30 seconds) and we need to know roughly how many open connections Azure will allow us to have per small instance so we can ensure 1000 people man connect at once.
Thanks!