真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么用ShardingSphere5.0.0-alpha實現(xiàn)mysql數(shù)據(jù)分表分片

本篇內(nèi)容主要講解“怎么用ShardingSphere5.0.0-alpha實現(xiàn)MySQL數(shù)據(jù)分表分片”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么用ShardingSphere5.0.0-alpha實現(xiàn)mysql數(shù)據(jù)分表分片”吧!

創(chuàng)新互聯(lián)公司于2013年開始,先為甕安等服務建站,甕安等地企業(yè),進行企業(yè)商務咨詢服務。為甕安企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。

聲明

  • 本文會基于 Springboot + mybatis + shardingsphere + mysql5.6 + druid 進行實戰(zhàn)講解

  • 本文的實戰(zhàn)內(nèi)容為分表、以及數(shù)據(jù)分片, 不涉及分庫, 讀寫分離之類的

  • 本文不會介紹 shardingsphere 的歷史、概念以及分庫分表的相關(guān)理論

  • 本文采用的 shardingsphere 版本是 5.0.0-alpha, 具體見 pom 文件

  • 本文涉及的源碼請參考 碼云地址

  • 如果看 官方文檔 時, 請選對版本 !!!

正文

實現(xiàn)目標

我們有一張邏輯用戶表 user_info, 我們把它水平拆分成 user_info0user_info1 兩張物理表 當我們往用戶表插數(shù)據(jù)時, 數(shù)據(jù)會按照一定的規(guī)則(根據(jù)id取模), 寫入到其中一張 user_info 表中.

準備工作

1. 數(shù)據(jù)庫表
create database miaosha;

DROP TABLE IF EXISTS `user_info0`;
CREATE TABLE `user_info0` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_label` varchar(32) COLLATE utf8_bin DEFAULT NULL,
  `username` varchar(64) COLLATE utf8_bin DEFAULT NULL,
  `email` varchar(64) COLLATE utf8_bin DEFAULT NULL,
  `phone` varchar(64) COLLATE utf8_bin DEFAULT NULL,
  `password` varchar(128) COLLATE utf8_bin NOT NULL,
  `active` tinyint(4) NOT NULL DEFAULT '1',
   PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;


DROP TABLE IF EXISTS `user_info1`;
CREATE TABLE `user_info1` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_label` varchar(32) COLLATE utf8_bin DEFAULT NULL,
  `username` varchar(64) COLLATE utf8_bin DEFAULT NULL,
  `email` varchar(64) COLLATE utf8_bin DEFAULT NULL,
  `phone` varchar(64) COLLATE utf8_bin DEFAULT NULL,
  `password` varchar(128) COLLATE utf8_bin NOT NULL,
  `active` tinyint(4) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
2. pom 依賴


    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.3.2.RELEASE
        
    
    com.nimo
    shardingsphere-demo
    0.0.1-SNAPSHOT
    shardingsphere-demo

    
        1.8
    
  
    
        
            org.springframework.boot
            spring-boot-starter-web
        
      
        
            org.mybatis.spring.boot
            mybatis-spring-boot-starter
            2.1.4
        

        
            mysql
            mysql-connector-java
            runtime
        
      
        
            org.projectlombok
            lombok
            true
        
      
        
            org.springframework.boot
            spring-boot-starter-test
            test
        

        
        
            org.apache.shardingsphere
            shardingsphere-jdbc-core-spring-boot-starter
            5.0.0-alpha
        

        
        
            com.alibaba
            druid
            1.2.3
        

    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                    
                        
                            org.projectlombok
                            lombok
                        
                    
                
            
        
    

3. application.yml

再次強調(diào)下, 本文采用的 shardingsphere 版本是 5.0.0-alpha. 不同版本配置會有差異.

填寫配置文件時,一定要小心, 坑死了; 不信你不配置 com.alibaba.druid.pool.DruidDataSource試試,

或者你用默認的數(shù)據(jù)源替換試試 om.zaxxer.hikari.HikariDataSource

server:
  port: 8777

spring:
  shardingsphere:
 
    props:
      sql-show: true
      
    datasource:
      names: ds0
      # 注意這里的數(shù)據(jù)源配置用的是 druid
      common:
        type: com.alibaba.druid.pool.DruidDataSource
      ds0:
        url: jdbc:mysql://127.0.0.1:3306/miaosha?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2b8
        username: root
        password: '123456'
        driver-class-name: com.mysql.cj.jdbc.Driver
    rules:
      sharding:
        key-generators:
          # 此處必須要配置,否則會導致報錯,因為shardingsphere-jdbc-core-spring-boot-starter需要加載此項配置,官網(wǎng)的demo例子有錯
          snowflake:
            type: SNOWFLAKE
            props:
              worker-id: 123
        sharding-algorithms:
          table-inline:
            type: INLINE
            props:
              # 不要漏掉 $ 或 ->
              algorithm-expression: user_info$->{id % 2}
        tables:
          user_info:
            # 配置 user_info 的分表的規(guī)則
            actual-data-nodes: ds0.user_info$->{0..1}
            table-strategy:
              standard:
                sharding-column: id
                sharding-algorithm-name: table-inline
    enabled: true

mybatis:
  typeAliasesPackage: com.nimo.shardingspheredemo.entity
  mapperLocations: classpath:mapper/*.xml
4. 主要代碼
// sql 

   insert into user_info(id, username, password) values (#{id}, #{username}, #{password})

 
 // 新增一個用戶信息
@PostMapping("userinfo")
public Object addUserInfo(@RequestBody UserInfo userInfo) {
   return userInfoMapper.addUser(userInfo);
}
5. 測試命令
curl -X POST --location "http://localhost:8777/userinfo" \
    -H "Content-Type: application/json" \
    -d "{
          \"id\": 18,
          \"username\": \"wangbadan\",
          \"password\": \"123456\"
        }"
問題

我們創(chuàng)建表時設(shè)置的 主鍵id是自增的, 理論上是不用傳的, 但是我們往表中插數(shù)據(jù), 是根據(jù) 主鍵id 取模來決定具體往哪張表中插的. 所以這個主鍵 id 此時必須得有.

另外, 如果我們的服務有多個, 那么這個 id 如何生成?

如何解決

首先把 sql 改寫為如下方式:

// sql 

   insert into user_info(username, password)
    values ( #{username}, #{password})

然后在原有配置的基礎(chǔ)上, 追加如下配置信息(通過雪花算法生成id)

spring:
  shardingsphere:
    rules:
      sharding: 
        tables:
          user_info:
            key-generate-strategy:
              key-generator-name: snowflake
              column: id

怎么用ShardingSphere5.0.0-alpha實現(xiàn)mysql數(shù)據(jù)分表分片

測試

curl -X POST --location "http://localhost:8777/userinfo" \
    -H "Content-Type: application/json" \
    -d "{
          \"username\": \"wangbadan\",
          \"password\": \"123456\"
        }"

總結(jié)

本文強調(diào)的是 分表, 分片的實戰(zhàn) demo 配置, 后面會逐漸更新 分庫、讀寫分離的實戰(zhàn) demo, 跟之前的 Spring Secutiry 的實戰(zhàn)教程一樣, 講究循序漸進.

到此,相信大家對“怎么用ShardingSphere5.0.0-alpha實現(xiàn)mysql數(shù)據(jù)分表分片”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!


本文名稱:怎么用ShardingSphere5.0.0-alpha實現(xiàn)mysql數(shù)據(jù)分表分片
分享URL:http://weahome.cn/article/pjcdho.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部