We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello.
I need to remove some group of PoolCluster by pattern. For example:
poolCluster.add('shard1', config); poolCluster.add('shard2', config); poolCluster.add('shard3', config);
Sometime later I need to remove one of group:
poolCluster.remove('shard2');
The text was updated successfully, but these errors were encountered:
Currently there is no way to remove nodes from the pool cluster, but PRs are welcome!
Sorry, something went wrong.
Ok. Do you think it necessary to make emit('remove', node.id) if the removal is a manual? Or maybe add emit('removeManually', node.id) in this case?
emit('remove', node.id)
emit('removeManually', node.id)
Please pay attention on PR #1007 for current issue.
7bacf3b
Add poolCluster.remove to remove pools from the cluster
adaa340
closes mysqljs#1006 closes mysqljs#1007
No branches or pull requests
Hello.
I need to remove some group of PoolCluster by pattern. For example:
Sometime later I need to remove one of group:
The text was updated successfully, but these errors were encountered: