返回介绍

Spring 命名空间配置

发布于 2021-09-25 22:17:14 字数 42943 浏览 1192 评论 0 收藏 0

ShardingSphere-5.0.0-beta

数据分片

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/sharding/sharding-5.0.0.xsd

<sharding:rule />

名称类型说明
id属性Spring Bean Id
table-rules (?)标签分片表规则配置
auto-table-rules (?)标签自动化分片表规则配置
binding-table-rules (?)标签绑定表规则配置
broadcast-table-rules (?)标签广播表规则配置
default-database-strategy-ref (?)属性默认分库策略名称
default-table-strategy-ref (?)属性默认分表策略名称
default-key-generate-strategy-ref (?)属性默认分布式序列策略名称

<sharding:table-rules />

名称类型说明
table-rule (+)标签分片表规则配置

<sharding:table-rule />

名称类型说明
logic-table属性逻辑表名称
actual-data-nodes属性由数据源名 + 表名组成,以小数点分隔。多个表以逗号分隔,支持 inline 表达式。缺省表示使用已知数据源与逻辑表名称生成数据节点,用于广播表(即每个库中都需要一个同样的表用于关联查询,多为字典表)或只分库不分表且所有库的表结构完全一致的情况
database-strategy-ref属性标准分片表分库策略名称
table-strategy-ref属性标准分片表分表策略名称
key-generate-strategy-ref属性分布式序列策略名称

<auto-table-rules/>

名称类型说明
auto-table-rule (+)标签自动化分片表规则配置

<auto-table-rule/>

名称类型说明
logic-table属性逻辑表名称
actual-data-sources属性自动分片表数据源名
sharding-strategy-ref属性自动分片表策略名称
key-generate-strategy-ref属性分布式序列策略名称

<sharding:binding-table-rules />

名称类型说明
binding-table-rule (+)标签绑定表规则配置

<sharding:binding-table-rule />

名称类型说明
logic-tables属性绑定表名称,多个表以逗号分隔

<sharding:broadcast-table-rules />

名称类型说明
broadcast-table-rule (+)标签广播表规则配置

<sharding:broadcast-table-rule />

名称类型说明
table属性广播表名称

<sharding:standard-strategy />

名称类型说明
id属性标准分片策略名称
sharding-column属性分片列名称
algorithm-ref属性分片算法名称

<sharding:complex-strategy />

名称类型说明
id属性复合分片策略名称
sharding-columns属性分片列名称,多个列以逗号分隔
algorithm-ref属性分片算法名称

<sharding:hint-strategy />

名称类型说明
id属性Hint 分片策略名称
algorithm-ref属性分片算法名称

<sharding:none-strategy />

名称类型说明
id属性分片策略名称

<sharding:key-generate-strategy />

名称类型说明
id属性分布式序列策略名称
column属性分布式序列列名称
algorithm-ref属性分布式序列算法名称

<sharding:sharding-algorithm />

名称类型说明
id属性分片算法名称
type属性分片算法类型
props (?)标签分片算法属性配置

<sharding:key-generate-algorithm />

名称类型说明
id属性分布式序列算法名称
type属性分布式序列算法类型
props (?)标签分布式序列算法属性配置

算法类型的详情,请参见 内置分片算法列表内置分布式序列算法列表

注意事项

行表达式标识符可以使用 ${...}$->{...} ,但前者与 Spring 本身的属性文件占位符冲突,因此在 Spring 环境中使用行表达式标识符建议使用 $->{...}

读写分离

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/readwrite-splitting/readwrite-splitting-5.0.0.xsd

<readwrite-splitting:rule />

名称类型说明
id属性Spring Bean Id
data-source-rule (+)标签读写分离数据源规则配置

<readwrite-splitting:data-source-rule />

名称类型说明
id属性读写分离数据源规则名称
auto-aware-data-source-name (?)属性自动感知数据源名称
write-data-source-name属性写数据源名称
read-data-source-names属性读数据源名称,多个读数据源用逗号分隔
load-balance-algorithm-ref (?)属性负载均衡算法名称

<readwrite-splitting:load-balance-algorithm />

