91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表

發布時間:2021-11-20 15:36:50 來源:億速云 閱讀:124 作者:小新 欄目:編程語言

小編給大家分享一下SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

一、水平分割

1、水平分庫

1)、概念:
以字段為依據,按照一定策略,將一個庫中的數據拆分到多個庫中。
2)、結果
每個庫的結構都一樣;數據都不一樣;
所有庫的并集是全量數據;

2、水平分表

1)、概念
以字段為依據,按照一定策略,將一個表中的數據拆分到多個表中。
2)、結果
每個表的結構都一樣;數據都不一樣;
所有表的并集是全量數據;

二、Shard-jdbc 中間件

1、架構圖

SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表

2、特點

1)、Sharding-JDBC直接封裝JDBC API,舊代碼遷移成本幾乎為零。
2)、適用于任何基于Java的ORM框架,如Hibernate、Mybatis等 。
3)、可基于任何第三方的數據庫連接池,如DBCP、C3P0、 BoneCP、Druid等。
4)、以jar包形式提供服務,無proxy代理層,無需額外部署,無其他依賴。
5)、分片策略靈活,可支持等號、between、in等多維度分片,也可支持多分片鍵。
6)、SQL解析功能完善,支持聚合、分組、排序、limit、or等查詢。

三、項目演示

1、項目結構

SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表

springboot     2.0 版本
druid          1.1.13 版本
sharding-jdbc  3.1 版本

2、數據庫配置

SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表

SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表

SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表

一臺基礎庫映射(shard_one)
兩臺庫做分庫分表(shard_two,shard_three)。
表使用:table_one,table_two

