Static Algorithms Round robin The client requests are sent to different service instances in sequential order. The services are usually required to be stateless. Sticky round-robin This is an improvement of the round-robin algorithm. If Alice’s first request goes to service A, the following requests go to service A as well. Weighted round-robin The admin can specify the weight for each service. ..