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:

  1. 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.

  2. 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

link|improve this question

So, what is is the question you are asking? – cdeszaq Nov 30 '11 at 17:34
3 questions in the description. Maybe asking for too much? – Harry Mexican Nov 30 '11 at 17:51
Yes, break them down if you can. Also, make the questions stand out more. People won't search for them. – cdeszaq Nov 30 '11 at 17:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.