empiredan opened a new pull request, #2000: URL: https://github.com/apache/incubator-pegasus/pull/2000
The purpose of this PR is to optimize configurations for duplications. Firstly, many Pegasus clusters are configured with the same `cluster_name` (namely `[replication]cluster_name`). However, once we decide to duplicate tables between them, their `cluster_name` have to be changed to be distinguished from each other -- this might lead to side effects. Secondly, consider a scenario where many small clusters are duplicated to a big cluster. This means we have to add many cluster ids to the `.ini` file of the big cluster, and the big cluster might be restarted very frequently. This PR is to solve both problems by adding options: ```diff [replication] + dup_cluster_name = + dup_ignore_other_cluster_ids = false ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
