MySQL add transaction nodes

Right now, each MySQL node opens a separate connection to the database, because of that normal transactions also do not work with the MySQL Execute node, as normal transactions only have an effect on the connection they are executed in.

As a workaround, you can use XA transactions: https://dev.mysql.com/doc/refman/8.0/en/xa-statements.html
But I have not tried that yet.

To use normal transactions and/or build dedicated transaction nodes, you probably need to implement the following feature request.

1 Like