How do I notify a process of an SQLite database change done in a different process?

前端 未结 7 2418
南笙
南笙 2021-02-19 16:27

Let\'s say I have two or more processes dealing with an SQLite database - a \"player\" process and many \"editor\" processes.

The \"player\" process reads the database

相关标签:
7条回答
  • 2021-02-19 17:04

    Just open a socket between the two processes and have the editor tell all the players about the update.

    0 讨论(0)
  • 2021-02-19 17:09

    If it's on the same machine, the simplest way would be to have named pipe, "player" with blocking read() and "editors" putting a token in pipe whenever they modify DB.

    0 讨论(0)
  • 2021-02-19 17:16

    SQLite has an update_hook function which does what you want.

    SQLite C Interface

    Data Change Notification Callbacks

    void *sqlite3_update_hook(
        sqlite3*,
        void(*)(void *,int ,char const *,char const *,sqlite3_int64),
        void*
    );
    

    The sqlite3_update_hook() interface registers a callback function with the database connection identified by the first argument to be invoked whenever a row is updated, inserted or deleted in a rowid table. Any callback set by a previous call to this function for the same database connection is overridden.

    Unfortunately it isn't exposed by the Python sqlite module...

    Here is a slightly hacky workaround that digs into the C api (from Python code) to make use of it: https://stackoverflow.com/a/16920926

    0 讨论(0)
  • 2021-02-19 17:18

    A relational database is not your best first choice for this.

    Why?

    You want all of your editors to pass changes to your player.

    Your player is -- effectively -- a server for all those editors. Your player needs multiple open connections. It must listen to all those connections for changes. It must display those changes.

    If the changes are really large, you can move to a hybrid solution where the editors persist the changes and notify the player.

    Either way, the editors must notify they player that they have a change. It's much, much simpler than the player trying to discover changes in a database.


    A better design is a server which accepts messages from the editors, persists them, and notifies the player. This server is neither editor nor player, but merely a broker that assures that all the messages are handled. It accepts connections from editors and players. It manages the database.

    There are two implementations. Server IS the player. Server is separate from the player. The design of server doesn't change -- only the protocol. When server is the player, then server calls the player objects directly. When server is separate from the player, then the server writes to the player's socket.

    When the player is part of the server, player objects are invoked directly when a message is received from an editor. When the player is separate, a small reader collects the messages from a socket and calls the player objects.

    The player connects to the server and then waits for a stream of information. This can either be input from the editors or references to data that the server persisted in the database.

    If your message traffic is small enough so that network latency is not a problem, editor sends all the data to the server/player. If message traffic is too large, then the editor writes to a database and sends a message with just a database FK to the server/player.


    Please clarify "If the editor crashes while notifying, the player is permanently messed up" in your question.

    This sounds like a poor design for the player service. It can't be "permanently messed up" unless it's not getting state from the various editors. If it's getting state from the editors (but attempting to mirror that state, for example) then you should consider a design where the player simply gets state from the editor and cannot get "permanently messed up".

    0 讨论(0)
  • 2021-02-19 17:19

    I think in that case, I would make a process to manage the database read/writes.

    Each editor that want to make some modifications to the database makes a call to this proccess, be it through IPC or network, or whatever method.

    This process can then notify the player of a change in the database. The player, when he wants to retrieve some data should make a request of the data it wants to the process managing the database. (Or the db process tells it what it needs, when it notifies of a change, so no request from the player needed)

    Doing this will have the advantage of having only one process accessing the SQLite DB, so no locking or concurrency issues on the database.

    0 讨论(0)
  • 2021-02-19 17:23

    Edit: I am asuming processes on the same machine.

    In my opinion there are two ways:

    • Polling (as you mentioned), but keep it to a single value (like a table that just keeps the LastUpdateTime of other tables)

    • Use whichever interprocess-communication there is available on the target platform. This could be events in Windows (e.g. in C# (I don't know in Python) the ManualResetEvent, AutoResetEvent, or a Mutex if you want to sacrifice a waiter-thread in each process), or Signals in Linux.

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