Hi All,

The pluggable kernel is almost finished[1] expected YAML API changes.

We need to decide how the YAML API adjustment now. I prefer use flat API
setting with YAML.

The original YAML configuration:

```
dataSources:
  ds_0: !!xxx
    xxx
  ds_1: !!xxx
    xxx

shardingRule:
  xxx
  masterSlaveRules:
    xxx
  encryptRule:
    xxx

props:
  xxx.xxx: xxx
```

After changes:


```
dataSources:
  ds_0: !!xxx
    xxx
  ds_1: !!xxx
    xxx

shardingRule:
  xxx

masterSlaveRules:
  xxx

encryptRule:
    xxx

props:
  xxx.xxx: xxx
```

All rules are in the same level and can constitute by every type, for
example: masterSlaveRule and encryptRule.

Looking forward to your suggestions, thank you.


 [1] https://github.com/apache/shardingsphere/issues/3691

------------------

Liang Zhang (John)
Apache ShardingSphere & Dubbo

Reply via email to