From 21d6c5407869785bc50b1e692acb1e4292a4256a Mon Sep 17 00:00:00 2001 From: Elisey Zanko Date: Sun, 10 May 2020 14:09:06 +0500 Subject: [PATCH] Fix Markdown formatting --- zookeeper/content.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/zookeeper/content.md b/zookeeper/content.md index 5d36735f3..67c86a889 100644 --- a/zookeeper/content.md +++ b/zookeeper/content.md @@ -108,11 +108,7 @@ Defaults to `srvr`. Zookeeper's [`4lw.commands.whitelist`](https://zookeeper.apa ## Advanced configuration -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: +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: ```console $ docker run --name some-zookeeper --restart always -e JVMFLAGS="-Dzookeeper.serverCnxnFactory=org.apache.zookeeper.server.NettyServerCnxnFactory" %%IMAGE%%