sharding jdbc的使用,如何在Spring中实现数据库的主从分离、分库分表等功能

使用Sharding-JDBC就可以了,它是一个 轻量级的 Java JDBC 层中间件,用于实现分库分表、读写分离、分布式事务等功能,而且对于我们经常使用的mybatis之类的是兼容的。

以下用一个两主两从数据库作样例,因为这样既能分库分表,又能读写分离

不过当数据量和读写流量较小的时候,请谨慎评估是否需要分库分表和读写分离,然后再决定具体要采用下面这个application.yml里的哪些策略

只要在application.yml里配置好如下内容即可:

复制代码
application.yml 配置说明:

spring:

  shardingsphere:
    datasource:
      names: ds0, ds1, ds0_slave, ds1_slave # 声明所有数据源的逻辑名称(主库和从库)
      ds0:
        url: jdbc:mysql://localhost:3306/db0
        username: root
        password: root
        driver-class-name: com.mysql.cj.jdbc.Driver
      ds0_slave:
        url: jdbc:mysql://localhost:3307/db0
        username: root
        password: root
        driver-class-name: com.mysql.cj.jdbc.Driver
      ds1:
        url: jdbc:mysql://localhost:3306/db1
        username: root
        password: root
        driver-class-name: com.mysql.cj.jdbc.Driver
      ds1_slave:
        url: jdbc:mysql://localhost:3307/db1
        username: root
        password: root
        driver-class-name: com.mysql.cj.jdbc.Driver

    rules:
      sharding:
        tables: # 分库分表的配置
          order: # 逻辑表order,因为你分库分表后可能order表实际上有多个,比如ds0.order_0、ds0.order_1、ds1.order_0、ds1.order_1
            actual-data-nodes: ds$->{0..1}.order_$->{0..1} # 指定它的真实物理表集合
            table-strategy: # 定义分表策略是按照order_id
              standard:
                sharding-column: order_id # 逻辑表 order_item
                sharding-algorithm-name: order-inline # 定义一个名为 order-inline 的分片算法,用于分库
          order_item: # 逻辑表order_item
            actual-data-nodes: ds$->{0..1}.order_item_$->{0..1} # 分布在两个库的两张表上
            table-strategy: 
              standard:
                sharding-column: order_id
                sharding-algorithm-name: order-inline  
        default-database-strategy: # 定义分库策略是按照user_id
          standard:
            sharding-column: user_id
            sharding-algorithm-name: db-inline # 这里定义了一个算法,算法的实现在下面
        sharding-algorithms: # 实现
          db-inline: # 定义一个名为 db-inline 的分片算法,用于分库
            type: INLINE # 算法类型为内联表达式(INLINE),适用于简单取模类规则
            props:
              algorithm-expression: ds$->{user_id % 2} # 表达式:user_id 对 2 取模,结果为 0 或 1,映射到 ds0 或 ds1 两个数据库
          order-inline: # 定义一个名为 order-inline 的分片算法,用于分表
            type: INLINE
            props:
              algorithm-expression: order_$->{order_id % 2} # 表达式:order_id 对 2 取模,映射到 order_0 或 order_1 两张物理表

      readwrite-splitting: # 读写分离配置
        data-sources:
          rw_ds0:
            static-strategy:
              write-data-source-name: ds0
              read-data-source-names:
                - ds0_slave
            load-balancer-name: round-robin
          rw_ds1:
            static-strategy:
              write-data-source-name: ds1
              read-data-source-names:
                - ds1_slave
            load-balancer-name: round-robin
        load-balancers:
          round-robin:
            type: ROUND_ROBIN

    props: # 开启 SQL 打印,调试时非常有用,能看到 SQL 是如何被改写和路由的
      sql:
        show: true

  main: # 假设项目用了druid等,需要开启下面这个重写,否则报错
    allow-bean-definition-overriding: true
相关推荐
imaol11 小时前
链表 -- 环链表
java·前端·链表
imaol11 小时前
链表 -- 双向链表
java·前端·链表
2601_963869952 小时前
【计算机毕业设计】基于Java的相框定制系统的设计与实现
java·开发语言·课程设计
故乡dee云2 小时前
AWS 产品太多不会选?按“网站、数据库、文件、日志”4 类需求快速匹配
数据库·云计算·aws
于烛3 小时前
为什么hasNext() 对只有一个元素的集合返回 true?90%初学者都有的疑问
java
wuminyu3 小时前
JVM利用io_uring优化堆外内存性能原理剖析
java·linux·c语言·jvm·c++
imaol13 小时前
数据结构---队列
java·数据结构·算法
半亩码田3 小时前
【.NET新特性·第11篇】C# 14 字段属性:告别手写 backing field
java·c#·.net
曹牧3 小时前
C#:问号
前端·数据库·c#
奇树谦4 小时前
《现代 Key-Value 数据库原理:从 B+Tree 到 LSM Tree》-第五篇:现代数据库横向对比
数据库·lsm-tree