名称类型说明
id属性负载均衡算法名称
type属性负载均衡算法类型
props (?)标签负载均衡算法属性配置

算法类型的详情,请参见 内置负载均衡算法列表

数据加密

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/encrypt/encrypt-5.0.0.xsd

<encrypt:rule />

名称类型说明默认值
id属性Spring Bean Id 
queryWithCipherColumn (?)属性是否使用加密列进行查询。在有原文列的情况下,可以使用原文列进行查询true
table (+)标签加密表配置 

<encrypt:table />

名称类型说明
name属性加密表名称
column (+)标签加密列配置

<encrypt:column />

名称类型说明
logic-column属性加密列逻辑名称
cipher-column属性加密列名称
assisted-query-column (?)属性查询辅助列名称
plain-column (?)属性原文列名称
encrypt-algorithm-ref属性加密算法名称

<encrypt:encrypt-algorithm />

名称类型说明
id属性加密算法名称
type属性加密算法类型
props (?)标签加密算法属性配置

算法类型的详情,请参见 内置加密算法列表

影子库

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/shadow/shadow-5.0.0.xsd

<shadow:rule />

名称类型说明
id属性Spring Bean Id
column属性影子字段名称
mappings(?)标签生产数据库与影子数据库的映射关系配置

<shadow:mapping />

名称类型说明
product-data-source-name属性生产数据库名称
shadow-data-source-name属性影子数据库名称

分布式治理

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/governance/governance-5.0.0.xsd

<governance:reg-center />

名称类型说明
id属性注册中心实例名称
schema-name属性JDBC 数据源别名,该参数可实现 JDBC 与 PROXY 共享配置
type属性注册中心类型。如:ZooKeeper, etcd
namespace属性注册中心命名空间
server-lists属性注册中心服务列表。包括 IP 地址和端口号。多个地址用逗号分隔。如: host1:2181,host2:2181
props (?)属性配置本实例需要的其他参数,例如 ZooKeeper 的连接参数等

ShardingSphere-4.x

数据分片

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/sharding/sharding-4.0.0.xsd

<sharding:data-source />

名称类型说明
id属性Spring Bean Id
sharding-rule标签数据分片配置规则
props (?)标签属性配置

<sharding:sharding-rule />

名称类型说明
data-source-names属性数据源 Bean 列表,多个 Bean 以逗号分隔
table-rules标签表分片规则配置对象
binding-table-rules (?)标签绑定表规则列表
broadcast-table-rules (?)标签广播表规则列表
default-data-source-name (?)属性未配置分片规则的表将通过默认数据源定位
default-database-strategy-ref (?)属性默认数据库分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示不分库
default-table-strategy-ref (?)属性默认表分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示不分表
default-key-generator-ref (?)属性默认自增列值生成器引用,缺省使用 org.apache.shardingsphere.core.keygen.generator.impl.SnowflakeKeyGenerator
encrypt-rule (?)标签脱敏规则

<sharding:table-rules />

名称类型说明
table-rule (+)标签表分片规则配置对象

<sharding:table-rule />

名称类型说明
logic-table属性逻辑表名称
actual-data-nodes (?)属性由数据源名 + 表名组成,以小数点分隔。多个表以逗号分隔,支持 inline 表达式。缺省表示使用已知数据源与逻辑表名称生成数据节点,用于广播表(即每个库中都需要一个同样的表用于关联查询,多为字典表)或只分库不分表且所有库的表结构完全一致的情况
database-strategy-ref (?)属性数据库分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示使用 <sharding:sharding-rule /> 配置的默认数据库分片策略
table-strategy-ref (?)属性表分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示使用 <sharding:sharding-rule /> 配置的默认表分片策略
key-generator-ref (?)属性自增列值生成器引用,缺省表示使用默认自增列值生成器

<sharding:binding-table-rules />

名称类型说明
binding-table-rule (+)标签绑定表规则

<sharding:binding-table-rule />

名称类型说明
logic-tables属性绑定规则的逻辑表名,多表以逗号分隔

<sharding:broadcast-table-rules />

名称类型说明
broadcast-table-rule (+)标签广播表规则

