Python sqlite3 and concurrency - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T15:39:34Zhttp://stackoverflow.com/feeds/question/393554http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency4Python sqlite3 and concurrencyRexE2008-12-26T06:51:54Z2009-11-28T20:39:23Z
<p>I have a Python program that uses the "threading" module. Once every second, my program starts a new thread that fetches some data from the web, and stores this data to my hard drive. I would like to use sqlite3 to store these results, but I can't get it to work. The issue seems to be about the following line:</p>
<pre><code>conn = sqlite3.connect("mydatabase.db")
</code></pre>
<ul>
<li>If I put this line of code inside each thread, I get an OperationalError telling me that the database file is locked. I guess this means that another thread has mydatabase.db open through a sqlite3 connection and has locked it.</li>
<li>If I put this line of code in the main program and pass the connection object (conn) to each thread, I get a ProgrammingError, saying that SQLite objects created in a thread can only be used in that same thread.</li>
</ul>
<p>Previously I was storing all my results in CSV files, and did not have any of these file-locking issues. Hopefully this will be possible with sqlite. Any ideas?</p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/393576#39357613Answer by Lazin for Python sqlite3 and concurrencyLazin2008-12-26T07:10:39Z2008-12-26T07:10:39Z<p>You can use consumer - producer pattern. For example you can create queue, that is shared between threads. First thread, that fetches data from the web, enqueue this data to the shared queue. Another thread, that owns database connection, dequeue data from the queue and pass it to the database. </p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/393737#3937370Answer by Alabaster Codify for Python sqlite3 and concurrencyAlabaster Codify2008-12-26T12:51:53Z2008-12-26T12:51:53Z<p>I like Evgeny's answer - Queues are generally the best way to implement inter-thread communication. For completeness, here are some other options:</p>
<ul>
<li>Close the DB connection when the spawned threads have finished using it. This would fix your <code>OperationalError</code>, but opening and closing connections like this is generally a No-No, due to performance overhead.</li>
<li>Don't use child threads. If the once-per-second task is reasonably lightweight, you could get away with doing the fetch and store, then sleeping until the right moment. This is undesirable as fetch and store operations could take >1sec, and you lose the benefit of multiplexed resources you have with a multi-threaded approach.</li>
</ul>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/393984#3939844Answer by nosklo for Python sqlite3 and concurrencynosklo2008-12-26T16:51:24Z2008-12-26T20:41:37Z<p>Switch to <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing</a>. It is much better, scales good, can go beyond the use of multiple cores by using multiple CPUs, and the interface is the same as using python threading module.</p>
<p>Or, as Ali suggested, just use <a href="http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/pooling.html#sqlalchemy.pool.SingletonThreadPool" rel="nofollow">SQLAlchemy's thread pooling mechanism</a>. It will handle everything for you automatically and has many extra features, just to quote some of them:</p>
<ol>
<li>SQLAlchemy includes dialects for SQLite, Postgres, MySQL, Oracle, MS-SQL, Firebird, MaxDB, MS Access, Sybase and Informix; IBM has also released a DB2 driver. So you don't have to rewrite your application if you decide to move away from SQLite.</li>
<li>The Unit Of Work system, a central part of SQLAlchemy's Object Relational Mapper (ORM), organizes pending create/insert/update/delete operations into queues and flushes them all in one batch. To accomplish this it performs a topological "dependency sort" of all modified items in the queue so as to honor foreign key constraints, and groups redundant statements together where they can sometimes be batched even further. This produces the maxiumum efficiency and transaction safety, and minimizes chances of deadlocks.</li>
</ol>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/394109#3941090Answer by Ali A for Python sqlite3 and concurrencyAli A2008-12-26T18:31:37Z2008-12-26T18:31:37Z<p>Or if you are lazy, like me, you can use <a href="http://www.sqlalchemy.org/" rel="nofollow">SQLAlchemy</a>. It will handle the threading for you, (<a href="http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/pooling.html#sqlalchemy.pool.SingletonThreadPool" rel="nofollow">using thread local, and some connection pooling</a>) and the way it does it is even <a href="http://www.sqlalchemy.org/docs/05/reference/dialects/sqlite.html#threading-behavior" rel="nofollow">configurable</a>.</p>
<p>For added bonus, if/when you realise/decide that using Sqlite for any concurrent application is going to be a disaster, you won't have to change your code to use MySQL, or Postgres, or anything else. You can just switch over.</p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/394165#3941650Answer by iny for Python sqlite3 and concurrencyiny2008-12-26T19:32:37Z2008-12-26T19:32:37Z<p>You need to design the concurrency for your program. SQLite has clear limitations and you need to obey them, see the <a href="http://sqlite.org/faq.html#q5" rel="nofollow">FAQ</a> (also the following question).</p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/394331#3943316Answer by Dustin for Python sqlite3 and concurrencyDustin2008-12-26T21:59:14Z2008-12-26T21:59:14Z<p>You shouldn't be using threads at all for this. This is a trivial task for <a href="http://twistedmatrix.com/" rel="nofollow">twisted</a> and that would likely take you significantly further anyway.</p>
<p>Use only one thread, and have the completion of the request trigger an event to do the write.</p>
<p>twisted will take care of the scheduling, callbacks, etc... for you. It'll hand you the entire result as a string, or you can run it through a stream-processor (I have a <a href="https://github.com/dustin/twitty-twister" rel="nofollow">twitter API</a> and a <a href="https://github.com/dustin/twisted-friends" rel="nofollow">friendfeed API</a> that both fire off events to callers as results are still being downloaded).</p>
<p>Depending on what you're doing with your data, you could just dump the full result into sqlite as it's complete, cook it and dump it, or cook it while it's being read and dump it at the end.</p>
<p>I have a very simple application that does something close to what you're wanting on github. I call it <a href="https://github.com/dustin/pfetch" rel="nofollow">pfetch</a> (parallel fetch). It grabs various pages on a schedule, streams the results to a file, and optionally runs a script upon successful completion of each one. It also does some fancy stuff like conditional GETs, but still could be a good base for whatever you're doing.</p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/395897#3958970Answer by RexE for Python sqlite3 and concurrencyRexE2008-12-28T05:55:27Z2008-12-28T05:55:27Z<p><a href="http://dev.scrapy.org/" rel="nofollow">Scrapy</a> seems like a potential answer to my question. Its home page describes my exact task. (Though I'm not sure how stable the code is yet.)</p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/816573#8165730Answer by dugres for Python sqlite3 and concurrencydugres2009-05-03T08:21:12Z2009-05-03T08:21:12Z<p><a href="http://code.activestate.com/recipes/526618/" rel="nofollow">Here</a> is an example of what Evgeny Lazin mentioned above.</p>
http://stackoverflow.com/questions/393554/python-sqlite3-and-concurrency/1813731#18137310Answer by code43 for Python sqlite3 and concurrencycode432009-11-28T20:39:23Z2009-11-28T20:39:23Z<p>I would take a look at the y_serial Python module for data persistence: <a href="http://yserial.sourceforge.net" rel="nofollow">http://yserial.sourceforge.net</a> </p>
<p>which handles deadlock issues surrounding a single SQLite database. If demand on concurrency gets heavy one can easily set up the class Farm of many databases to diffuse the load over stochastic time.</p>
<p>Hope this helps your project... it should be simple enough to implement in 10 minutes.</p>