Please refer to the following configuration in order to use the ShardingSphere shadow DB feature in ShardingSphere-Proxy.
rules:
- !SHADOW
dataSources:
shadowDataSource:
productionDataSourceName: # production data source name
shadowDataSourceName: # shadow data source name
tables:
<table_name>:
dataSourceNames: # shadow table associates shadow data source name list
- <shadow_data_source>
shadowAlgorithmNames: # shadow table associates shadow algorithm name list
- <shadow_algorithm_name>
defaultShadowAlgorithmName: # default shadow algorithm name (option)
shadowAlgorithms:
<shadow_algorithm_name> (+): # shadow algorithm name
type: # shadow algorithm type
props: # shadow algorithm attribute configuration
Please refer to Built-in shadow algorithm list for more details.
createDataSource()
method of the YamlShardingSphereDataSourceFactory
object to create a ShardingSphereDataSource based on the configuration information in the YAML file.The YAML configuration sample of shadow DB is as follows:
dataSources:
ds:
url: jdbc:mysql://127.0.0.1:3306/ds?serverTimezone=UTC&useSSL=false
username: root
password:
connectionTimeoutMilliseconds: 30000
idleTimeoutMilliseconds: 60000
maxLifetimeMilliseconds: 1800000
maxPoolSize: 50
minPoolSize: 1
shadow_ds:
url: jdbc:mysql://127.0.0.1:3306/shadow_ds?serverTimezone=UTC&useSSL=false
username: root
password:
connectionTimeoutMilliseconds: 30000
idleTimeoutMilliseconds: 60000
maxLifetimeMilliseconds: 1800000
maxPoolSize: 50
minPoolSize: 1
rules:
- !SHADOW
dataSources:
shadowDataSource:
productionDataSourceName: ds
shadowDataSourceName: shadow_ds
tables:
t_order:
dataSourceNames:
- shadowDataSource
shadowAlgorithmNames:
- user_id_insert_match_algorithm
- sql_hint_algorithm
shadowAlgorithms:
user_id_insert_match_algorithm:
type: REGEX_MATCH
props:
operation: insert
column: user_id
regex: "[1]"
sql_hint_algorithm:
type: SQL_HINT