-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
Passing user defined Node id through cmd #57
Comments
Does other vertx's cluster implementation provide such way? As i know the interface of vertx doesn't provide such method. vertx.deployVerticle("com.mycompany.MyOrderProcessorVerticle", res -> {
if (res.succeeded()) {
//get deploymentID
System.out.println("Deployment id is: " + res.result());
} else {
System.out.println("Deployment failed!");
}
}); |
Hazelcast shows membership info, so we don't need to track it through node id.... unfortunately zookeeper don't show such info.. only possible way is to track it on zookeeper server. |
my idea is #60 |
I have fixes for above requirement, which we tested and deployed in our production setup...I would like to push those changes.... can someone help me on this... |
Copy pasted from issue 60 |
Hi,
We are deploying multiple vertx vertical using zookeeper cluster manager.... on zookeeper servers we need to track each vertical....but zookeeper assign some random UUID to each vertical. So mapping each vertical on zookeeper become difficult. It will be better if we can pass node id through cmd
The text was updated successfully, but these errors were encountered: