You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by jx...@apache.org on 2021/11/18 03:47:43 UTC

[helix] branch master updated: Add additional note for release

This is an automated email from the ASF dual-hosted git repository.

jxue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new 42c04e7  Add additional note for release
42c04e7 is described below

commit 42c04e7f9783169d805e3a459a53f96088aeb9dc
Author: Junkai Xue <jx...@linkedin.com>
AuthorDate: Wed Nov 17 13:55:26 2021 -0800

    Add additional note for release
---
 website/0.9.9/src/site/apt/releasenotes/release-0.9.9.apt | 10 ++++++++++
 website/pom.xml                                           |  1 +
 2 files changed, 11 insertions(+)

diff --git a/website/0.9.9/src/site/apt/releasenotes/release-0.9.9.apt b/website/0.9.9/src/site/apt/releasenotes/release-0.9.9.apt
index f262dbc..5dd14cc 100644
--- a/website/0.9.9/src/site/apt/releasenotes/release-0.9.9.apt
+++ b/website/0.9.9/src/site/apt/releasenotes/release-0.9.9.apt
@@ -35,6 +35,14 @@ Release Notes for Apache Helix 0.9.9
 
 * Key Note for Helix Release
 
+  In this release, there are three type of configuration for ZK write limitations:
+
+    * jute.maxbuffer: This used to be consistent with jute maxbuffer set for ZkClient. So if your data size is over this value, write is not allowed.
+
+    * zk.serializer.znrecord.write.size.limit.bytes: If the ZNode size is larger than the value you set (even after compression), the data will NOT be written to ZK at ZNRecorderSerializer level. Default is 1MB
+
+    * zk.serializer.znrecord.auto-compress.threshold.bytes: If the ZNode size is larger than the value you set, compression will be applied for this ZNode.
+
 []
 
 * Detailed Changes
@@ -43,6 +51,8 @@ Release Notes for Apache Helix 0.9.9
 
     * Add separate ZK serializer configuration to active ZNRecord compression when size exceeds a threshold. #1901
 
+    * Validate data write size limit in ZkClient #1072
+
 []
 
 Cheers,
diff --git a/website/pom.xml b/website/pom.xml
index 20a6a8f..310d268 100644
--- a/website/pom.xml
+++ b/website/pom.xml
@@ -42,6 +42,7 @@
     <module>0.9.4</module>
     <module>0.9.7</module>
     <module>0.9.8</module>
+    <module>0.9.9</module>
     <module>1.0.0</module>
     <module>1.0.1</module>
     <module>1.0.2</module>