1. 程式人生 > >分庫分表(4) ---SpringBoot + ShardingSphere 實現分表

分庫分表(4) ---SpringBoot + ShardingSphere 實現分表

分庫分表(4)--- ShardingSphere實現分表

有關分庫分表前面寫了三篇部落格:

1、分庫分表(1) --- 理論

2、分庫分表(2) --- ShardingSphere(理論)

3、分庫分表(3) ---SpringBoot + ShardingSphere實現讀寫分離

這篇部落格通過ShardingSphere實現分表不分庫,並在文章最下方附上專案Github地址

一、專案概述

1、技術架構

專案總體技術選型

SpringBoot2.0.6 + shardingsphere4.0.0-RC1 + Maven3.5.4  + MySQL + lombok(外掛)

2、專案說明

場景 在實際開發中,如果表的資料過大,我們可能需要把一張表拆分成多張表,這裡就是通過ShardingSphere實現分表功能,但不分庫。

3、資料庫設計

這裡有個member庫,裡面的tab_user表由一張拆分成3張,分別是tab_user0tab_user1tab_user2

如圖

具體的建立表SQL也會放到GitHub專案裡


二、核心程式碼

說明 完整的程式碼會放到GitHub上,這裡只放一些核心程式碼。

1、application.properties

server.port=8086

#指定mybatis資訊
mybatis.config-location=classpath:mybatis-config.xml

spring.shardingsphere.datasource.names=master

# 資料來源 主庫
spring.shardingsphere.datasource.master.type=com.alibaba.druid.pool.DruidDataSource
spring.shardingsphere.datasource.master.driver-class-name=com.mysql.jdbc.Driver
spring.shardingsphere.datasource.master.url=jdbc:mysql://localhost:3306/member?characterEncoding=utf-8
spring.shardingsphere.datasource.master.username=root
spring.shardingsphere.datasource.master.password=123456

#資料分表規則
#指定所需分的表
spring.shardingsphere.sharding.tables.tab_user.actual-data-nodes=master.tab_user$->{0..2}
#指定主鍵
spring.shardingsphere.sharding.tables.tab_user.table-strategy.inline.sharding-column=id
#分表規則為主鍵除以3取模
spring.shardingsphere.sharding.tables.tab_user.table-strategy.inline.algorithm-expression=tab_user$->{id % 3}

#列印sql
spring.shardingsphere.props.sql.show=true

Sharding-JDBC可以通過JavaYAMLSpring名稱空間Spring Boot Starter四種方式配置,開發者可根據場景選擇適合的配置方式。具體可以看官網。

2、UserController

@RestController
public class UserController {

    @Autowired
    private UserService userService;

    /**
     * 模擬插入資料
     */
    List<User> userList = Lists.newArrayList();
    /**
     * 初始化插入資料
     */
    @PostConstruct
    private void getData() {
        userList.add(new User(1L,"小小", "女", 3));
        userList.add(new User(2L,"爸爸", "男", 30));
        userList.add(new User(3L,"媽媽", "女", 28));
        userList.add(new User(4L,"爺爺", "男", 64));
        userList.add(new User(5L,"奶奶", "女", 62));
    }
    /**
     * @Description: 批量儲存使用者
     */
    @PostMapping("save-user")
    public Object saveUser() {
        return userService.insertForeach(userList);
    }
    /**
     * @Description: 獲取使用者列表
     */
    @GetMapping("list-user")
    public Object listUser() {
        return userService.list();
    }


三、測試驗證

1、批量插入資料

請求介面

localhost:8086/save-user

我們可以從商品介面程式碼中可以看出,它會批量插入5條資料。我們先看控制檯輸出SQL語句

我們可以從SQL語句可以看出 tab_user1 和 tab_user2 表插入了兩條資料,而 tab_user0 表中插入一條資料

我們再來看資料庫

tab_user0

tab_user1

tab_user2

完成分表插入資料。

2、獲取資料

我們來獲取列表的SQL,這裡對SQL做了order排序操作,具體ShardingSphere分表實現order操作的原理可以看上面一篇部落格。

  select *  from tab_user order by id

請求介面結果

我們可以看出雖然已經分表,但依然可以將多表資料聚合在一起並可以排序。

注意 ShardingSphere並不支援CASE WHENHAVINGUNION (ALL)有限支援子查詢。這個官網有詳細說明。

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


參考

1、ShardingSphere中文文件

2、ShardingSphere官網

3、Shardingsphere Github庫




 我相信,無論今後的道路多麼坎坷,只要抓住今天,遲早會在奮鬥中嚐到人生的甘甜。抓住人生中的一分一秒,勝過虛度中的一月一年!(19)

<