Implementing database redundancy with sharded tables

Posted by ensnare on Stack Overflow See other posts from Stack Overflow or by ensnare
Published on 2010-03-30T06:28:49Z Indexed on 2010/03/30 6:33 UTC
Read the original article Hit count: 479

Filed under:
|
|
|

We're looking to implement load balancing by horizontally sharding our tables across a cluster of servers. What are some options to implement live redundancy should a server fail?

Would it be effective to do (2) INSERTS instead of one ... one to the target shard, and another to a secondary shard which could be accessed should the primary shard not respond? Or is there a better way?

Thanks.

© Stack Overflow or respective owner

Related posts about mysql

Related posts about sharding