<sharding:broadcast-table-rule />

名称类型说明
table属性广播规则的表名

<sharding:standard-strategy />

名称类型说明
id属性Spring Bean Id
sharding-column属性分片列名称
precise-algorithm-ref属性精确分片算法引用,用于=和 IN。该类需实现 PreciseShardingAlgorithm 接口
range-algorithm-ref (?)属性范围分片算法引用,用于 BETWEEN。该类需实现 RangeShardingAlgorithm 接口

<sharding:complex-strategy />

名称类型说明
id属性Spring Bean Id
sharding-columns属性分片列名称,多个列以逗号分隔
algorithm-ref属性复合分片算法引用。该类需实现 ComplexKeysShardingAlgorithm 接口

<sharding:inline-strategy />

名称类型说明
id属性Spring Bean Id
sharding-column属性分片列名称
algorithm-expression属性分片算法行表达式,需符合 groovy 语法

<sharding:hint-database-strategy />

名称类型说明
id属性Spring Bean Id
algorithm-ref属性Hint 分片算法。该类需实现 HintShardingAlgorithm 接口

<sharding:none-strategy />

名称类型说明
id属性Spring Bean Id

<sharding:key-generator />

名称类型说明
column属性自增列名称
type属性自增列值生成器类型,可自定义或选择内置类型:SNOWFLAKE/UUID
props-ref属性自增列值生成器的属性配置引用

Properties

属性配置项,可以为以下自增列值生成器的属性。

SNOWFLAKE
名称类型说明
worker.id (?)long工作机器唯一 id,默认为 0
max.tolerate.time.difference.milliseconds (?)long最大容忍时钟回退时间,单位:毫秒。默认为 10 毫秒
max.vibration.offset (?)int最大抖动上限值,范围[0, 4096),默认为 1。注:若使用此算法生成值作分片值,建议配置此属性。此算法在不同毫秒内所生成的 key 取模 2^n (2^n 一般为分库或分表数) 之后结果总为 0 或 1。为防止上述分片问题,建议将此属性值配置为(2^n)-1

<sharding:encrypt-rule />

名称类型说明
encrypt:encrypt-rule (?)标签加解密规则

<sharding:props />

名称类型说明
sql.show (?)属性是否开启 SQL 显示,默认值: false
executor.size (?)属性工作线程数量,默认值: CPU 核数
max.connections.size.per.query (?)属性每个物理数据库为每次查询分配的最大连接数量。默认值: 1
check.table.metadata.enabled (?)属性是否在启动时检查分表元数据一致性,默认值: false
query.with.cipher.column (?)属性当存在明文列时,是否使用密文列查询,默认值: true

读写分离

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/masterslave/master-slave.xsd

<https://www.wenjiangs.com/doc/cZMUP36QKVmaster-slave:data-source />

名称类型说明
id属性Spring Bean Id
master-data-source-name属性主库数据源 Bean Id
slave-data-source-names属性从库数据源 Bean Id 列表,多个 Bean 以逗号分隔
strategy-ref (?)属性从库负载均衡算法引用。该类需实现 MasterSlaveLoadBalanceAlgorithm 接口
strategy-type (?)属性从库负载均衡算法类型,可选值:ROUND_ROBIN,RANDOM。若 strategy-ref 存在则忽略该配置
props (?)标签属性配置

<master-slave:props />

名称类型说明
sql.show (?)属性是否开启 SQL 显示,默认值: false
executor.size (?)属性工作线程数量,默认值: CPU 核数
max.connections.size.per.query (?)属性每个物理数据库为每次查询分配的最大连接数量。默认值: 1
check.table.metadata.enabled (?)属性是否在启动时检查分表元数据一致性,默认值: false

<master-slave:load-balance-algorithm /> 4.0.0-RC2 版本 添加

名称类型说明
id属性Spring Bean Id
type (?)属性负载均衡算法类型,‘RANDOM’或’ROUND_ROBIN’,支持自定义拓展
props-ref (?)属性负载均衡算法配置参数

数据脱敏

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/encrypt/encrypt.xsd

<encrypt:data-source />

