开发者社区> 问答> 正文

Sharding-JDBC 1.4.2 proxool bug - java报错

测试场景:
版本 1.4.2
链接池 proxool 
环境    spring3.2+hibernate4.2
结果  分库无效;
连接池改用druid 则数据可以正常分库

在版本1.3.3测试proxool正常

相关日志
DEBUG c.d.d.r.s.router.SQLRouteEngine - master:INSERT INTO ccp_sms_req (id, accountId, num) VALUES (replace(uuid(), '-', ''), ?, ?) [1000, 11120007310]
DEBUG c.d.d.r.s.router.SQLRouteEngine - 11001:INSERT INTO ccp_sms_req (id, accountId, num) VALUES (replace(uuid(), '-', ''), ?, ?) [1001, 11120007311]
DEBUG c.d.d.r.s.router.SQLRouteEngine - master:INSERT INTO ccp_sms_req (id, accountId, num) VALUES (replace(uuid(), '-', ''), ?, ?) [1002, 11120007312]

测试结果 在 proxool 连接池下的实际结果为 3条数据都插入到了master库;改用druid 连接池则复合预期;
期望结果 2条数据入到master库,1条数据入到11001库;

 

展开
收起
montos 2020-05-30 23:50:24 433 0
1 条回答
写回答
取消 提交回答
  • 使用Proxool配置多个数据源时,应该为每个数据源设置alias,因为Proxool在使用连接时会判断连接池中是否包含已存在的alias,不配置alias会造成每次获取都只从一个数据源中获取连接。
    ```java
        if(!ConnectionPoolManager.getInstance().isPoolExists(this.alias)) {
            this.registerPool();
        }
    ```
    ######

    可以看一下这个issue,有解决方案:https://github.com/dangdangdotcom/sharding-jdbc/issues/259

    2020-05-30 23:50:32
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载