简体   繁体   中英

psycopg2 - deferring action until after commit

I'd like to find a good pattern to defer execution actions until after the current transaction successfully commits. For example, I may have:

with pool(...)  as connection:
    execute_steps(connection) 

in which a sub-function start one of more any asynchronous tasks by submitting them to an external message queue (rabbit/AMQP, ...) ... ONLY if the transaction successfully commits. That is

 def substep(connection): 
       submit_to_queue()

... may fail if the transaction subsequently fails (after submitting to the queue), or if the job placed in the queue executes before the transaction commits. So -- submit_to_queue MUST execute after connection.commit.

A natural way to do this is to collect a step of callbacks:

def substep(connection):

  def submit_to_queue(): ...
  ...
  connection.on_after_commit(submit_to_queue)
  ...

and have:

@contextmanager
def db_pool(db_name="lb2", current_connection=None):

    connection = connection_pool.getconn()
    connection.on_after_commit = []
    try:

        # Do the work
        yield connection

        connection.commit()

        # Reset the after_success list and execute
        for job in connection.after_success():
            job()
        connection.after_success = [], 

    except Exception:
        connection.rollback()
        connection.after_success = []
        raise

However, psycopg2's connection is an immutable object. So... is there another way to register post-execution callbacks with psycopg2?

Thanks.

Subclassing psycopg2.extensions.connection will allow you to add attributes to the object (see the explanation here as to why) :

In [44]: import psycopg2

In [45]: import psycopg2.extensions

In [46]: conn = psycopg2.connect('dbname=postgres')

In [47]: conn.foo = 'bar'
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-47-3ab9f2c6e77e> in <module>()
----> 1 conn.foo = 'bar'

AttributeError: 'psycopg2.extensions.connection' object has no attribute 'foo'

In [48]: class MyConnection(psycopg2.extensions.connection):
   ...       pass
   ...

In [49]: conn2 = MyConnection('dbname=postgres')

In [50]: conn2.foo = 'bar'

In [51]: conn2.foo
Out[51]: 'bar'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM