SQLite3 and Multiprocessing

前端 未结 4 1677
南笙
南笙 2021-01-05 09:26

I noticed that sqlite3 isn´t really capable nor reliable when i use it inside a multiprocessing enviroment. Each process tries to write some data into the same database, so

相关标签:
4条回答
  • 2021-01-05 09:46

    If I had to build a system like the one you describe, using SQLITE, then I would start by writing an async server (using the asynchat module) to handle all of the SQLITE database access, and then I would write the other processes to use that server. When there is only one process accessing the db file directly, it can enforce a strict sequence of queries so that there is no danger of two processes stepping on each others toes. It is also faster than continually opening and closing the db.

    In fact, I would also try to avoid maintaining sessions, in other words, I would try to write all the other processes so that every database transaction is independent. At minimum this would mean allowing a transaction to contain a list of SQL statements, not just one, and it might even require some if then capability so that you could SELECT a record, check that a field is equal to X, and only then, UPDATE that field. If your existing app is closing the database after every transaction, then you don't need to worry about sessions.

    You might be able to use something like nosqlite http://code.google.com/p/nosqlite/

    0 讨论(0)
  • 2021-01-05 09:56

    I've actually just been working on something very similar:

    • multiple processes (for me a processing pool of 4 to 32 workers)
    • each process worker does some stuff that includes getting information from the web (a call to the Alchemy API for mine)
    • each process opens its own sqlite3 connection, all to a single file, and each process adds one entry before getting the next task off the stack

    At first I thought I was seeing the same issue as you, then I traced it to overlapping and conflicting issues with retrieving the information from the web. Since I was right there I did some torture testing on sqlite and multiprocessing and found I could run MANY process workers, all connecting and adding to the same sqlite file without coordination and it was rock solid when I was just putting in test data.

    So now I'm looking at your phrase "(fetching data from the web)" - perhaps you could try replacing that data fetching with some dummy data to ensure that it is really the sqlite3 connection causing you problems. At least in my tested case (running right now in another window) I found that multiple processes were able to all add through their own connection without issues but your description exactly matches the problem I'm having when two processes step on each other while going for the web API (very odd error actually) and sometimes don't get the expected data, which of course leaves an empty slot in the database. My eventual solution was to detect this failure within each worker and retry the web API call when it happened (could have been more elegant, but this was for a personal hack).

    My apologies if this doesn't apply to your case, without code it's hard to know what you're facing, but the description makes me wonder if you might widen your considerations.

    0 讨论(0)
  • 2021-01-05 09:59

    sqlitedict: A lightweight wrapper around Python's sqlite3 database, with a dict-like interface and multi-thread access support.

    0 讨论(0)
  • 2021-01-05 10:04

    First of all, there's a difference between multiprocessing (multiple processes) and multithreading (multiple threads within one process).

    It seems that you're talking about multithreading here. There are a couple of caveats that you should be aware of when using SQLite in a multithreaded environment. The SQLite documentation mentions the following:

    • Do not use the same database connection at the same time in more than one thread.
    • On some operating systems, a database connection should always be used in the same thread in which it was originally created.

    See here for a more detailed information: Is SQLite thread-safe?

    0 讨论(0)
提交回复
热议问题