我开发了一个使用jta 事务(JAVA TRANSACTION API)并且使用多个资源(数据库)的应用程序。所以我在我的wildfly环境中设置了xa-datasources 。
问题是我需要一个集群数据库(fe :Mariadb + galera, mysql+ mysqlcluster)。
但 GALERA 有限制,不适用于 xa 事务 https://mariadb.com/kb/en/mariadb/mariadb-galera-cluster-known-limitations/
AND mysqlcluster 但它也不起作用,因为 xa-transactions 仅适用于 INNODB 存储引擎,但 mysqlcluster 使用 NDBCluster 引擎。--> http://dev.mysql.com/doc/refman/5.7/en/xa-restrictions.html
你有推荐的数据库集群环境,并且可以与 xa-transaction 一起使用吗?