3、核心代碼塊

  • 數據源配置文件

    spring:
    datasource:
      # 數據源:shard_one
      dataOne:
        type: com.alibaba.druid.pool.DruidDataSource
        druid:
          driverClassName: com.mysql.jdbc.Driver
          url: jdbc:mysql://localhost:3306/shard_one?useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&useSSL=false
          username: root
          password: 123
          initial-size: 10
          max-active: 100
          min-idle: 10
          max-wait: 60000
          pool-prepared-statements: true
          max-pool-prepared-statement-per-connection-size: 20
          time-between-eviction-runs-millis: 60000
          min-evictable-idle-time-millis: 300000
          max-evictable-idle-time-millis: 60000
          validation-query: SELECT 1 FROM DUAL
          # validation-query-timeout: 5000
          test-on-borrow: false
          test-on-return: false
          test-while-idle: true
          connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
      # 數據源:shard_two
      dataTwo:
        type: com.alibaba.druid.pool.DruidDataSource
        druid:
          driverClassName: com.mysql.jdbc.Driver
          url: jdbc:mysql://localhost:3306/shard_two?useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&useSSL=false
          username: root
          password: 123
          initial-size: 10
          max-active: 100
          min-idle: 10
          max-wait: 60000
          pool-prepared-statements: true
          max-pool-prepared-statement-per-connection-size: 20
          time-between-eviction-runs-millis: 60000
          min-evictable-idle-time-millis: 300000
          max-evictable-idle-time-millis: 60000
          validation-query: SELECT 1 FROM DUAL
          # validation-query-timeout: 5000
          test-on-borrow: false
          test-on-return: false
          test-while-idle: true
          connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
      # 數據源:shard_three
      dataThree:
        type: com.alibaba.druid.pool.DruidDataSource
        druid:
          driverClassName: com.mysql.jdbc.Driver
          url: jdbc:mysql://localhost:3306/shard_three?useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&useSSL=false
          username: root
          password: 123
          initial-size: 10
          max-active: 100
          min-idle: 10
          max-wait: 60000
          pool-prepared-statements: true
          max-pool-prepared-statement-per-connection-size: 20
          time-between-eviction-runs-millis: 60000
          min-evictable-idle-time-millis: 300000
          max-evictable-idle-time-millis: 60000
          validation-query: SELECT 1 FROM DUAL
          # validation-query-timeout: 5000
          test-on-borrow: false
          test-on-return: false
          test-while-idle: true
          connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
  • 數據庫分庫策略

    /**
    * 數據庫映射計算
    */
    public class DataSourceAlg implements PreciseShardingAlgorithm<String> {
      private static Logger LOG = LoggerFactory.getLogger(DataSourceAlg.class);
      
    @Override
      public String doSharding(Collection<String> names, PreciseShardingValue<String> value) {
          LOG.debug("分庫算法參數 {},{}",names,value);
          int hash = HashUtil.rsHash(String.valueOf(value.getValue()));
          return "ds_" + ((hash % 2) + 2) ;
      }
    }
  • 數據表1分表策略

    /**
    * 分表算法
    */
    public class TableOneAlg implements PreciseShardingAlgorithm<String> {
      private static Logger LOG = LoggerFactory.getLogger(TableOneAlg.class);
      /**
       * 該表每個庫分5張表
       */
      
    @Override
      public String doSharding(Collection<String> names, PreciseShardingValue<String> value) {
          LOG.debug("分表算法參數 {},{}",names,value);
          int hash = HashUtil.rsHash(String.valueOf(value.getValue()));
          return "table_one_" + (hash % 5+1);
      }
    }
  • 數據表2分表策略

    /**
    * 分表算法
    */
    public class TableTwoAlg implements PreciseShardingAlgorithm<String> {
      private static Logger LOG = LoggerFactory.getLogger(TableTwoAlg.class);
      /**
       * 該表每個庫分5張表
       */
      
    @Override
      public String doSharding(Collection<String> names, PreciseShardingValue<String> value) {
          LOG.debug("分表算法參數 {},{}",names,value);
          int hash = HashUtil.rsHash(String.valueOf(value.getValue()));
          return "table_two_" + (hash % 5+1);
      }
    }
  • 數據源集成配置

    /**
    * 數據庫分庫分表配置
    */
    @Configuration
    public class ShardJdbcConfig {
      // 省略了 druid 配置,源碼中有
      /**
       * Shard-JDBC 分庫配置
       */
      
    @Bean
      public DataSource dataSource (
    @Autowired DruidDataSource dataOneSource,
                                    
    @Autowired DruidDataSource dataTwoSource,
                                    
    @Autowired DruidDataSource dataThreeSource) throws Exception {
          ShardingRuleConfiguration shardJdbcConfig = new ShardingRuleConfiguration();
          shardJdbcConfig.getTableRuleConfigs().add(getTableRule01());
          shardJdbcConfig.getTableRuleConfigs().add(getTableRule02());
          shardJdbcConfig.setDefaultDataSourceName("ds_0");
          Map<String,DataSource> dataMap = new LinkedHashMap<>() ;
          dataMap.put("ds_0",dataOneSource) ;
          dataMap.put("ds_2",dataTwoSource) ;
          dataMap.put("ds_3",dataThreeSource) ;
          Properties prop = new Properties();
          return ShardingDataSourceFactory.createDataSource(dataMap, shardJdbcConfig, new HashMap<>(), prop);
      }
      /**
       * Shard-JDBC 分表配置
       */
      private static TableRuleConfiguration getTableRule01() {
          TableRuleConfiguration result = new TableRuleConfiguration();
          result.setLogicTable("table_one");
          result.setActualDataNodes("ds_${2..3}.table_one_${1..5}");
          result.setDatabaseShardingStrategyConfig(new StandardShardingStrategyConfiguration("phone", new DataSourceAlg()));
          result.setTableShardingStrategyConfig(new StandardShardingStrategyConfiguration("phone", new TableOneAlg()));
          return result;
      }
      private static TableRuleConfiguration getTableRule02() {
          TableRuleConfiguration result = new TableRuleConfiguration();
          result.setLogicTable("table_two");
          result.setActualDataNodes("ds_${2..3}.table_two_${1..5}");
          result.setDatabaseShardingStrategyConfig(new StandardShardingStrategyConfiguration("phone", new DataSourceAlg()));
          result.setTableShardingStrategyConfig(new StandardShardingStrategyConfiguration("phone", new TableTwoAlg()));
          return result;
      }
    }
  • 測試代碼執行流程

    @RestController
    public class ShardController {
      
    @Resource
      private ShardService shardService ;
      /**
       * 1、建表流程
       */
      
    @RequestMapping("/createTable")
      public String createTable (){
          shardService.createTable();
          return "success" ;
      }
      /**
       * 2、生成表 table_one 數據
       */
      
    @RequestMapping("/insertOne")
      public String insertOne (){
          shardService.insertOne();
          return "SUCCESS" ;
      }
      /**
       * 3、生成表 table_two 數據
       */
      
    @RequestMapping("/insertTwo")
      public String insertTwo (){
          shardService.insertTwo();
          return "SUCCESS" ;
      }
      /**
       * 4、查詢表 table_one 數據
       */
      
    @RequestMapping("/selectOneByPhone/{phone}")
      public TableOne selectOneByPhone (
    @PathVariable("phone") String phone){
          return shardService.selectOneByPhone(phone);
      }
      /**
       * 5、查詢表 table_one 數據
       */
      
    @RequestMapping("/selectTwoByPhone/{phone}")
      public TableTwo selectTwoByPhone (
    @PathVariable("phone") String phone){
          return shardService.selectTwoByPhone(phone);
      }
    }

看完了這篇文章,相信你對“SpringBoot2如何整合Sharding-Jdbc中間件實現數據分庫分表”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

徐水县| 荔波县| 孟连| 南澳县| 旌德县| 合肥市| 博爱县| 通化县| 伊通| 铜川市| 丰县| 邵阳县| 迁西县| 怀集县| 博乐市| 舞阳县| 都匀市| 青海省| 绵阳市| 台湾省| 城步| 游戏| 曲周县| 大安市| 肥西县| 乌拉特中旗| 巩义市| 孝感市| 五河县| 阳高县| 西宁市| 台前县| 翁牛特旗| 商南县| 丁青县| 禄丰县| 海南省| 兰考县| 兰州市| 东乡县| 安塞县|