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

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

Springboot2.x中怎么利用ShardingSphere實現(xiàn)分庫分表

本篇文章給大家分享的是有關(guān)Springboot2.x中怎么利用ShardingSphere實現(xiàn)分庫分表,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序設(shè)計、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了永清免費(fèi)建站歡迎大家使用!

章中我們講了基于MySQL8的讀寫分離(文末有鏈接),這次來說說分庫分表的實現(xiàn)過程。

概念解析

垂直分片

按照業(yè)務(wù)拆分的方式稱為垂直分片,又稱為縱向拆分,它的核心理念是專庫專用。 在拆分之前,一個數(shù)據(jù)庫由多個數(shù)據(jù)表構(gòu)成,每個表對應(yīng)著不同的業(yè)務(wù)。而拆分之后,則是按照業(yè)務(wù)將表進(jìn)行歸類,分布到不同的數(shù)據(jù)庫中,從而將壓力分散至不同的數(shù)據(jù)庫。 下圖展示了根據(jù)業(yè)務(wù)需要,將用戶表和訂單表垂直分片到不同的數(shù)據(jù)庫的方案。

垂直分片往往需要對架構(gòu)和設(shè)計進(jìn)行調(diào)整。通常來講,是來不及應(yīng)對互聯(lián)網(wǎng)業(yè)務(wù)需求快速變化的;而且,它也并無法真正的解決單點(diǎn)瓶頸。 垂直拆分可以緩解數(shù)據(jù)量和訪問量帶來的問題,但無法根治。如果垂直拆分之后,表中的數(shù)據(jù)量依然超過單節(jié)點(diǎn)所能承載的閾值,則需要水平分片來進(jìn)一步處理。

水平分片

水平分片又稱為橫向拆分。 相對于垂直分片,它不再將數(shù)據(jù)根據(jù)業(yè)務(wù)邏輯分類,而是通過某個字段(或某幾個字段),根據(jù)某種規(guī)則將數(shù)據(jù)分散至多個庫或表中,每個分片僅包含數(shù)據(jù)的一部分。 例如:根據(jù)主鍵分片,偶數(shù)主鍵的記錄放入0庫(或表),奇數(shù)主鍵的記錄放入1庫(或表),如下圖所示。

水平分片從理論上突破了單機(jī)數(shù)據(jù)量處理的瓶頸,并且擴(kuò)展相對自由,是分庫分表的標(biāo)準(zhǔn)解決方案。

開發(fā)準(zhǔn)備

分庫分表常用的組件就是shardingsphere,目前已經(jīng)是apache頂級項目,這次我們使用springboot2.1.9 + shardingsphere4.0.0-RC2(均為最新版本)來完成分庫分表的操作。

假設(shè)有一張訂單表,我們需要將它分成2個庫,每個庫三張表,根據(jù)id字段取模確定最終數(shù)據(jù)的位置,數(shù)據(jù)庫環(huán)境配置如下:

172.31.0.129

blog      t_order_0    t_order_1    t_order_2

172.31.0.131

blog      t_order_0    t_order_1    t_order_2

三張表的邏輯表為t_order,大家可以根據(jù)建表語句準(zhǔn)備好其他所有數(shù)據(jù)表。

