You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have go between installed to spread load over 4 different servers. This works fine, but I want outgoing requests to for example myserver.com or a whitelist of hosts to go always over the same server instead of using roundrobin or random allocation of my 4 servers.
Is this somehow possible with the current gobetween settings or can this be implemented?
That would be very helpful.
The text was updated successfully, but these errors were encountered:
iphash or iphash1 routes all traffic over the same backend instead of spreading it over all the backends, because the traffic is coming from the same client IP.
I can achieve the same thing by dropping gobetween and making direct connections. That's not what I want.
On the contrary, I want 99% of all my outgoing connections through gobetween to be balanced over all my backends, and preferably using the fastest backend available. Right now I achieve this by using roundrobin.
Only for specific requests to certain websites, where it is necessary to always have the same IP, I want gobetween to always use the same Backend instead of a random one. If I use roundrobin on these connections, I will be requesting always with a random IP of one of my Backends. I want to control and ensure what backend these specific connections use and not leave it to roundrobin.
Hi,
I have go between installed to spread load over 4 different servers. This works fine, but I want outgoing requests to for example myserver.com or a whitelist of hosts to go always over the same server instead of using roundrobin or random allocation of my 4 servers.
Is this somehow possible with the current gobetween settings or can this be implemented?
That would be very helpful.
The text was updated successfully, but these errors were encountered: