Logo
Shadow Algorithm

Background #

The shadow DB feature carries out shadow measurement to SQL statements executed. Shadow measurement supports two types of algorithms, and users can choose one or a combination of them based on actual business needs.

Parameters #

Column-based shadow algorithm #

Column value matching shadow algorithm #

Type:VALUE_MATCH

Attribute NameData TypeDescription
columnStringshadow column
operationStringSQL operation type (INSERT, UPDATE, DELETE, SELECT)
valueStringvalue matched by shadow column

Column-based Regex matching algorithm #

Type:REGEX_MATCH

Attribute NameData TypeDescription
columnStringmatch a column
operationStringSQL operation type(INSERT, UPDATE, DELETE, SELECT)
regexStringshadow column matching Regex

Hint-based shadow algorithm #

SQL HINT shadow algorithm #

Type:SQL_HINT

/* SHARDINGSPHERE_HINT: SHADOW=true */

Configuration sample #

  • Java API
public final class ShadowConfiguration {
    // ...
    
    private AlgorithmConfiguration createShadowAlgorithmConfiguration() {
        Properties userIdInsertProps = new Properties();
        userIdInsertProps.setProperty("operation", "insert");
        userIdInsertProps.setProperty("column", "user_id");
        userIdInsertProps.setProperty("value", "1");
        return new AlgorithmConfiguration("VALUE_MATCH", userIdInsertProps);
    }
    
    // ...
}
  • YAML:
shadowAlgorithms:
  user-id-insert-algorithm:
    type: VALUE_MATCH
    props:
      column: user_id
      operation: insert
      value: 1