名称类型说明
id属性Spring Bean Id
data-source-name属性加密数据源 Bean Id
props (?)标签属性配置

<encrypt:encryptors />

名称类型说明
encryptor (+)标签加密器配置

<encrypt:encryptor />

名称类型说明
id属性加密器的名称
type属性加解密器类型,可自定义或选择内置类型:MD5/AES
props-ref属性属性配置, 注意:使用 AES 加密器,需要配置 AES 加密器的 KEY 属性:aes.key.value

<encrypt:tables />

名称类型说明
table (+)标签加密表配置

<encrypt:table />

名称类型说明
column (+)标签加密列配置

<encrypt:column />

名称类型说明
logic-column属性逻辑列名
plain-column属性存储明文的字段
cipher-column属性存储密文的字段
assisted-query-columns属性辅助查询字段,针对 ShardingQueryAssistedEncryptor 类型的加解密器进行辅助查询

<encrypt:props />

名称类型说明
sql.show (?)属性是否开启 SQL 显示,默认值: false
query.with.cipher.column (?)属性当存在明文列时,是否使用密文列查询,默认值: true

治理

数据分片 + 治理

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:sharding-data-source />

名称类型说明
id属性ID
data-source-ref (?)属性被治理的数据库 id
registry-center-ref属性注册中心 id
overwrite属性本地配置是否覆盖注册中心配置。如果可覆盖,每次启动都以本地配置为准。缺省为不覆盖

读写分离 + 治理

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:master-slave-data-source />

名称类型说明
id属性ID
data-source-ref (?)属性被治理的数据库 id
registry-center-ref属性注册中心 id
overwrite属性本地配置是否覆盖注册中心配置。如果可覆盖,每次启动都以本地配置为准。缺省为不覆盖

数据脱敏 + 治理

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:encrypt-data-source />

名称类型说明
id属性ID
data-source-ref (?)属性被治理的数据库 id
registry-center-ref属性注册中心 id
overwrite属性本地配置是否覆盖注册中心配置。如果可覆盖,每次启动都以本地配置为准。缺省为不覆盖

治理注册中心

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:registry-center />

名称类型说明
id属性注册中心的 Spring Bean Id
type属性注册中心类型。如:zookeeper
server-lists属性连接注册中心服务器的列表,包括 IP 地址和端口号,多个地址用逗号分隔。如: host1:2181,host2:2181
namespace (?)属性注册中心的命名空间
digest (?)属性连接注册中心的权限令牌。缺省为不需要权限验证
operation-timeout-milliseconds (?)属性操作超时的毫秒数,默认 500 毫秒
max-retries (?)属性连接失败后的最大重试次数,默认 3 次
retry-interval-milliseconds (?)属性重试间隔毫秒数,默认 500 毫秒
time-to-live-seconds (?)属性临时节点存活秒数,默认 60 秒
props-ref (?)属性配置中心其它属性

ShardingSphere-3.x

数据分片

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/sharding/sharding.xsd

<sharding:data-source />

名称类型说明
id属性Spring Bean Id
sharding-rule标签数据分片配置规则
config-map (?)标签用户自定义配置
props (?)标签属性配置

<sharding:sharding-rule />

名称类型说明
data-source-names属性数据源 Bean 列表,多个 Bean 以逗号分隔
table-rules标签表分片规则配置对象
binding-table-rules (?)标签绑定表规则列表
broadcast-table-rules (?)标签广播表规则列表
default-data-source-name (?)属性未配置分片规则的表将通过默认数据源定位
default-database-strategy-ref (?)属性默认数据库分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示不分库
default-table-strategy-ref (?)属性默认表分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示不分表
default-key-generator-ref (?)属性默认自增列值生成器引用,缺省使用 io.shardingsphere.core.keygen.DefaultKeyGenerator。该类需实现 KeyGenerator 接口

<sharding:table-rules />

名称类型说明
table-rule (+)标签表分片规则配置对象

<sharding:table-rule />

