分庫分表之第二篇

来源:https://www.cnblogs.com/haizai/archive/2019/12/22/12079273.html
-Advertisement-
Play Games

分庫分表之第二篇 2. Sharding-JDBC快速入門 2.1需求說明 2.2. 環境建設 2.2.1環境說明 2.2.2創建資料庫 2.2.3約會maven依賴 2.3 編寫程式 2.3.1 分片規則配置 2.3.2 數據操作 2.3.3 測試 2.4. 流程分析 2.5 其他集成方式 2. ...


分庫分表之第二篇

 

2. Sharding-JDBC快速入門

2.1需求說明

使用Sharding-JDBC完成對訂單表的水平分表,通過快速入門程式的開發,快速體驗Sharding-JDBC的使用。人工創建兩張表,t_order_1和t_order_2,這張表是訂單表替換後的表,通過Shading-JDBC向訂單表插入數據,按照一定的分片規則,主鍵為偶數的盡入t_order_1,另一部分數據進入t_order_2,通過Shading-Jdbc查詢數據,根據SQL語句的內容從t_order_1或order_2查詢數據。

2.2. 環境建設

2.2.1環境說明

操作系統:Win10資料庫:MySQL-5.7.25 JDK:64位jdk1.8.0_201應用框架:spring-boot-2.1.3.RELEASE,Mybatis3.5.0 Sharding-JDBC:sharding-jdbc-spring-boot-starter-4.0 .0-RC1

2.2.2創建資料庫

創建訂單表

