Extreme Sharding: One SQLite Database Per User - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T23:42:51Zhttp://stackoverflow.com/feeds/question/128919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user2Extreme Sharding: One SQLite Database Per UserSeun Osewa2008-09-24T18:28:36Z2009-05-24T12:00:51Z
<p>I'm working on a web app that is somewhere between an email service and a social network. I feel it has the potential to grow really big in the future, so I'm concerned about scalability.</p>
<p>Instead of using one centralized MySQL/InnoDB database and then partitioning it when that time comes, I've decided to create a separate SQLite database for each active user: one active user per 'shard'.</p>
<p>That way backing up the database would be as easy as copying each user's <em>small</em> database file to a remote location once a day.</p>
<p>Scaling up will be as easy as adding extra hard disks to store the new files.</p>
<p>When the app grows beyond a single server I can link the servers together at the filesystem level using GlusterFS and run the app unchanged, or rig up a simple SQLite proxy system that will allow each server to manipulate sqlite files in adjacent servers.</p>
<p>Concurrency issues will be minimal because each HTTP request will only touch one or two database files at a time, out of thousands, and SQLite only blocks on reads anyway.</p>
<p>I'm betting that this approach will allow my app to scale gracefully and support lots of cool and <em>unique</em> features. Am I betting wrong? Am I missing anything?</p>
<p><strong>UPDATE</strong> I decided to go with a less extreme solution, which is working fine so far. I'm using a fixed number of shards - 256 sqlite databases, to be precise. Each user is assigned and bound to a random shard by a simple hash function. </p>
<p>Most features of my app require access to just one or two shards per request, but there is one in particular that requires the execution of a simple query on 10 to 100 different shards out of 256, depending on the user. Tests indicate it would take about 0.02 seconds, or less, if all the data is cached in RAM. I think I can live with that!</p>
<p><strong>UPDATE 2.0</strong> I ported the app to MySQL/InnoDB and was able to get about the same performance for regular requests, but for that one request that requires shard walking, innodb is 4-5 times faster. For this reason, and other reason, I'm dropping this architecture, but I hope someone somewhere finds a use for it...thanks.</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/128951#1289513Answer by John Sheehan for Extreme Sharding: One SQLite Database Per UserJohn Sheehan2008-09-24T18:33:55Z2008-09-24T18:33:55Z<p>Sounds to me like a maintenance nightmare. What happens when the schema changes on all those DBs?</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/128956#1289566Answer by heckj for Extreme Sharding: One SQLite Database Per Userheckj2008-09-24T18:35:01Z2008-09-24T18:35:01Z<p>The place where this will fail is if you have to do what's called "shard walking" - which is finding out all the data across a bunch of different users. That particular kind of "query" will have to be done programmatically, asking each of the SQLite databases in turn - and will very likely be the slowest aspect of your site. It's a common issue in any system where data has been "sharded" into separate databases.</p>
<p>If all the of the data is self-contained to the user, then this should scale pretty well - the key to making this an effective design is to know how the data is likely going to be used and if data from one person will be interacting with data from another (in your context).</p>
<p>You may also need to watch out for file system resources - SQLite is great, awesome, fast, etc - but you do get some caching and writing benefits when using a "standard database" (i.e. MySQL, PostgreSQL, etc) because of how they're designed. In your proposed design, you'll be missing out on some of that.</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/128976#1289762Answer by R. Bemrose for Extreme Sharding: One SQLite Database Per UserR. Bemrose2008-09-24T18:37:51Z2008-09-24T18:37:51Z<p>If you're creating a separate database for each user, it sounds like you're not setting up relationships... so why use a relational database at all?</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/128988#1289881Answer by Nick Johnson for Extreme Sharding: One SQLite Database Per UserNick Johnson2008-09-24T18:39:43Z2008-09-24T18:39:43Z<p>If your data is this easy to shard, why not just use a standard database engine, and if you scale large enough that the DB becomes the bottleneck, shard the database, with different users in different instances? The effect is the same, but you're not using scores of tiny little databases.</p>
<p>In reality, you probably have at least some shared data that doesn't belong to any single user, and you probably frequently need to access data for more than one user. This will cause problems with either system, though.</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/132935#1329352Answer by Seun Osewa for Extreme Sharding: One SQLite Database Per UserSeun Osewa2008-09-25T12:15:06Z2008-09-25T12:15:06Z<p>One possible problem is that having one database for each user will use disk space and RAM very inefficiently, and as the user base grows the benefit of using a light and fast database engine will be lost completely.</p>
<p>A possible solution to this problem is to create "<strong>minishards</strong>" consisting of maybe 1024 SQLite databases housing up to <em>100 users each</em>. This will be more efficient than the DB per user approach, because data is packed more efficiently. And lighter than the Innodb database server approach, because we're using Sqlite.</p>
<p>Concurrency will also be pretty good, but queries will be less elegant (shard_id yuckiness). What do you think?</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/146260#1462601Answer by Lasse V. Karlsen for Extreme Sharding: One SQLite Database Per UserLasse V. Karlsen2008-09-28T17:05:13Z2008-09-28T17:05:13Z<p>Having one database per user would make it really easy to restore individual users data of course, but as <a href="http://stackoverflow.com/users/1786/john-sheehan">@John</a> said, schema changes would require some work.</p>
<p>Not enough to make it hard, but enough to make it non-trivial.</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/249231#2492311Answer by John Wright for Extreme Sharding: One SQLite Database Per UserJohn Wright2008-10-30T04:00:14Z2008-10-30T04:00:14Z<p>I am considering this same architecture as I basically wanted to use the server side SQLLIte databases as backup and synching copy for clients. My idea for querying across all the data is to use Sphinx for full-text search and run Hadoop jobs from flat dumps of all the data to Scribe and then expose the results as webservies. This post gives me some pause for thought however, so I hope people will continue to respond with their opinion.</p>
http://stackoverflow.com/questions/128919/extreme-sharding-one-sqlite-database-per-user/903627#9036270Answer by stephen for Extreme Sharding: One SQLite Database Per Userstephen2009-05-24T12:00:51Z2009-05-24T12:00:51Z<p><a href="http://freshmeat.net/projects/sphivedb" rel="nofollow">http://freshmeat.net/projects/sphivedb</a></p>
<p>SPHiveDB is a server for sqlite database. It use JSON-RPC over HTTP to expose a network interface to use SQLite database. It supports combining multiple SQLite databases into one file. It also supports the use of multiple files. It is designed for the extreme sharding schema -- one SQLite database per user.</p>