I know that horizontal partitioning...you can create many tables.
How can you do this with multiple servers? This will allow Mysql to scale.
Create X tables on X servers?
Does anyone care to explain, or have a good beginner's tutorial (step-by-step) that teaches you how to partition across multiple servers?
But you need to keep in mind that if you for some reasons want to take this solution to cloud and make it multi tenant then the above configuration might become more challenging. Think about this -
So now the question is that you will probably need to think how can you do this sharding in a mster-slave kind of env where slaves are typically for reading and masters for writing.
cheers ! Gary
Here what is written at the announce of HSCALE 0.1:
Have a look at this project : http://sourceforge.net/projects/hscale/ maybe it will be suitable for you.
With MySQL, people generally do what is called application based sharding.
In a nutshell, you will have the same database structure on multiple database servers. But it won't contain the same data.
So for example:
Sharding (of course) is not a backup technique, it's meant to distribute reads and writes across a cluster.
Techniques employed to shard are the MySQL-Proxy, for example. This is nothing that HScale invented, it's more or less a simple LUA script which distributes reads and writes to different backend servers. There should be plenty of examples on the MySQL forge.
Another tool (based on MySQL Proxy) is SpockProxy. Completely tailored towards sharding. They also got rid off Lua, and they worked on various things to make it speedier than the proxy. So far, I have only tested SpockProxy, but never ran it in production.
Now aside from those proxies, you can shard yourself as well. Required would be a master table, e.g.:
Then construct your reads and writes towards the server. Not very pretty but that works. The next obstactle would be to make it more falt tolarant. So for example,
server1
,server2
andserver3
each should be a small cluster.And last but not least, another interesting approach to partition data and indices across servers is Digg's IDDB. I'm not sure if they ever released its code, but their blog posts gives great details on what it does.
Let me know if this helps!