DROP TABLE IF EXISTS `t_order_0;CREATE TABLE `t_order_0` ( `id` bigint(20) NOT NULL, `name` varchar(255) DEFAULT NULL COMMENT '名稱', `type` varchar(255) DEFAULT NULL COMMENT '類型', `gmt_create` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '創(chuàng)建時間', PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

注意,千萬不能將主鍵的生成規(guī)則設(shè)置成自增長,需要按照一定規(guī)則來生成主鍵,這里使用shardingsphere中的SNOWFLAKE俗稱雪花算法來生成主鍵

代碼實現(xiàn)

修改pom.xml,引入相關(guān)組件

   1.8    3.1.1    4.0.0-RC2              org.springframework.boot      spring-boot-starter-web              org.mybatis.spring.boot      mybatis-spring-boot-starter      2.0.1              mysql      mysql-connector-java      8.0.15              com.baomidou      mybatis-plus-boot-starter      ${mybatis-plus.version}              org.apache.shardingsphere      sharding-jdbc-spring-boot-starter      ${sharding-sphere.version}              org.apache.shardingsphere      sharding-jdbc-spring-namespace      ${sharding-sphere.version}              org.projectlombok      lombok      true              org.springframework.boot      spring-boot-starter-test      test                          org.springframework.boot        spring-boot-maven-plugin            

配置mysql-plus

@Configuration  @MapperScan("com.github.jianzh6.blog.mapper")  public class MybatisPlusConfig {      /**       * 攻擊 SQL 阻斷解析器       */      @Bean      public PaginationInterceptor paginationInterceptor(){          PaginationInterceptor paginationInterceptor = new PaginationInterceptor();          List sqlParserList = new ArrayList<>();          sqlParserList.add(new BlockAttackSqlParser());          paginationInterceptor.setSqlParserList(sqlParserList);          return new PaginationInterceptor();      }      /**       * SQL執(zhí)行效率插件       */      @Bean      // @Profile({"dev","test"})      public PerformanceInterceptor performanceInterceptor() {          return new PerformanceInterceptor();      }  }

編寫實體類Order

@Data  @TableName("t_order")  public class Order {      private Long id;      private String name;      private String type;      private Date gmtCreate;  }

編寫DAO層,OrderMapper

/**   * 訂單Dao層   */  public interface OrderMapper extends BaseMapper {  }

編寫接口及接口實現(xiàn)

public interface OrderService extends IService {  }  /**   * 訂單實現(xiàn)層   * @author jianzh6   * @date 2019/10/15 17:05   */  @Service  public class OrderServiceImpl extends ServiceImpl implements OrderService {  }

配置文件(配置說明見備注)

server.port=8080  # 配置ds0 和ds1兩個數(shù)據(jù)源  spring.shardingsphere.datasource.names = ds0,ds1  #ds0 配置  spring.shardingsphere.datasource.ds0.type = com.zaxxer.hikari.HikariDataSource  spring.shardingsphere.datasource.ds0.driver-class-name = com.mysql.cj.jdbc.Driver  spring.shardingsphere.datasource.ds0.jdbc-url = jdbc:mysql://192.168.249.129:3306/blog?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false  spring.shardingsphere.datasource.ds0.username = root  spring.shardingsphere.datasource.ds0.password = 000000  #ds1 配置  spring.shardingsphere.datasource.ds1.type = com.zaxxer.hikari.HikariDataSource  spring.shardingsphere.datasource.ds1.driver-class-name = com.mysql.cj.jdbc.Driver  spring.shardingsphere.datasource.ds1.jdbc-url = jdbc:mysql://192.168.249.131:3306/blog?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false  spring.shardingsphere.datasource.ds1.username = root  spring.shardingsphere.datasource.ds1.password = 000000  # 分庫策略 根據(jù)id取模確定數(shù)據(jù)進(jìn)哪個數(shù)據(jù)庫  spring.shardingsphere.sharding.default-database-strategy.inline.sharding-column = id  spring.shardingsphere.sharding.default-database-strategy.inline.algorithm-expression = ds$->{id % 2}  # 具體分表策略  # 節(jié)點(diǎn) ds0.t_order_0,ds0.t_order_1,ds1.t_order_0,ds1.t_order_1  spring.shardingsphere.sharding.tables.t_order.actual-data-nodes = ds$->{0..1}.t_order_$->{0..2}  # 分表字段id  spring.shardingsphere.sharding.tables.t_order.table-strategy.inline.sharding-column = id  # 分表策略 根據(jù)id取模,確定數(shù)據(jù)最終落在那個表中  spring.shardingsphere.sharding.tables.t_order.table-strategy.inline.algorithm-expression = t_order_$->{id % 3}  # 使用SNOWFLAKE算法生成主鍵  spring.shardingsphere.sharding.tables.t_order.key-generator.column = id  spring.shardingsphere.sharding.tables.t_order.key-generator.type = SNOWFLAKE  #spring.shardingsphere.sharding.binding-tables=t_order  spring.shardingsphere.props.sql.show = true

編寫單元測試,查看結(jié)果是否正確

public class OrderServiceImplTest extends BlogApplicationTests {    @Autowired    private OrderService orderService;    @Test    public void testSave(){      for (int i = 0 ; i< 100 ; i++){        Order order = new Order();        order.setName("電腦"+i);        order.setType("辦公");        orderService.save(order);      }    }    @Test    public void testGetById(){      long id = 1184489163202789377L;      Order order = orderService.getById(id);      System.out.println(order.toString());    }  }

以上就是Springboot2.x中怎么利用ShardingSphere實現(xiàn)分庫分表,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文題目:Springboot2.x中怎么利用ShardingSphere實現(xiàn)分庫分表
轉(zhuǎn)載源于:http://weahome.cn/article/gojgce.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部