When people talk about scaling a website with 'shards', what do they mean? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:07:06Zhttp://stackoverflow.com/feeds/question/91710http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/91710/when-people-talk-about-scaling-a-website-with-shards-what-do-they-mean10When people talk about scaling a website with 'shards', what do they mean?Phil Wright2008-09-18T11:17:45Z2009-05-12T19:31:15Z
<p>I have heard the 'shard' technique mentioned several times with regard to solving scaling problems for large websites. What is this 'shard' technique and why is it so good?</p>
http://stackoverflow.com/questions/91710/when-people-talk-about-scaling-a-website-with-shards-what-do-they-mean/91751#917519Answer by Oded for When people talk about scaling a website with 'shards', what do they mean?Oded2008-09-18T11:26:49Z2008-09-18T11:26:49Z<p>Karl Seguin has a <a href="http://codebetter.com/blogs/karlseguin/archive/2008/06/30/scale-cheaply-sharding.aspx" rel="nofollow">good blog</a> post about sharding.</p>
<p>From the post:</p>
<blockquote>
<p>Sharding is the separation of your
data across multiple servers. How you
separate your data is up to you, but
generally it’s done on some
fundamental identifier.</p>
</blockquote>
http://stackoverflow.com/questions/91710/when-people-talk-about-scaling-a-website-with-shards-what-do-they-mean/91757#917572Answer by Tom Ritter for When people talk about scaling a website with 'shards', what do they mean?Tom Ritter2008-09-18T11:28:35Z2008-09-18T11:28:35Z<p>In brief, imagine seperating your users_tbl across several servers. So Users 1-5000 and on Server 1, Users 5000-10000 on Server 2; etc. If your data model is sufficiently abstract in code, it's often not a huge change in code. </p>
<p>Of course this approach becomes difficult if all your queries are similar to "SELECT COUNT(*) FROM users_tbl GROUP BY userType" but when your where is "WHERE userid = 5" then it makes more sense.</p>
http://stackoverflow.com/questions/91710/when-people-talk-about-scaling-a-website-with-shards-what-do-they-mean/91906#919061Answer by Spear for When people talk about scaling a website with 'shards', what do they mean?Spear2008-09-18T12:05:51Z2008-09-18T12:05:51Z<p>As 'sharding' is part of the architecture principles for large websites, you may be interested in listening to 'eBay's Architecture Principles with Randy Shoup' <a href="http://www.se-radio.net/podcast/2008-09/episode-109-ebay039s-architecture-principles-randy-shoup" rel="nofollow">here</a>.</p>