vote up 0 vote down star

What is the concept of Sharding from Database Design perspecitve ?

flag

It's roughly equivalent to "pain, pain, pain". But if you must, there is a ton of info on percona.com . In particular, I recommend percona.tv/performance/… – SquareCog Oct 24 at 23:39
Duplicate of stackoverflow.com/questions/992988/… – Jim Ferrans Oct 25 at 7:06

2 Answers

vote up 2 vote down check

Partitioning the key space across a cluster of DB servers to distribute the service load and promote scalability of the overall system.

link|flag
And a good/detailed article on sharding: codefutures.com/database-sharding – Marcel J. Oct 24 at 23:31
vote up 1 vote down

Well you could start by reading the wikipedia article on it, and perhaps the Hibernate Shards documentation. If you then have a more specific question, then ask that.

Horizontal partitioning is a design principle whereby rows of a database table are held separately, rather than splitting by columns (as for normalization). Each partition forms part of a shard, which may in turn be located on a separate database server or physical location. The advantage is the number of rows in each table is reduced (this reduces index size, thus improves search performance).

link|flag
1  
This seems to equate sharding with horizontal partitioning, which is misleading. Sharding is breaking up the db into multiple instances; it involves issues with replicating shared state, migrating shards to load-balance, etc. Partitioning is on a per-table basis, and often does not involve multiple instances. – SquareCog Oct 24 at 23:44

Your Answer

Get an OpenID
or

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