您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關如何使用sharding-jdbc實現水平分庫+水平分表的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
分庫分表策略:將id為偶數的存入到庫1中,奇數存入到庫2中,在每個庫中,再根據學生的性別分別存到到表1和表2中。
CREATE TABLE `NewTable` ( `ID` bigint(20) NOT NULL , `NAME` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL , `AGE` int(11) NOT NULL , `GENDER` int(1) NOT NULL , PRIMARY KEY (`ID`) );
相比前面文章中,將gender性別字段設置成了int類型,方便根據性別再進行分表。
spring.main.allow-bean-definition-overriding=true # 配置Sharding-JDBC的分片策略 # 配置數據源,給數據源起名g1,g2...此處可配置多數據源 spring.shardingsphere.datasource.names=g1,g2 # 配置數據源具體內容:連接池,驅動,地址,用戶名,密碼 spring.shardingsphere.datasource.g1.type=com.alibaba.druid.pool.DruidDataSource spring.shardingsphere.datasource.g1.driver-class-name=com.mysql.cj.jdbc.Driver spring.shardingsphere.datasource.g1.url=jdbc:mysql://localhost:3306/sharding_db1?characterEncoding=utf-8&useUnicode=true&useSSL=false&serverTimezone=UTC spring.shardingsphere.datasource.g1.username=root spring.shardingsphere.datasource.g1.password=123456 spring.shardingsphere.datasource.g2.type=com.alibaba.druid.pool.DruidDataSource spring.shardingsphere.datasource.g2.driver-class-name=com.mysql.cj.jdbc.Driver spring.shardingsphere.datasource.g2.url=jdbc:mysql://localhost:3306/sharding_db2?characterEncoding=utf-8&useUnicode=true&useSSL=false&serverTimezone=UTC spring.shardingsphere.datasource.g2.username=root spring.shardingsphere.datasource.g2.password=123456 # 配置數據庫的分布,表的分布 spring.shardingsphere.sharding.tables.student.actual-data-nodes=g$->{1..2}.student_$->{1..2} # 指定student表 主鍵gid 生成策略為 SNOWFLAKE spring.shardingsphere.sharding.tables.student.key-generator.column=id spring.shardingsphere.sharding.tables.student.key-generator.type=SNOWFLAKE # 指定數據庫分片策略 約定id值是偶數添加到sharding_db1中,奇數添加到sharding_db2中 spring.shardingsphere.sharding.tables.student.database-strategy.inline.sharding-column=id spring.shardingsphere.sharding.tables.student.database-strategy.inline.algorithm-expression=g$->{id % 2 + 1} # 指定表分片策略 約定gender值是0添加到student_1表,如果gender是1添加到student_2表 spring.shardingsphere.sharding.tables.student.table-strategy.inline.sharding-column=gender spring.shardingsphere.sharding.tables.student.table-strategy.inline.algorithm-expression=student_$->{gender % 2 + 1} # 打開sql輸出日志 spring.shardingsphere.props.sql.show=true
配置多個數據源時,使用逗號隔開,分別配置其屬性。除了配置表分片策略,還需配置庫分配策略。
@SpringBootTest class ShardingJdbcDemoApplicationTests { @Autowired private StudentMapper studentMapper; @Test public void test01() { for (int i = 0; i < 15; i++) { Student student = new Student(); student.setName("wuwl"); student.setAge(27); student.setGender(i%2); studentMapper.insert(student); } } }
運行效果:
看樣子是成功了,查看數據庫數據。
sharding_db1.student_1:
sharding_db1.student_2:
sharding_db2.student_1:
sharding_db2.student_2:
感謝各位的閱讀!關于“如何使用sharding-jdbc實現水平分庫+水平分表”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。