Hi I am working with a single http endpoint that i can send requests to. I am working with Azure load balancer which should balance requests between 4 VMs. According to what i have read so far. The load balancer should use a round robin method to do the routing.
How do I make http requests in such a way that I am sure I have hit all the VMs and not just the first VM. I suppose I must do a concurrent request of some sort. Maybe an asynchrounous parallel request? The VMs have identical data so its pertinent that I hit all 4 VMs with 4 requests. I hope my question is clear enough
Also I have the VM server instance Id's. How do i use the id's to specify the server i want to hit in the request.