i want to split a product table into many smaller one, and put the table in diffrent server. but there has some problems with me: if i sharding the database with the product id. how can i get all product belong to some categorys when someone list one product category. anybody get a good ideals ?

link|improve this question
1  
The first question is: why do you want to do this? What makes you think you need to shard? – Mchl Sep 5 '10 at 10:30
because the product table is very large now. i want to improve the performance. will you help me? – 52226777 Sep 5 '10 at 10:49
what's very large ? – f00 Sep 5 '10 at 11:04
feedback

1 Answer

This is a good question. If all you want to do is put some records in another database and you are not going to be doing joins with those records on any other tables, then yes all you have to do it tell your application to insert records 1-10000 in shard 1 and 10001 -20000 in shard 2. But if you want to do a query from shard 1 to shard 2, that won't work, and you will need a product like dbShards. dbShards is a good sharding tool and has great reviews. Also they will help you develop an overall sharding strategy for your application.

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.