Does AWS support weighted load balancing? From what I see, Elastic Load Balancer only supports round-robin load balancing.
The easiest thing that I can do is to put a load balancer like Nginx in front of it, like:
upstream backend {
server backend1.example.com weight=1;
server backend2.example.com weight=2;
server backend3.example.com weight=4;
}
Here, out of these requests, one will go to backend1, two will go to backebd2 and so on, it will work but for that, I need to set up a server with Nginx. If AWS would directly support weighted load balancing that would be easier.