This is an automated email from the ASF dual-hosted git repository. yong pushed a commit to branch branch-4.15 in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
commit c4676f9b00cb9fcacaf6fa438a4caae496109c59 Author: Hang Chen <[email protected]> AuthorDate: Thu Oct 27 09:33:59 2022 +0800 Add example for multiple server list in metadataServiceUri configuration (#3580) When users configure multiple servers for `metadataServiceUri`, they will be confused about how to separate the server list. Add an example to explain how to configure multiple servers for `metadataServiceUri` (cherry picked from commit e50cf06ce208989c3c295a518f3e0a2da8e5abc9) --- conf/bk_server.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf/bk_server.conf b/conf/bk_server.conf index f04d831538..68c4ee2e29 100755 --- a/conf/bk_server.conf +++ b/conf/bk_server.conf @@ -768,6 +768,8 @@ gcEntryLogMetadataCacheEnabled=false ############################################################################# # metadata service uri that bookkeeper is used for loading corresponding metadata driver and resolving its metadata service location +# The server list can be semicolon separated values, for example: +# metadataServiceUri=zk+hierarchical://zk1:2181;zk2:2181;zk3:2181/ledgers metadataServiceUri=zk+hierarchical://localhost:2181/ledgers # @Deprecated - `ledgerManagerFactoryClass` is deprecated in favor of using `metadataServiceUri`
