You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by wa...@apache.org on 2022/10/07 02:28:56 UTC

[pulsar] branch dave2wave-patch-2 created (now f32cc567aa6)

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

wave pushed a change to branch dave2wave-patch-2
in repository https://gitbox.apache.org/repos/asf/pulsar.git


      at f32cc567aa6 Example broke Ensemble>=WriteQuorum>=AckQuorum

This branch includes the following new commits:

     new f32cc567aa6 Example broke Ensemble>=WriteQuorum>=AckQuorum

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[pulsar] 01/01: Example broke Ensemble>=WriteQuorum>=AckQuorum

Posted by wa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch dave2wave-patch-2
in repository https://gitbox.apache.org/repos/asf/pulsar.git

commit f32cc567aa6839d62e689bba83f42a5a1c3523ea
Author: Dave Fisher <da...@comcast.net>
AuthorDate: Thu Oct 6 21:28:47 2022 -0500

    Example broke Ensemble>=WriteQuorum>=AckQuorum
---
 site2/docs/administration-zk-bk.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/site2/docs/administration-zk-bk.md b/site2/docs/administration-zk-bk.md
index e410325bd4d..56555ccb673 100644
--- a/site2/docs/administration-zk-bk.md
+++ b/site2/docs/administration-zk-bk.md
@@ -294,8 +294,9 @@ pulsar-admin namespaces set-persistence my-tenant/my-ns \
 #### Java
 
 ```java
-int bkEnsemble = 2;
-int bkQuorum = 3;
+// The following must be true: bkEnsemble >= bkQuorum >= bkAckQuorum
+int bkEnsemble = 3;
+int bkQuorum = 2;
 int bkAckQuorum = 2;
 double markDeleteRate = 0.7;
 PersistencePolicies policies =