[
https://issues.apache.org/jira/browse/CURATOR-587?focusedWorklogId=554450&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-554450
]
ASF GitHub Bot logged work on CURATOR-587:
------------------------------------------
Author: ASF GitHub Bot
Created on: 18/Feb/21 20:24
Start Date: 18/Feb/21 20:24
Worklog Time Spent: 10m
Work Description: eolivelli opened a new pull request #379:
URL: https://github.com/apache/curator/pull/379
This is a preview patch for when we will have ZK 3.7.0 and the official
ZooKeeperServerEmbedded API.
At that time we won't need to hack the internals of ZK
----------------------------------------------------------------
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]
Issue Time Tracking
-------------------
Worklog Id: (was: 554450)
Remaining Estimate: 0h
Time Spent: 10m
> Use ZooKeeper 3.7+ ZooKeeperServerEmbedded in order to start TestingServer
> --------------------------------------------------------------------------
>
> Key: CURATOR-587
> URL: https://issues.apache.org/jira/browse/CURATOR-587
> Project: Apache Curator
> Issue Type: Improvement
> Components: Tests
> Reporter: Enrico Olivelli
> Assignee: Enrico Olivelli
> Priority: Major
> Fix For: 5.2.0
>
> Time Spent: 10m
> Remaining Estimate: 0h
>
> with 3.7.0 ZooKeeper provides an official API to run a ZooKeeper node.
> We should use that API in order to launch ZooKeeper, this way we won't have
> any compatibility issues.
> In fact now (5.1) we are starting the ZooKeeper node using internal ZK
> classes, that are subject to change in the future.
> The ZooKeeperServerEmbedded API is designed to be forward compatible.
> It is a very skinny API, and it basically reproduces the usage for the users,
> that is to provide a configuration file and a base directory.
> It also provides a way to prevent ZooKeeper to exit the JVM and to shutdown
> gracefully the server.
> {code:java}
>
> @TempDir
> Path tmpDir;
>
> @Test
> public void hello() throws Exception {
> Properties configuration = new Properties();
> configuration.setProperty("clientPort", "2181");
> try (ZooKeeperServerEmbedded embedded = ZooKeeperServerEmbedded
> .builder()
> .exitHandler(ExitHandler.LOG_ONLY)
> .baseDir(tmpDir)
> .configuration(configuration)
> .build();) {
> embedded.start();
> CountDownLatch l = new CountDownLatch(1);
> try (ZooKeeper zk = new ZooKeeper("localhost:2181", 40000, new
> Watcher() {
> @Override
> public void process(WatchedEvent event) {
> System.out.println("event "+event)
> ;
> l.countDown();
> }
> }
> )) {
> l.await();
> System.out.println("WHOAMI"+ zk.whoAmI());
> zk.create("/foo", "foo".getBytes(),
> ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
> }
> }
>
> } {code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)