ActiveMQ中使用mysql做持久化报错:Cannot execute statement: impossible to write to binary log since BINLOG_FORM

ActiveMQ中如果使用mysql innodb的同时,开启了binlog,那么在ack消息的时候,日志里就可会报错:java.sql.SQLException: Cannot execute statement: binlogging impossible since BINLOG_FORMAT = STATEMENT and at least one table uses a storage engine limited to row-logging. InnoDB is limited to row-logging when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.

这是因为,mysql默认的binlog_format是STATEMENT,而在READ COMMITTED或READ UNCOMMITTED隔离级别下,innodb只能使用的binlog_format是ROW。

而在ActiveMQ的store JDBC实现中(TransactionContext),为了提高并发性能,使用的是READ UNCOMMITTED:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. // a cheap dirty level that we can live with      
  2. private int transactionIsolation = Connection.TRANSACTION_READ_UNCOMMITTED;  
所以,就会出现上面的问题。

解决办法有两个:

1、在mysql里设置binlog_format为ROW,此时binlog会增大,但是一般来说对数据复制支持的更好,建议单机高性能环境下使用。

2、在activemq.xml的jdbcPersistenceAdapter里配置transactionIsolation=“4”,即TRANSACTION_REPEATABLE_READ,此时事务更严格,会影响性能,建议在集群、强实时一致、不强调单机性能的情况下使用。

可以参见源码里的说明:

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. /** 
  2.      * set the Transaction isolation level to something other that TRANSACTION_READ_UNCOMMITTED 
  3.      * This allowable dirty isolation level may not be achievable in clustered DB environments 
  4.      * so a more restrictive and expensive option may be needed like TRANSACTION_REPEATABLE_READ 
  5.      * see isolation level constants in {@link java.sql.Connection} 
  6.      * @param transactionIsolation the isolation level to use 
  7.      */  
  8.     public void setTransactionIsolation(int transactionIsolation) {  
  9.         this.transactionIsolation = transactionIsolation;  
  10.     }  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值