Skip to content

Commit

Permalink
ZOOKEEPER-1871: Add an option to zkCli to wailt for connection before…
Browse files Browse the repository at this point in the history
… executing commands
  • Loading branch information
MuktiKrishnan committed Mar 9, 2021
1 parent eafb93a commit c475d46
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
import java.util.List;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.stream.Stream;
Expand Down Expand Up @@ -68,6 +70,7 @@ public class ZooKeeperMain {

protected ZooKeeper zk;
protected String host = "";
private CountDownLatch connectLatch = null;

public boolean getPrintWatches() {
return printWatches;
Expand Down Expand Up @@ -106,6 +109,13 @@ public void process(WatchedEvent event) {
ZooKeeperMain.printMessage("WATCHER::");
ZooKeeperMain.printMessage(event.toString());
}
if (connectLatch != null) {
// connection success
if (event.getType() == Event.EventType.None
&& event.getState() == Event.KeeperState.SyncConnected) {
connectLatch.countDown();
}
}
}

}
Expand Down Expand Up @@ -168,6 +178,8 @@ public boolean parseOptions(String[] args) {
options.put("readonly", "true");
} else if (opt.equals("-client-configuration")) {
options.put("client-configuration", it.next());
} else if (opt.equals("-waitforconnection")) {
options.put("waitforconnection", "true");
}
} catch (NoSuchElementException e) {
System.err.println("Error: no argument found for option " + opt);
Expand Down Expand Up @@ -249,6 +261,17 @@ protected void connectToZK(String newHost) throws InterruptedException, IOExcept
System.setProperty(ZKClientConfig.SECURE_CLIENT, "true");
System.out.println("Secure connection is enabled");
}
if (cl.getOption("waitforconnection") != null) {
connectLatch = new CountDownLatch(1);
}
int timeout = Integer.parseInt(cl.getOption("timeout"));
zk = new ZooKeeperAdmin(host, timeout, new MyWatcher(), readOnly);
if (connectLatch != null) {
if (!connectLatch.await(timeout, TimeUnit.MILLISECONDS)) {
zk.close();
throw new IOException(KeeperException.create(KeeperException.Code.CONNECTIONLOSS));
}
}

ZKClientConfig clientConfig = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -774,4 +774,25 @@ private void assertClientAuthInfo(List<String> expected, String actual) {
});
}

@Test
public void testWaitForConnection() throws Exception {
// get a wrong port number
int invalidPort = PortAssignment.unique();
long timeout = 3000L; // millisecond
String[] args1 = {"-server", "localhost:" + invalidPort, "-timeout",
Long.toString(timeout), "-waitforconnection", "ls", "/"};
long startTime = System.currentTimeMillis();
// try to connect to a non-existing server so as to wait until wait_timeout
try {
ZooKeeperMain zkMain = new ZooKeeperMain(args1);
fail("IOException was expected");
} catch (IOException e) {
// do nothing
}
long endTime = System.currentTimeMillis();
assertTrue(endTime - startTime >= timeout,
"ZooKeeeperMain does not wait until the specified timeout");

}

}

0 comments on commit c475d46

Please sign in to comment.