基于sharding-jdbc的使用限制

作者:重度孤独症患者 时间:2023-09-01 12:33:58 

使用限制

JDBC未支持列表

  • Sharding-JDBC暂时未支持不常用的JDBC方法。

DataSource接口

  • 不支持timeout相关操作

Connection接口

  • 不支持存储过程,函数,游标的操作

  • 不支持执行native的SQL

  • 不支持savepoint相关操作

  • 不支持Schema/Catalog的操作

  • 不支持自定义类型映射

Statement和PreparedStatement接口

  • 不支持返回多结果集的语句(即存储过程,非SELECT多条数据)

  • 不支持国际化字符的操作

对于ResultSet接口

  • 不支持对于结果集指针位置判断

  • 不支持通过非next方法改变结果指针位置

  • 不支持修改结果集内容

  • 不支持获取国际化字符

  • 不支持获取Array

JDBC 4.1

  • 不支持JDBC 4.1接口新功能

  • 查询所有未支持方法,请阅读com.dangdang.ddframe.rdb.sharding.jdbc.unsupported包。

SQL语句限制

  • 不支持DDL语句

  • 不支持子语句

  • 不支持UNION 和 UNION ALL

  • 不支持特殊INSERT

  • 每条INSERT语句只能插入一条数据,不支持VALUES后有多行数据的语句

  • 不支持DISTINCT聚合

shardingjdbc使用及踩坑内容

1.使用shardingjdbc做分库分表

最近公司由于业务需要,对日益增加的数据量越来越无法容忍,遂作出分库分表的决定,考察了几个技术方案后,决定使用shardingsphere做分表中间件。

使用maven拉取jar包:


   <dependency>
      <groupId>io.shardingsphere</groupId>
      <artifactId>sharding-jdbc</artifactId>
      <version>3.0.0.M3</version>
     </dependency>
     <dependency>
      <groupId>io.shardingsphere</groupId>
      <artifactId>sharding-jdbc-spring-namespace</artifactId>
      <version>3.0.0.M3</version>
     </dependency>

分表配置:


<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:tx="http://www.springframework.org/schema/tx"
   xmlns:sharding="http://shardingsphere.io/schema/shardingsphere/sharding"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
 http://shardingsphere.io/schema/shardingsphere/sharding
      http://shardingsphere.io/schema/shardingsphere/sharding/sharding.xsd"
   default-autowire="byName">

<!-- 分表算法 -->
<bean id="tableShardingAlgorithm" class="pxf.commom.support.sharding.tableShardingAlgorithm" />
<sharding:complex-strategy id="tableStrategy"
         sharding-columns="uid"
         algorithm-ref="tableShardingAlgorithm" />
<!-- ds_0为数据源,如果做分库,可配置多个数据源;不分表的表不用在此做配置-->
<sharding:data-source id="dataSource">
 <sharding:sharding-rule data-source-names="ds_0" default-data-source-name="ds_0" >
  <sharding:table-rules>
   <sharding:table-rule
     logic-table="test_table"
     actual-data-nodes="ds_0.test_table_$->{0..128}"
     table-strategy-ref="tableStrategy" />
  </sharding:table-rules>
 </sharding:sharding-rule>
</sharding:data-source>
</beans>

2.踩坑内容

1). 用于分表的列在sql中不能为空,所以像insert之类的语句需要做下非空判断;

2). sqlmap中LONGVARCHER字段不能使用,会报序列化异常,可改为VARCHAR类型;

3). union语法不支持,可改为OR查询(shardingjdbc连OR也不支持,所以建议使用shardingsphere)。

来源:https://blog.csdn.net/Farrell_zeng/article/details/52958181

标签:sharding,jdbc
0
投稿

猜你喜欢

  • Java SSM配置文件案例详解

    2022-10-14 09:43:19
  • Mybatis中注入执行sql查询、更新、新增及建表语句案例代码

    2023-03-07 18:53:55
  • 浅谈一下Spring中的createBean

    2023-06-08 22:01:26
  • SpringMVC+EasyUI实现页面左侧导航菜单功能

    2022-09-30 17:11:01
  • Java表单重复提交的避免方法

    2022-03-03 10:06:06
  • java连接sql server 2008数据库代码

    2023-05-27 10:40:01
  • winform开发使用通用多线程基类分享(以队列形式)

    2023-05-26 14:22:27
  • C#中使用Microsoft Unity记录日志

    2023-05-09 10:37:26
  • 使用MyBatisPlus自动生成代码后tomcat运行报错的问题及解决方法

    2022-02-23 05:24:55
  • Spring中的REST分页的实现代码

    2023-03-16 01:06:46
  • 使用Stargate访问K8ssandra的过程之Springboot整合Cassandra

    2022-02-08 23:12:25
  • Android蓝牙的开启和搜索设备功能开发实例

    2022-11-07 20:42:17
  • Java Web程序实现返回JSON字符串的方法总结

    2023-07-28 22:46:48
  • C# 分支与循环介绍

    2022-10-26 13:50:02
  • C#解析Lrc歌词文件过程详解

    2021-12-26 05:52:38
  • Android深入探究自定义View之嵌套滑动的实现

    2022-02-21 16:21:42
  • C语言实现的猴子分桃问题算法解决方案

    2022-10-19 19:03:32
  • JAVA递归生成树形菜单的实现过程

    2023-07-15 08:57:22
  • C#解决汉诺塔问题DEMO

    2023-03-25 19:11:25
  • Android UI中TextView的使用方法

    2022-07-04 19:33:45
  • asp之家 软件编程 m.aspxhome.com