Questions tagged [round-robin]
64 questions
1
vote
1 answer
Round Robin with single source
We have built ourselves an API and are busy scaling it. At current we have 6 hosts and we use DNS Round Robin to spread the load.
However a lot of our traffic comes from single source. We plug into our client system so they use one source IP to…

Charlie Davies
- 111
- 2
1
vote
1 answer
Can I Repeat Records in DNS Load Balancing?
I would like to bring up the load on a new server slowly over time.
Unfortunately there is no front-end load balancer we can use to adjust this, so I just insert a new DNS record for the domain name. This will split the traffic approximately 50/50…

Jacob Groundwater
- 208
- 2
- 7
1
vote
1 answer
Can the DNRD master file contain multiple records for a name?
I am trying to get DNRD to serve certain records from the master file in a round robin manner.
I have tried several combinations e.g.:
1.1.1.1 hostnameA
2.2.2.2 hostnameA
1.1.1.1 2.2.2.2 hostnameA
1.1.1.1, 2.2.2.2 hostnameA
1.1.1.1,2.2.2.2…

mr-euro
- 848
- 3
- 14
- 31
0
votes
0 answers
How to have clients' requests automatically dispatched to 10 different load-balancing machines, round-robin-style?
I know how to setup these solutions:
Let's say the website www.example.com has a single machine for it (IP 203.0.113.123), using a Linux + Apache server. It works if the bandwidth is not too high.
Let's say we now have more and more requests for…

Basj
- 709
- 3
- 11
- 29
0
votes
4 answers
Why is my Nginx Load balancer proxying to first server only?
I have a load balancer using Nginx from the Servers For Hackers tutorial site. This refers to two servers in a round robin setup. I have a self signed SSL certificate in place to test an http to https redirect.
When I access the ip address of…

LeDoc
- 111
- 4
0
votes
1 answer
Round-robin outgoing TCP requests between multiple Ethernet adapters on Windows
I have a Windows Server Standard with 3 Ethernet adapters. I am running a C# application that makes TCP connections to another server. Right now they are all made via the adapter that has a default gateway. Is there a way to make the connections go…

alexalok
- 3
- 1
0
votes
2 answers
pdns - using LUA records
Id very much like to do this but it doesn't seem to be enabled on my installation.
# rpm -qa | grep pdns
pdns-4.1.5-1pdns.el7.x86_64
pdns-recursor-4.1.7-1pdns.el7.x86_64
Ive tried both iterations in pdns.conf (enable-lua-record and…

ethrbunny
- 2,369
- 4
- 41
- 75
0
votes
1 answer
Bonding SWITCH XS (incoming packets)
I would like to bound 2x10Gb/s of a Linux server to receive/inbound more than 10Gb/s on a virtual interface send by a unique client. The client will probably send more than 10Gb/s (probably bonded also).
Bond mode round robin in this case (high…

akira2x3x
- 15
- 1
- 5
0
votes
1 answer
NetScaler prioritizing faster hosts in round robin
For a NetScaler load balancer running SSL passthrough, is there any aspect to the round robin load balancing algorithm that would direct more traffic to hosts that respond more quickly?
As a concrete example, in a load balancer directing traffic to…

Spencer
- 1
0
votes
2 answers
How does aws elastic route requests via round robin?
I am looking at graph which shows CPU load on EC2 instances. I spot that when for 1 EC2 CPU increases for 2 it decreases at same time. After some period (5 minutes) they changed that 1 decreases and 2 increases, after next 5 minutes they changed…

Cherry
- 101
- 3
0
votes
4 answers
How to setup a Route 53 DNS record in front of three other records?
I have a zone in Route 53; let's call it example.com. I have three A records in that zone:
server1.example.com --> elastic_ip_1
server2.example.com --> elastic_ip_2
server3.example.com --> elastic_ip_3
I want to add a new record to Route 53 with…

user35042
- 2,681
- 12
- 34
- 60
0
votes
1 answer
round robin dns in windows server not working
Running Windows 2012 R2
Round Round enabled for my DNS zone (AD integrated)
Im either not understanding this or its not working.
I want to use round robin dns to resolve to a cluster of servers.
First I tried creating a new sub domain and cname…

red888
- 4,183
- 18
- 64
- 111
0
votes
1 answer
Sharing connection status between multiple HAProxy
I need to upgrade our current infrastructure based on a single server to a multi server one. Basically we run an HTTP app, MySQL and other services.
My idea is to put HAProxy on all the servers so they can balance/failover themselves.
Something…

Maxxer
- 302
- 5
- 21
0
votes
1 answer
Issues to loadbalanced web servers in network when one fails
I have a network of one load balancer server (using nginx) lb1 which routes traffic between four web servers web1, web2, web3, web4. These four webservers are routed to using round-robin in nginx.
All servers are set to max_fails=1 and…

Tyler Hanavan
- 3
- 4
0
votes
1 answer
Load balancer questions
I have a website (ex: www.website.com) on aws that uses a large amount of streaming data (up to 10mbps / user). Lets say that my website is slowing down because the server simply cannot handle that much data on its current connection (100mbps,…

Eric
- 5
- 1