When people talk about scaling a website with 'shards', what do they mean? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:07:06Z http://stackoverflow.com/feeds/question/91710 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91710/when-people-talk-about-scaling-a-website-with-shards-what-do-they-mean 10 When people talk about scaling a website with 'shards', what do they mean? Phil Wright 2008-09-18T11:17:45Z 2009-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#91751 9 Answer by Oded for When people talk about scaling a website with 'shards', what do they mean? Oded 2008-09-18T11:26:49Z 2008-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#91757 2 Answer by Tom Ritter for When people talk about scaling a website with 'shards', what do they mean? Tom Ritter 2008-09-18T11:28:35Z 2008-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#91906 1 Answer by Spear for When people talk about scaling a website with 'shards', what do they mean? Spear 2008-09-18T12:05:51Z 2008-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>