0

I have three IP addresses using the same gateway. Two of them are configured as a cluster with multicast address setup. If there is a heavy UDP traffic between those two, can that affect the network on the third IP address ?

CBR
  • 191
  • 1
  • 6
  • I've had first hand experience with cluster/load balancing related multicast traffic causing network congestion problems that affected all hosts connected to the same switch, so I'd say yes this has the potential to create problems. – joeqwerty Jul 19 '13 at 12:59
  • Looks like you have faced the same issue that I'm currently going through. Any recommendations that you can offer me ? or what did you do to resolve this ? – CBR Jul 19 '13 at 14:04
  • We dual homed the load balanced servers to isolate the heartbeat network from the rest of the network. One NIC for the load balanced traffic connected to an isolated switch and the second NIC connected to the backend network. Of course this required firewall and router changes as well. – joeqwerty Jul 19 '13 at 14:45
  • thanks @joeqwerty. I'm thinking to find a solution without adding another NIC. – CBR Jul 19 '13 at 16:26

2 Answers2

0

Could the network be configured so this is not a problem? Yes.

Could the network be configured so this is a problem? Yes, but unlikely.

The simplest configuration (everything plugged in to a simple Ethernet switch) would likely not be overwhelmed by the cluster's UDP traffic because of the congestion control properties of IP.

longneck
  • 22,793
  • 4
  • 50
  • 84
0

It depends on the traffic pattern. Bandwith isn't everything..

99% of the switches out there are designed as access switches, who typically have very small buffers on each port, or on a subset of ports. If you are doing very heavy traffic with a high amount of PPS (packets per second) you could potentially fill up the switch buffer, or even worse, exhaust the ASIC (if there is one on your switch) and then trigger software switching in the CPU.

These are all big if's, and it's impossible to give you an exact answer without a very detailed documentation of your environment. Just don't go shopping for an access switch (even a Cisco 2960S counts as access switch) and expect tremendous performance with a million packets per second..

pauska
  • 19,532
  • 4
  • 55
  • 75