Fix Markdown formatting

This commit is contained in:
Elisey Zanko 2020-05-10 14:09:06 +05:00
parent 283e44936f
commit 21d6c54078
No known key found for this signature in database
GPG Key ID: 08BBC369B144F2DF
1 changed files with 1 additions and 5 deletions

View File

@ -108,11 +108,7 @@ Defaults to `srvr`. Zookeeper's [`4lw.commands.whitelist`](https://zookeeper.apa
## Advanced configuration ## Advanced configuration
Not every Zookeeper configuration setting is exposed via the environment variables listed above. Not every Zookeeper configuration setting is exposed via the environment variables listed above. These variables are only meant to cover minimum configuration keywords and some often changing options. If [mounting your custom config file](#configuration) as a volume doesn't work for you, consider using `JVMFLAGS` environment variable. Many of the Zookeeper advanced configuration options can be set there using Java system properties in the form of `-Dproperty=value`. For example, you can use Netty instead of NIO (default option) as a server communication framework:
These variables are only meant to cover minimum configuration keywords and some often changing options.
If [mounting your custom config file](#configuration) as a volume doesn't work for you, consider using `JVMFLAGS` environment variable.
Many of the Zookeeper advanced configuration options can be set there using Java system properties in the form of `-Dproperty=value`.
For example, you can use Netty instead of NIO (default option) as a server communication framework:
```console ```console
$ docker run --name some-zookeeper --restart always -e JVMFLAGS="-Dzookeeper.serverCnxnFactory=org.apache.zookeeper.server.NettyServerCnxnFactory" %%IMAGE%% $ docker run --name some-zookeeper --restart always -e JVMFLAGS="-Dzookeeper.serverCnxnFactory=org.apache.zookeeper.server.NettyServerCnxnFactory" %%IMAGE%%