名称类型说明
logic-table属性逻辑表名称
actual-data-nodes (?)属性由数据源名 + 表名组成,以小数点分隔。多个表以逗号分隔,支持 inline 表达式。缺省表示使用已知数据源与逻辑表名称生成数据节点。用于广播表(即每个库中都需要一个同样的表用于关联查询,多为字典表)或只分库不分表且所有库的表结构完全一致的情况
database-strategy-ref (?)属性数据库分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示使用 <sharding:sharding-rule /> 配置的默认数据库分片策略
table-strategy-ref (?)属性表分片策略,对应 <sharding:xxx-strategy> 中的策略 Id,缺省表示使用 <sharding:sharding-rule /> 配置的默认表分片策略
generate-key-column-name (?)属性自增列名称,缺省表示不使用自增主键生成器
key-generator-ref (?)属性自增列值生成器引用,缺省表示使用默认自增列值生成器.该类需实现 KeyGenerator 接口
logic-index (?)属性逻辑索引名称,对于分表的 Oracle/PostgreSQL 数据库中 DROP INDEX XXX 语句,需要通过配置逻辑索引名称定位所执行 SQL 的真实分表

<sharding:binding-table-rules />

名称类型说明
binding-table-rule (+)标签绑定表规则

<sharding:broadcast-table-rule />

名称类型说明
table属性广播规则的表名

<sharding:standard-strategy />

名称类型说明
id属性Spring Bean Id
sharding-column属性分片列名称
precise-algorithm-ref属性精确分片算法引用,用于=和 IN。该类需实现 PreciseShardingAlgorithm 接口
range-algorithm-ref (?)属性范围分片算法引用,用于 BETWEEN。该类需实现 RangeShardingAlgorithm 接口

<sharding:complex-strategy />

名称类型说明
id属性Spring Bean Id
sharding-columns属性分片列名称,多个列以逗号分隔
algorithm-ref属性复合分片算法引用。该类需实现 ComplexKeysShardingAlgorithm 接口

<sharding:inline-strategy />

名称类型说明
id属性Spring Bean Id
sharding-column属性分片列名称
algorithm-expression属性分片算法行表达式,需符合 groovy 语法

<sharding:hint-database-strategy />

名称类型说明
id属性Spring Bean Id
algorithm-ref属性Hint 分片算法。该类需实现 HintShardingAlgorithm 接口

<sharding:none-strategy />

名称类型说明
id属性Spring Bean Id

<sharding:props />

名称类型说明
sql.show (?)属性是否开启 SQL 显示,默认值: false
executor.size (?)属性工作线程数量,默认值: CPU 核数
max.connections.size.per.query (?)属性每个物理数据库为每次查询分配的最大连接数量。默认值: 1
check.table.metadata.enabled (?)属性是否在启动时检查分表元数据一致性,默认值: false

<sharding:config-map />

读写分离

配置项说明

命名空间: http://apache.shardingsphere.org/schema/shardingsphere/masterslave/master-slave.xsd

<https://www.wenjiangs.com/doc/cZMUP36QKVmaster-slave:data-source />

名称类型说明
id属性Spring Bean Id
master-data-source-name属性主库数据源 Bean Id
slave-data-source-names属性从库数据源 Bean Id 列表,多个 Bean 以逗号分隔
strategy-ref (?)属性从库负载均衡算法引用。该类需实现 MasterSlaveLoadBalanceAlgorithm 接口
strategy-type (?)属性从库负载均衡算法类型,可选值:ROUND_ROBIN,RANDOM。若 strategy-ref 存在则忽略该配置
config-map (?)属性用户自定义配置
props (?)属性属性配置

<master-slave:config-map />

<master-slave:props />

名称类型说明
sql.show (?)属性是否开启 SQL 显示,默认值: false
executor.size (?)属性工作线程数量,默认值: CPU 核数
max.connections.size.per.query (?)属性每个物理数据库为每次查询分配的最大连接数量。默认值: 1
check.table.metadata.enabled (?)属性是否在启动时检查分表元数据一致性,默认值: false

治理

数据分片 + 数据治理

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:sharding-data-source />

名称类型说明
id属性ID
data-source-ref (?)属性被治理的数据库 id
registry-center-ref属性注册中心 id
overwrite (?)属性本地配置是否覆盖注册中心配置。如果可覆盖,每次启动都以本地配置为准。 缺省为不覆盖

