• SpringBoot+ShardingSphere实现分库分表 + 读写分离


    一、项目概述

    1、技术架构

    项目总体技术选型

    1. SpringBoot2.0.6 + shardingsphere4.0.0-RC1 + Maven3.5.4 + MySQL + lombok(插件)

    2、项目说明

    场景 在实际开发中,如果数据库压力大我们可以通过 分库分表 的基础上进行 读写分离,来减缓数据库压力。

    3、数据库设计

    分库 ms单库分库分为 ms0库 和 ms1库。

    分表 tab_user单表分为tab_user0表 和 tab_user1表。

    读写分离 数据写入ms0库 和 ms1库,数据读取 sl0库 和 sl1库。

    如图

    ms0 ---主库

    ms1 ---主库

    sl0 ---从库

    sl1 ---从库

    说明 初始数据的时候,这边只有 sl0从库 我插入了一条数据。那是因为我们这个项目中Mysql服务器并没有实现主从部署,这四个库都在同一服务器上,所以

    做不到主数据库数据自动同步到从数据库。所以这里在从数据库建一条数据。等下验证的时候,我们只需验证数据是否存入ms0ms1,数据读取是否在sl0sl1

    具体的创建表SQL也会放到GitHub项目里

    二、核心代码

    说明 完整的代码会放到GitHub上,这里只放一些核心代码。

    1、application.properties

    1. server.port=8082
    2. #指定mybatis信息
    3. mybatis.config-location=classpath:mybatis-config.xml
    4. #打印sql
    5. spring.shardingsphere.props.sql.show=true
    6. #数据源
    7. spring.shardingsphere.datasource.names=master0,slave0,master1,slave1
    8. spring.shardingsphere.datasource.master0.type=com.alibaba.druid.pool.DruidDataSource
    9. spring.shardingsphere.datasource.master0.driver-class-name=com.mysql.jdbc.Driver
    10. spring.shardingsphere.datasource.master0.url=jdbc:mysql://localhost:3306/ms0?characterEncoding=utf-8
    11. spring.shardingsphere.datasource.master0.username=root
    12. spring.shardingsphere.datasource.master0.password=root
    13. spring.shardingsphere.datasource.slave0.type=com.alibaba.druid.pool.DruidDataSource
    14. spring.shardingsphere.datasource.slave0.driver-class-name=com.mysql.jdbc.Driver
    15. spring.shardingsphere.datasource.slave0.url=jdbc:mysql://localhost:3306/sl0?characterEncoding=utf-8
    16. spring.shardingsphere.datasource.slave0.username=root
    17. spring.shardingsphere.datasource.slave0.password=root
    18. spring.shardingsphere.datasource.master1.type=com.alibaba.druid.pool.DruidDataSource
    19. spring.shardingsphere.datasource.master1.driver-class-name=com.mysql.jdbc.Driver
    20. spring.shardingsphere.datasource.master1.url=jdbc:mysql://localhost:3306/ms1?characterEncoding=utf-8
    21. spring.shardingsphere.datasource.master1.username=root
    22. spring.shardingsphere.datasource.master1.password=root
    23. spring.shardingsphere.datasource.slave1.type=com.alibaba.druid.pool.DruidDataSource
    24. spring.shardingsphere.datasource.slave1.driver-class-name=com.mysql.jdbc.Driver
    25. spring.shardingsphere.datasource.slave1.url=jdbc:mysql://localhost:3306/slave1?characterEncoding=utf-8
    26. spring.shardingsphere.datasource.slave1.username=root
    27. spring.shardingsphere.datasource.slave1.password=root
    28. #根据年龄分库
    29. spring.shardingsphere.sharding.default-database-strategy.inline.sharding-column=age
    30. spring.shardingsphere.sharding.default-database-strategy.inline.algorithm-expression=master$->{age % 2}
    31. #根据id分表
    32. spring.shardingsphere.sharding.tables.tab_user.actual-data-nodes=master$->{0..1}.tab_user$->{0..1}
    33. spring.shardingsphere.sharding.tables.tab_user.table-strategy.inline.sharding-column=id
    34. spring.shardingsphere.sharding.tables.tab_user.table-strategy.inline.algorithm-expression=tab_user$->{id % 2}
    35. #指定master0为主库,slave0为它的从库
    36. spring.shardingsphere.sharding.master-slave-rules.master0.master-data-source-name=master0
    37. spring.shardingsphere.sharding.master-slave-rules.master0.slave-data-source-names=slave0
    38. #指定master1为主库,slave1为它的从库
    39. spring.shardingsphere.sharding.master-slave-rules.master1.master-data-source-name=master1
    40. spring.shardingsphere.sharding.master-slave-rules.master1.slave-data-source-names=slave1

    Sharding-JDBC可以通过JavaYAMLSpring命名空间Spring Boot Starter四种方式配置,开发者可根据场景选择适合的配置方式。具体可以看官网。

    2、UserController

    1. @RestController
    2. public class UserController {
    3. @Autowired
    4. private UserService userService;
    5. /**
    6. * 模拟插入数据
    7. */
    8. List<User> userList = Lists.newArrayList();
    9. /**
    10. * 初始化插入数据
    11. */
    12. @PostConstruct
    13. private void getData() {
    14. userList.add(new User(1L,"小小", "女", 3));
    15. userList.add(new User(2L,"爸爸", "男", 30));
    16. userList.add(new User(3L,"妈妈", "女", 28));
    17. userList.add(new User(4L,"爷爷", "男", 64));
    18. userList.add(new User(5L,"奶奶", "女", 62));
    19. }
    20. /**
    21. * @Description: 批量保存用户
    22. */
    23. @PostMapping("save-user")
    24. public Object saveUser() {
    25. return userService.insertForeach(userList);
    26. }
    27. /**
    28. * @Description: 获取用户列表
    29. */
    30. @GetMapping("list-user")
    31. public Object listUser() {
    32. return userService.list();
    33. }

    三、测试验证

    1、批量插入数据

    请求接口

    1. localhost:8082/save-user

    我们可以从商品接口代码中可以看出,它会批量插入5条数据。我们先看控制台输出SQL语句

    我们可以从SQL语句可以看出 master0 和 master1 库中都插入了数据。

    我们再来看数据库

    ms0.tab_user0

    ms0.tab_user1

    ms1.tab_user0

    ms1.tab_user1

    完成分库分表插入数据。

    2、获取数据

    这里获取列表接口的SQL。

    1. select * from tab_user

    请求接口结果

    结论 从接口返回的结果可以很明显的看出,数据存储在主库,而数据库的读取在从库。

    注意 ShardingSphere并不支持CASE WHENHAVINGUNION (ALL)有限支持子查询。这个官网有详细说明。

    Github地址https://github.com/yudiandemingzi/spring-boot-sharding-sphere

    参考:https://www.bbsmax.com/A/QV5Z3Qw2dy/

    1、ShardingSphere中文文档

    2、ShardingSphere官网

    3、Shardingsphere Github库

  • 相关阅读:
    HTML5与HTML的区别
    0918练习整理
    0904 未来展望
    ajax弹出窗口
    AjAX请求后台,无刷新更新页面
    Jquery通过Ajax方式来提交Form表单
    php的socket通信
    次短路[SPFA]
    [Usaco2008 Open]Roads Around The Farm分岔路口[水题]
    [Usaco2008 Nov]Guarding the Farm 保卫牧场[DFS]
  • 原文地址:https://www.cnblogs.com/Bkxk/p/13049227.html
Copyright © 2020-2023  润新知