This is an automated email from the ASF dual-hosted git repository.
arshad pushed a commit to branch branch-3.6
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.6 by this push:
new da2f001 ZOOKEEPER-4231: Add documentation about snapshot compression.
da2f001 is described below
commit da2f001db612568cde170ecaad98da8cd2da68d7
Author: Abhilash Kishore <[email protected]>
AuthorDate: Sun Mar 28 10:42:13 2021 +0530
ZOOKEEPER-4231: Add documentation about snapshot compression.
This PR adds documentation about ZooKeeper's snapshot compression feature
(see ZOOKEEPER-3179) to `branch-3.6`.
Author: Abhilash Kishore <[email protected]>
Reviewers: Enrico Olivelli <[email protected]>, Mohammad Arshad
<[email protected]>
Closes #1641 from abhilash1in/ZOOKEEPER-4231-branch-3.6
---
zookeeper-docs/src/main/resources/markdown/zookeeperAdmin.md | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/zookeeper-docs/src/main/resources/markdown/zookeeperAdmin.md
b/zookeeper-docs/src/main/resources/markdown/zookeeperAdmin.md
index c1c85e3..d9e6ea5 100644
--- a/zookeeper-docs/src/main/resources/markdown/zookeeperAdmin.md
+++ b/zookeeper-docs/src/main/resources/markdown/zookeeperAdmin.md
@@ -1025,6 +1025,16 @@ property, when available, is noted below.
By default, this feature is enabled, set "false" to disable it.
+* *snapshot.compression.method* :
+ (Java system property: **zookeeper.snapshot.compression.method**)
+ **New in 3.6.0:**
+ This property controls whether or not ZooKeeper should compress snapshots
+ before storing them on disk (see
[ZOOKEEPER-3179](https://issues.apache.org/jira/browse/ZOOKEEPER-3179)).
+ Possible values are:
+ - "": Disabled (no snapshot compression). This is the default behavior.
+ - "gz": See [gzip compression](https://en.wikipedia.org/wiki/Gzip).
+ - "snappy": See [Snappy
compression](https://en.wikipedia.org/wiki/Snappy_(compression)).
+
* *snapshot.trust.empty* :
(Java system property: **zookeeper.snapshot.trust.empty**)
**New in 3.5.6:**
@@ -1038,6 +1048,7 @@ property, when available, is noted below.
and restart ZooKeeper process so ZooKeeper can continue normal data
consistency check during recovery process.
Default value is false.
+
* *audit.enable* :
(Java system property: **zookeeper.audit.enable**)
**New in 3.6.0:**