读写分离 + 数据治理

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:master-slave-data-source />

名称类型说明
id属性ID
data-source-ref (?)属性被治理的数据库 id
registry-center-ref属性注册中心 id
overwrite (?)属性本地配置是否覆盖注册中心配置。如果可覆盖,每次启动都以本地配置为准。 缺省为不覆盖

数据治理注册中心

配置项说明

命名空间: http://shardingsphere.apache.org/schema/shardingsphere/orchestration/orchestration.xsd

<orchestration:registry-center />

名称类型说明
id属性注册中心的 Spring Bean Id
server-lists属性连接注册中心服务器的列表,包括 IP 地址和端口号,多个地址用逗号分隔。如: host1:2181,host2:2181
namespace (?)属性注册中心的命名空间
digest (?)属性连接注册中心的权限令牌。缺省为不需要权限验证
operation-timeout-milliseconds (?)属性操作超时的毫秒数,默认 500 毫秒
max-retries (?)属性连接失败后的最大重试次数,默认 3 次
retry-interval-milliseconds (?)属性重试间隔毫秒数,默认 500 毫秒
time-to-live-seconds (?)属性临时节点存活秒数,默认 60 秒

ShardingSphere-2.x

数据分片

配置项说明

<sharding:data-source/>

定义 sharding-jdbc 数据源

名称类型数据类型必填说明
id属性StringSpring Bean ID
sharding-rule标签-分片规则
binding-table-rules (?)标签-分片规则
props (?)标签-相关属性配置

<sharding:sharding-rule/>

名称类型数据类型必填说明
data-source-names属性String数据源 Bean 列表,需要配置所有需要被 Sharding-JDBC 管理的数据源 BEAN ID(包括默认数据源),多个 Bean 以逗号分隔
default-data-source-name (?)属性String默认数据源名称,未配置分片规则的表将通过默认数据源定位
default-database-strategy-ref (?)属性String默认分库策略,对应 <sharding:xxx-strategy> 中的策略 id,不填则使用不分库的策略
default-table-strategy-ref (?)属性String默认分表策略,对应 <sharding:xxx-strategy> 中的策略 id,不填则使用不分表的策略
table-rules标签-分片规则列表

<sharding:table-rules/>

名称类型数据类型必填说明
table-rule(+)标签-分片规则

<sharding:table-rule/>

