Partitioning requests in code among several servers

Posted by Jacques René Mesrine on Stack Overflow See other posts from Stack Overflow or by Jacques René Mesrine
Published on 2010-05-03T02:36:57Z Indexed on 2010/05/03 2:38 UTC
Read the original article Hit count: 248

I have several forum servers (what they are is irrelevant) which stores posts from users and I want to be able to partition requests among these servers. I'm currently leaning towards partitioning them by geographic location. To improve the locality of data, users will be separated into regions e.g. North America, South America and so on.

Is there any design pattern on how to implement the function that maps the partioning property to the server, so that this piece of code has high availability and would not become a single point of failure ?

f( Region ) -> Server IP

© Stack Overflow or respective owner

Related posts about scalability

Related posts about Performance