terrymanu opened a new issue #8126:
URL: https://github.com/apache/shardingsphere/issues/8126
The current reg center's persist structure is:
```yaml
namespace
├──authentication
├──props
├──schemas
├ ├──${schema_1}
├ ├ ├──datasource
├ ├ ├──rule
├ ├ ├──table
├ ├──${schema_2}
├ ├ ├──datasource
├ ├ ├──rule
├ ├ ├──table
```
Because current metadata has already refactored, we need to adjust persist
structure too, the new persist structure should be:
```yaml
namespace
├──authentication
├──props
├──metadata # change
├ ├──${schema_1}
├ ├ ├──datasource
├ ├ ├──rule
├ ├ ├──schema # change
├ ├──${schema_2}
├ ├ ├──datasource
├ ├ ├──rule
├ ├ ├──schema # change
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]