Data Sharding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:59:00Z http://stackoverflow.com/feeds/question/1054479 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1054479/data-sharding 2 Data Sharding razor 2009-06-28T07:43:55Z 2009-06-28T09:09:27Z <p>I'm interested in sharding my websites user data across multiple servers.</p> <p>For example, users will login from the same place. but the login script needs to figure out what server that users data resides on. So the login script would query the master registry for that user name, and it might return that it's on server B. The login script would then connect to server B and verify the username/password. Does that make sense? Is it normal to have something like a master registry to resolve where data resides?</p> <p>also- I've searched but I haven't had much luck finding tutorials/information/strategies on sharding. If there are any online resources that you are aware of on the topic I would greatly appreciate it if you would share so that I may educate myself. Thanks!</p> http://stackoverflow.com/questions/1054479/data-sharding/1054484#1054484 1 Answer by Jon Skeet for Data Sharding Jon Skeet 2009-06-28T07:48:18Z 2009-06-28T07:48:18Z <p>One option you might want to consider: use a simple hash. For example, take the MD5 hash of the username, then treat the last 8 bytes of that as a long. Take that long mod (number of servers) and make that the server to put the data on. That way you don't need any central registry/configuration other than an ordered list of servers.</p> <p>The disadvantage is that changing the number of servers involves moving all the data to the new "correct" location...</p> <p>(There's also the matter that if one machine goes down, those users are stuffed - you'll want to consider having some sort of redundancy.)</p> http://stackoverflow.com/questions/1054479/data-sharding/1054578#1054578 2 Answer by mdorseif for Data Sharding mdorseif 2009-06-28T09:09:27Z 2009-06-28T09:09:27Z <p>You should check the very informative <a href="http://highscalability.com" rel="nofollow">http://highscalability.com</a> site. Posts worth reading:</p> <ul> <li><a href="http://highscalability.com/flickr-architecture" rel="nofollow">Flickr Architecture</a> and <a href="http://highscalability.com/federation-flickr-doing-billions-queries-day" rel="nofollow">Federation</a></li> <li><a href="http://highscalability.com/livejournal-architecture" rel="nofollow">Liveyournal Architecture</a></li> <li><a href="http://highscalability.com/habits-highly-scalable-web-applications" rel="nofollow">Habits of Highly Scalable Web Applications</a></li> </ul> <p>Generally you are following the right approach but this can get nasty quite fast if you need to do queries on more than one cluster - e.g. "your firends recent posts" type queries.</p>