CREATE DATABASE`order_db`字元集'UTF8'COLLATE'utf8_general_ci'; ```在order_db中創建t_order_1,t_order_2表如果存在java DROP TABLE t_order_1; CREATE TABLE`t_order_1`(`order_id` BIGINT(20)非空註釋'訂單ID',`price`十進位(10,2)非空註釋'訂單價格',`user_id` BIGINT(20)非空註釋“下一個單用戶id”,“狀態” varchar(50)字元集utf8集合utf8_general_ci NOT NULL COMMENT“訂單狀態”,主鍵(`order_id`)使用BTREE)引擎= InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = 如果存在表t_order_2; CREATE TABLE`t_order_2`(`order_id` BIGINT(20)非空註釋'訂單ID',`price`十進位(10,2)非空註釋'訂單價格',`user_id` BIGINT(20)非空註釋'下一個單用戶id',`status` varchar(50)字元集utf8集合utf8_general_ci NOT NULL COMMENT'訂單狀態',主鍵(`order_id`)使用BTREE 
)ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT =動態; 

2.2.3約會maven依賴

sharding-jdbc和SpringBoot整合的Jar包:

<dependency>
<groupId>org.apache.shardingsphere</groupId> 
<artifactId>sharding‐jdbc‐spring‐boot‐starter</artifactId> 
<version>4.0.0‐RC1</version>
   </dependency>

2.3 編寫程式

2.3.1 分片規則配置

分片規則配置是sharding-jdbc進行分庫分表操作的重要依據,配置內容包括 :數據源、主鍵生成策略等。
在application.properties中配置

server.port=56081
spring.application.name = sharding‐jdbc‐simple‐demo
 server.servlet.context‐path = /sharding‐jdbc‐simple‐demo spring.http.encoding.enabled = true spring.http.encoding.charset = UTF‐8 spring.http.encoding.force = true
spring.main.allow‐bean‐definition‐overriding = true
mybatis.configuration.map‐underscore‐to‐camel‐case = true # 以下是分片規則配置
# 定義數據源
spring.shardingsphere.datasource.names = m1
spring.shardingsphere.datasource.m1.type = com.alibaba.druid.pool.DruidDataSource spring.shardingsphere.datasource.m1.driver‐class‐name = com.mysql.jdbc.Driver spring.shardingsphere.datasource.m1.url = jdbc:mysql://localhost:3306/order_db?useUnicode=true spring.shardingsphere.datasource.m1.username = root spring.shardingsphere.datasource.m1.password = root
# 指定t_order表的數據分佈情況,配置數據節點 spring.shardingsphere.sharding.tables.t_order.actual‐data‐nodes = m1.t_order_$‐>{1..2}
# 指定t_order表的主鍵生成策略為SNOWFLAKE spring.shardingsphere.sharding.tables.t_order.key‐generator.column=order_id spring.shardingsphere.sharding.tables.t_order.key‐generator.type=SNOWFLAKE
# 指定t_order表的分片策略,分片策略包括分片鍵和分片演算法 spring.shardingsphere.sharding.tables.t_order.table‐strategy.inline.sharding‐column = order_id spring.shardingsphere.sharding.tables.t_order.table‐strategy.inline.algorithm‐expression = t_order_$‐>{order_id % 2 + 1}
# 打開sql輸出日誌 spring.shardingsphere.props.sql.show = true
swagger.enable = true
logging.level.root = info logging.level.org.springframework.web = info logging.level.com.itheima.dbsharding = debug logging.level.druid.sql = debug
  1. 首先定義數據源m1,並對m1進行實際的參數配置
  2. 指定t_order表的數據分佈情況,它分佈在m1.t_order_1、m1.t_order_2
  3. 指定t_order表的主鍵生成策略為SNOWFLAKE,SNOWFLAKE是一種分散式自增演算法,保證id全局唯一
  4. 定義t_order分片策略,order_id為偶數的數據落在t_order_1,為奇數的落在t_order_2,分表策略的表達式為t_order_$->{order_id % 2 + 1}

2.3.2 數據操作

   @Mapper
   @Component
   public interface OrderDao {
	/**
	* 新增訂單
	* @param price 訂單價格 * @param userId 用戶id * @param status 訂單狀態 * @return
	*/
	@Insert("insert into t_order(price,user_id,status) value(#{price},#{userId},#{status})")
	int insertOrder(@Param("price") BigDecimal price, @Param("userId")Long userId, @Param("status")String status);
	/**
	* 根據id列表查詢多個訂單
	* @param orderIds 訂單id列表 * @return
	*/
	@Select({"<script>" + "select " +
	"*"+
	" from t_order t" +
	" where t.order_id in " +
	"<foreach collection='orderIds' item='id' open='(' separator=',' close=')'>" + " #{id} " +
	"</foreach>"+
	"</script>"})
	List<Map> selectOrderbyIds(@Param("orderIds")List<Long> orderIds); 
}

2.3.3 測試

編寫單元測試 :

@RunWith(SpringRunner.class)
@SpringBootTest(classes = {ShardingJdbcSimpleDemoBootstrap.class}) public class OrderDaoTest {
	@Autowired
	private OrderDao orderDao;
	@Test
	public void testInsertOrder(){
		for (int i = 0 ; i<10; i++){
			orderDao.insertOrder(new BigDecimal((i+1)*5),1L,"WAIT_PAY");
		} 
	}
	@Test
	public void testSelectOrderbyIds(){
		List<Long> ids = new ArrayList<>(); ids.add(373771636085620736L); ids.add(373771635804602369L);
		List<Map> maps = orderDao.selectOrderbyIds(ids); System.out.println(maps);
	} 
}

執行testInsertOrder:
https://img-blog.csdnimg.cn/20191219211246974.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3poYW8xMjk5MDAyNzg4,size_16,color_FFFFFF,t_70
通過日誌可以發現order_id為奇數的被插入到t_order_2表,為偶數的被插入到t_order_1表,達到預期目標。
執行testSelectOrderbyIds:
https://img-blog.csdnimg.cn /20191219211311247.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3poYW8xMjk5MDAyNzg4,size_16,color_FFFFFF,t_70
通過日誌可以發現,根據傳入的order_id的奇偶不同,分片-JDBC分別去不同的表檢索數據,達到預期目標。

2.4. 流程分析

通過日誌分析,Sharding-JDBC在拿到用戶要執行的sql之後幹了那些事兒 :
(1)解析sql,獲取片鍵值,在本例中是order_id
(2)Sharding-JDBC通過規則配置t_order_$->{order_id% 2 + 1},知道類當order_id為偶數時,應該往t_order_1表插數據,為奇數時,往t_order_2插數據。
(3)於是Sharding-JDBC根據order_id的值改寫sql語句,改寫後的SQL語句是真實所要執行的SQL語句。
(4)執行改寫後的真實sql語句
(5)將所有真正執行sql的結果進行彙總合併,返回。

2.5 其他集成方式

Sharding-JDBC不僅可以與Spring boot良好集成,它還支持其他配置方式,共支持以下四種集成方式。
Spring Boot Yaml配置
定義application.yml,內容如下 :

server:
     port: 56081
     servlet:
context‐path: /sharding‐jdbc‐simple‐demo spring:
application:
name: sharding‐jdbc‐simple‐demo
     http:
       encoding:
enabled: true charset: utf‐8 force: true
main:
allow‐bean‐definition‐overriding: true
     shardingsphere:
       datasource:
         names: m1
m1:
type: com.alibaba.druid.pool.DruidDataSource driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/order_db?useUnicode=true username: root
password: mysql
       sharding:
         tables:
t_order:
actualDataNodes: m1.t_order_$‐>{1..2} tableStrategy:
inline:
shardingColumn: order_id
algorithmExpression: t_order_$‐>{order_id % 2 + 1}
             keyGenerator:
               type: SNOWFLAKE
               column: order_id
props: sql:
           show: true
   mybatis:
configuration: map‐underscore‐to‐camel‐case: true
   swagger:
     enable: true
   logging:
     level:
root: info
 org.springframework.web: info 
 com.itheima.dbsharding: debug 
 druid.sql: debug

如果使用application.yml則需要屏蔽原來的application.properties文件。
Java配置
添加配置類 :

@Configuration
   public class ShardingJdbcConfig {
// 定義數據源
Map<String, DataSource> createDataSourceMap() {
DruidDataSource dataSource1 = new DruidDataSource(); dataSource1.setDriverClassName("com.mysql.jdbc.Driver"); dataSource1.setUrl("jdbc:mysql://localhost:3306/order_db?useUnicode=true"); dataSource1.setUsername("root");
dataSource1.setPassword("root");
Map<String, DataSource> result = new HashMap<>(); result.put("m1", dataSource1);
return result;
}
// 定義主鍵生成策略
private static KeyGeneratorConfiguration getKeyGeneratorConfiguration() {
KeyGeneratorConfiguration result = new KeyGeneratorConfiguration("SNOWFLAKE","order_id");
           return result;
       }
// 定義t_order表的分片策略
TableRuleConfiguration getOrderTableRuleConfiguration() {
TableRuleConfiguration result = new TableRuleConfiguration("t_order","m1.t_order_$‐> {1..2}");
result.setTableShardingStrategyConfig(new InlineShardingStrategyConfiguration("order_id", "t_order_$‐>{order_id % 2 + 1}"));
result.setKeyGeneratorConfig(getKeyGeneratorConfiguration()); return result;
}
// 定義sharding‐Jdbc數據源
@Bean
DataSource getShardingDataSource() throws SQLException {
ShardingRuleConfiguration shardingRuleConfig = new ShardingRuleConfiguration(); shardingRuleConfig.getTableRuleConfigs().add(getOrderTableRuleConfiguration()); //spring.shardingsphere.props.sql.show = true
Properties properties = new Properties();
properties.put("sql.show","true");
return ShardingDataSourceFactory.createDataSource(createDataSourceMap(),
     shardingRuleConfig,properties);
       }
}

由於採用類配置類所以需要屏蔽原來application.properties文件中spring.shardingsphere開頭的配置信息。還需要在SpringBoot啟動類中屏蔽使用spring.shardingsphere配置項的類 :

@SpringBootApplication(exclude = {SpringBootConfiguration.class}) public class ShardingJdbcSimpleDemoBootstrap {....}

Spring命名空間配置 此方式使用xml方式配置,不推薦使用。

<?xml version="1.0" encoding="UTF‐8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema‐instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
   xmlns:sharding="http://shardingsphere.apache.org/schema/shardingsphere/sharding"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring‐beans.xsd
http://shardingsphere.apache.org/schema/shardingsphere/sharding
http://shardingsphere.apache.org/schema/shardingsphere/sharding/sharding.xsd http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring‐context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring‐tx.xsd">
<context:annotation‐config />
<!‐‐定義多個數據源‐‐>
<bean id="m1" class="com.alibaba.druid.pool.DruidDataSource" destroy‐method="close">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/order_db_1?useUnicode=true" /> 
<property name="username" value="root" />
<property name="password" value="root" />
</bean>
<!‐‐定義分庫策略‐‐>
<sharding:inline‐strategy id="tableShardingStrategy" sharding‐column="order_id" algorithm‐
expression="t_order_$‐>{order_id % 2 + 1}" /> 
<!‐‐定義主鍵生成策略‐‐>
<sharding:key‐generator id="orderKeyGenerator" type="SNOWFLAKE" column="order_id" />
<!‐‐定義sharding‐Jdbc數據源‐‐> <sharding:data‐source id="shardingDataSource">
<sharding:sharding‐rule data‐source‐names="m1"> 
<sharding:table‐rules>
<sharding:table‐rule logic‐table="t_order" table‐strategy‐ ref="tableShardingStrategy" key‐generator‐ref="orderKeyGenerator" />
</sharding:table‐rules> 
</sharding:sharding‐rule>
</sharding:data‐source> 
</beans>

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 基於jquery的提示框JavaScript 插件,類Bootstrap [TOC] 源碼 github地址: "https://github.com/Ethan Xie/message" 實例 通過此此插件可以為提示欄添加自動/點擊消失的功能 用法 需引入message.css與message.j ...
  • 第一步: 在 VSCode 中,安裝用於同步配置的插件 settings sync 第二步:將 VSCode 配置上傳到 GitHub 完成這一步需要 GitHub token 和 GitHub gist 進入GitHub 設置界面 & 創建 GitHub token 在這裡找到之前你上傳 VSCo ...
  • 聊一聊 webpack 中的 preloading 和 Prefetching 提到 Preloading 和 Prefetching 就不得不先說一下代碼分割,通過下麵的例子我們來說明為什麼需要代碼分割? 在首次訪問時, index.js 文件的大小為 2 MB,需要載入的大小是 2 MB 業務代 ...
  • 使用jenkins實現多分支、多環境,多項目、多套配置文件、多編程語言的應用"一鍵發佈"和"一鍵回滾"的架構實踐 ...
  • 分庫分表之第三篇 3. Sharding-JDBC執行原理 3.1 基本概念 3.2. SQL解析 3.3.SQL路由 3.4. SQL改寫 3.6.結果歸併 3.7 總結 3. Sharding-JDBC執行原理 3.1 基本概念 在瞭解Sharding-JDBC的執行原理前,需要瞭解以下概念 : ...
  • 設計模式分類(23) 創建型模式(5) "抽象工廠(Abstract Factory)" "建造者(Builder)" "工廠方法(Factory Method)" "原型(Prototype)" "單例(Singleton)" 結構型模式(7) "適配器(Adapter)" "橋接(Bridge) ...
  • 訪問者模式 定義 表示一個作用於某對象結構中的各元素的操作。它使你可以在不改變各元素的類的前提下定義作用於這些元素的新操作。 UML圖 特點 訪問者模式適用於數據結構相對穩定的系統,它把數據和作用於結構上的操作之間的耦合解脫開,使得操作集合可以相對自由的演化 訪問者模式的目的是要把處理從數據結構分離 ...
  • 參考ObjectPool對象池設計原理還原一個簡易的Provider模式。 存儲對象的數組ObjectWrapper內元素的取、還操作通過Interlock.CompareExchange巧妙的實現,並且是線程安全的。 取操作: 。取完後將元素置為null 還操作: 如果元素為null,則賦值 設計 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...