名称类型数据类型必填说明
logic-table属性String逻辑表名
actual-data-nodes (?)属性String真实数据节点,由数据源名(读写分离引用 https://www.wenjiangs.com/doc/cZMUP36QKVmaster-slave:data-source 中的 id 属性) + 表名组成,以小数点分隔。多个表以逗号分隔,支持 inline 表达式。不填写表示将为现有已知的数据源 + 逻辑表名称生成真实数据节点。用于广播表(即每个库中都需要一个同样的表用于关联查询,多为字典表)或只分库不分表且所有库的表结构完全一致的情况。
database-strategy-ref (?)属性String分库策略,对应 <sharding:xxx-strategy> 中的策略 id,不填则使用 <sharding:sharding-rule/> 配置的 default-database-strategy-ref
table-strategy-ref (?)属性String分表策略,对应 <sharding:xxx-strategy> 中的略 id,不填则使用 <sharding:sharding-rule/> 配置的 default-table-strategy-ref
logic-index (?)属性String逻辑索引名称,对于分表的 Oracle/PostgreSQL 数据库中 DROP INDEX XXX 语句,需要通过配置逻辑索引名称定位所执行 SQL 的真实分表

<sharding:binding-table-rules/>

名称类型数据类型必填说明
binding-table-rule标签-绑定规则

<sharding:binding-table-rule/>

名称类型数据类型必填说明
logic-tables属性String逻辑表名,多个表名以逗号分隔

<sharding:standard-strategy/> 标准分片策略,用于单分片键的场景

名称类型数据类型必填说明
sharding-column属性String分片列名
precise-algorithm-class属性String精确的分片算法类名称,用于=和 IN。该类需使用默认的构造器或者提供无参数的构造器
range-algorithm-class (?)属性String范围的分片算法类名称,用于 BETWEEN。该类需使用默认的构造器或者提供无参数的构造器

<sharding:complex-strategy/> 复合分片策略,用于多分片键的场景

名称类型数据类型必填说明
sharding-columns属性String分片列名,多个列以逗号分隔
algorithm-class属性String分片算法全类名,该类需使用默认的构造器或者提供无参数的构造器

<sharding:inline-strategy/> inline 表达式分片策略

名称类型数据类型必填说明
sharding-column属性String分片列名
algorithm-expression属性String分片算法表达式

<sharding:hint-database-strategy/> Hint 方式分片策略

名称类型数据类型必填说明
algorithm-class属性String分片算法全类名,该类需使用默认的构造器或者提供无参数的构造器

<sharding:none-strategy/> 不分片的策略

<sharding:props/>

名称类型数据类型必填说明
sql.show属性boolean是否开启 SQL 显示,默认为 false 不开启
executor.size (?)属性int最大工作线程数量

读写分离

配置项说明

<https://www.wenjiangs.com/doc/cZMUP36QKVmaster-slave:data-source/> 定义 sharding-jdbc 读写分离的数据源

名称类型数据类型必填说明
id属性StringSpring Bean ID
master-data-source-name标签-主库数据源 Bean ID
slave-data-source-names标签-从库数据源 Bean 列表,多个 Bean 以逗号分隔
strategy-ref (?)标签-主从库复杂策略 Bean ID,可以使用自定义复杂策略
strategy-type (?)标签String主从库复杂策略类型
可选值:ROUND_ROBIN, RANDOM
默认值:ROUND_ROBIN

Spring 格式特别说明

如需使用 inline 表达式,需配置 ignore-unresolvable 为 true,否则 placeholder 会把 inline 表达式当成属性 key 值导致出错。

分片算法表达式语法说明

inline 表达式特别说明

${begin..end} 表示范围区间

${[unit1, unit2, unitX]} 表示枚举值

inline 表达式中连续多个${…}表达式,整个 inline 最终的结果将会根据每个子表达式的结果进行笛卡尔组合,例如正式表 inline 表达式如下:


dbtbl_${['online', 'offline']}_${1..3}

最终会解析为 dbtbl_online_1,dbtbl_online_2,dbtbl_online_3,dbtbl_offline_1,dbtbl_offline_2 和 dbtbl_offline_3 这 6 张表。

字符串内嵌 groovy 代码

表达式本质上是一段字符串,字符串中使用${}来嵌入 groovy 代码。


data_source_${id % 2 + 1}

上面的表达式中 data_source_是字符串前缀,id % 2 + 1 是 groovy 代码。

治理

Zookeeper 标签说明

名称类型是否必填缺省值描述
idString 注册中心在 Spring 容器中的主键
server-listsString 连接 Zookeeper 服务器的列表
包括 IP 地址和端口号
多个地址用逗号分隔
如: host1:2181,host2:2181
namespaceString Zookeeper 的命名空间
base-sleep-time-milliseconds (?)int1000等待重试的间隔时间的初始值
单位:毫秒
max-sleep-time-milliseconds (?)int3000等待重试的间隔时间的最大值
单位:毫秒
max-retries (?)int3最大重试次数
session-timeout-milliseconds (?)int60000会话超时时间
单位:毫秒
connection-timeout-milliseconds (?)int15000连接超时时间
单位:毫秒
digest (?)String 连接 Zookeeper 的权限令牌
缺省为不需要权限验证

Etcd 配置示例

名称类型是否必填缺省值描述
idString 注册中心在 Spring 容器中的主键
server-listsString 连接 Etcd 服务器的列表
包括 IP 地址和端口号
多个地址用逗号分隔
如: http://host1:2379,http://host2:2379
time-to-live-seconds (?)int60临时节点存活时间
单位:秒
timeout-milliseconds (?)int500每次请求的超时时间
单位:毫秒
max-retries (?)int3每次请求的最大重试次数
retry-interval-milliseconds (?)int200重试间隔时间
单位:毫秒

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文