Interface ZooKeeperServerEmbedded
- All Superinterfaces:
AutoCloseable
This API allows you to start a ZooKeeper server node from Java code
The server will run inside the same process.
Typical usecases are:
- Running automated tests
- Launch ZooKeeper server with a Java based service management system
Please take into consideration that in production usually it is better to not run the client together with the server in order to avoid race conditions, especially around how ephemeral nodes work.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
Builder for ZooKeeperServerEmbedded. -
Method Summary
-
Method Details
-
builder
-
start
Start the server.- Throws:
Exception
-
start
Start the server- Parameters:
startupTimeout
- time to wait in millis for the server to start- Throws:
Exception
-
getConnectionString
Get a connection string useful for the client.- Returns:
- the connection string
- Throws:
Exception
- in case the connection string is not available
-
getSecureConnectionString
- Throws:
Exception
-
close
void close()Shutdown gracefully the server and wait for resources to be released.- Specified by:
close
in interfaceAutoCloseable
-