I am trying to figure out the ideal network topology for a network of computers that work together to serve external requests.
Option 1: Servers share state using a database. All READ and WRITE requests go to database and back to client. Servers all connected to DB but not to each other. STAR topology.
Option 2: Servers maintain sync by letting each other know about all WRITE requests they receive from the outside world. READs are not shared. Full interconnect between nodes.
n = number of servers
R/W = READ/WRITE ratio of external requests
If I solve for the number of servers at which the internal traffic is equal I get:
n = R/W + 2
Two questions:
Is this a reasonable to estimate which network to use, all other things being equal? I realize testing this is the best solution, but it's a LOT of work.
Does someone know of a topology that scales better than fully connected, yet is efficient at low numbers of nodes as well? Effectively beating both Options I've come up with.
I really appreciate your help on this!
PS: number of connections in a fully connected network is (n^2-n)/2