How Scalable is SQLite? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:53:02Z http://stackoverflow.com/feeds/question/54998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54998/how-scalable-is-sqlite 28 How Scalable is SQLite? GateKiller 2008-09-10T18:47:58Z 2009-10-31T11:33:32Z <p>I recently read this Question about <a href="http://stackoverflow.com/questions/3630/sqlite-vs-mysql">SQLite vs MySQL</a> and the answer pointed out that SQLite doesn't scale well and the official website <a href="http://www.sqlite.org/whentouse.html" rel="nofollow">sort-of confirms this</a>, however.</p> <p>How scalable is SQLite and what are its upper most limits?</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/55012#55012 11 Answer by Joel Coehoorn for How Scalable is SQLite? Joel Coehoorn 2008-09-10T18:51:32Z 2008-09-10T18:51:32Z <p>Sqlite is a <em>desktop</em> or <em>in-process</em> database. SQL Server, MySQL, Oracle, and their brethren are <em>servers</em>.</p> <p>Desktop databases are by their nature not a good choices for <em>any</em> application that needs to support concurrent access to the data store. This includes pretty much every web site ever created.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/62108#62108 0 Answer by GateKiller for How Scalable is SQLite? GateKiller 2008-09-15T10:30:32Z 2008-09-15T10:30:32Z <p>Thanks for the comments. I still don't see any strong arguments though, mainly theories.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/62123#62123 12 Answer by Lasse V. Karlsen for How Scalable is SQLite? Lasse V. Karlsen 2008-09-15T10:38:28Z 2009-10-20T11:00:48Z <p>Sqlite is scalable in terms of single-user, I have multi-gigabyte database that performs very well and I haven't had much problems with it.</p> <p>But it <em>is</em> single-user, so it depends on what kind of scaling you're talking about.</p> <p>In response to comments. Note that there is nothing that prevents using an Sqlite database in a multi-user environment, but every transaction (in effect, every SQL statement that modifies the database) takes a lock on the <em>file</em>, which will prevent other users from accessing the database <em>at all</em>.</p> <p>So if you have lots of modifications done to the database, you're essentially going to hit scaling problems very quick. If, on the other hand, you have lots of read access compared to write access, it might not be so bad.</p> <p>But Sqlite will of course <em>function</em> in a multi-user environment, but it won't <em>perform</em> well.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/62155#62155 1 Answer by Seun Osewa for How Scalable is SQLite? Seun Osewa 2008-09-15T11:00:30Z 2008-09-15T11:00:30Z <p>I use MySQL for my forum and most of the time when I run "show processlist" there's only one thread accessing the database at any given time. I wonder how SQLite will behave in such a situation. Where concurrency is low but load is really high.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/62220#62220 60 Answer by Kyle Cronin for How Scalable is SQLite? Kyle Cronin 2008-09-15T11:42:11Z 2008-12-04T16:57:30Z <p>Yesterday I released a small <a href="http://stackoverflow.com/questions/61553/track-your-reputation">site</a> to track your rep that used a shared SQLite database for all visitors. Unfortunately, even with the modest load that it put on my host it ran quite slowly. This is because the entire database was locked every time someone viewed the page because it contained updates/inserts. I soon switched to MySQL and while I haven't had much time to test it out, it seems much more scaleable than SQLite. I just remember slow page loads and occasionally getting a database locked error when trying to execute queries from the shell in sqlite. That said, I am running another site from SQLite just fine. The difference is that the site is static (i.e. I'm the only one that can change the database) and so it works just fine for concurrent reads. Moral of the story: only use SQLite for websites where updates to the database happen rarely (less often than every page loaded).</p> <p><strong>edit</strong>: I just realized that I may not have been fair to SQLite - I didn't index any columns in the SQLite database when I was serving it from a web page. This partially caused the slowdown I was experiencing. However, the observation of database-locking stands - if you have particularly onerous updates, SQLite performance won't match MySQL or Postgres.</p> <p><strong>another edit:</strong> Since I posted this almost 3 months ago I've had the opportunity to closely examine the scalability of SQLite, and with a few tricks it can be quite scalable. As I mentioned in my first edit, database indexes dramatically reduce query time, but this is more of a general observation about databases than it is about SQLite. However, there is another trick you can use to speed up SQLite: <a href="http://www.sqlite.org/lang_transaction.html" rel="nofollow">transactions</a>. Whenever you have to do multiple database writes, put them inside a transaction. Instead of writing to (and locking) the file each and every time a write query is issued, the write will only happen once when the transaction completes.</p> <p>The site that I mention I released in the first paragraph has been switched back to SQLite, and it's running quite smoothly once I tuned my code in a few places.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/66724#66724 1 Answer by peregrine for How Scalable is SQLite? peregrine 2008-09-15T20:41:07Z 2008-09-15T20:41:07Z <p>Think of it this way. SQL Lite will be locked every time someone uses it. So if your serving up a web page or a application that has multiple concurrent users only one could use your app at a time with SQLLite. So right there is a scaling issue. If its a one person application say a Music Library where you hold hundreds of titles, ratings, information, usage, playing, play time then SQL Lite will scale beautifully holding thousands if not millions of records(Hard drive willing)</p> <p>MySQL on the other hand works well for servers apps where people all over will be using it concurrently. It doesn't lock and it is quite large in size. So for your music library MySql would be over kill as only one person would see it, UNLESS this is a shared music library where thousands add or update it. Then MYSQL would be the one to use.</p> <p>So in theory MySQL scales better then Sqllite cause it can handle mutiple users, but is overkill for a single user app.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/433842#433842 0 Answer by Paul Lefebvre for How Scalable is SQLite? Paul Lefebvre 2009-01-11T22:19:17Z 2009-01-11T22:19:17Z <p>It might be worth checking out <a href="http://realsoftware.com/realsqlserver/" rel="nofollow">REAL SQL Server</a>, which is a database server built on SQLite.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/692873#692873 1 Answer by jle for How Scalable is SQLite? jle 2009-03-28T14:51:06Z 2009-03-28T15:30:13Z <p>SQLite's website (the part that you referenced) indicates that it can be used for a variety of multi-user situations.</p> <p>I would say that it can handle quite a bit. In my experience it has always been very fast. Of course, you need to index your tables and when coding against it, you need to make sure you use parameritized queries and the like. Basically the same stuff you would do with any database to improve performance.</p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/827194#827194 5 Answer by Sam for How Scalable is SQLite? Sam 2009-05-05T22:27:36Z 2009-05-05T22:27:36Z <p>Have you read this SQLite docs - <a href="http://www.sqlite.org/whentouse.html" rel="nofollow">http://www.sqlite.org/whentouse.html</a> ?</p> <blockquote> <p>SQLite usually will work great as the database engine for low to medium traffic websites (which is to say, 99.9% of all websites). The amount of web traffic that SQLite can handle depends, of course, on how heavily the website uses its database. Generally speaking, any site that gets fewer than 100K hits/day should work fine with SQLite. The 100K hits/day figure is a conservative estimate, not a hard upper bound. SQLite has been demonstrated to work with 10 times that amount of traffic.</p> </blockquote> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/1174774#1174774 1 Answer by djangofan for How Scalable is SQLite? djangofan 2009-07-23T22:08:33Z 2009-07-23T22:08:33Z <p>In reply to GateKiller (above), if your doing updates/inserts without using SQL Transaction statements, then SQLLite will "appear" to be slow. If you send SQL in transactions, the speed will be way way faster. Most SQL servers dont require that kind of thing but SQLlite, Firebird, and JavaDB are some that do require formal transactions, which is why they are free...</p> <p>Please read this: <a href="http://www.sqlite.org/lang_transaction.html" rel="nofollow">http://www.sqlite.org/lang_transaction.html</a></p> http://stackoverflow.com/questions/54998/how-scalable-is-sqlite/1654135#1654135 1 Answer by Ice for How Scalable is SQLite? Ice 2009-10-31T11:33:32Z 2009-10-31T11:33:32Z <p>Hi there, </p> <p>i think that a (in numbers 1) webserver serving hunderts of clients appears on the backend with a single connection to the database, isn't it?</p> <p>So there is no concurrent access in the database an therefore we can say that the database is working in 'single user mode'. It makes no sense to diskuss multi-user access in such a circumstance and so SQLite works as well as any other serverbased database.</p> <p>Please help me if i am totaly wrong.</p> <p>Peace </p> <p>Ice</p>