[docs] Complete ZooKeeper client configuration documentation - #4337
Open
hanliu0830 wants to merge 1 commit into
Open
hanliu0830 wants to merge 1 commit into
hanliu0830 wants to merge 1 commit into
Conversation
Document the ZooKeeper client buffer size and its client/server configuration boundary, and correct the max-inflight-requests type.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Fixes #4336
The ZooKeeper configuration reference omits an existing client buffer setting and lists the wrong type for the maximum in-flight request count.
Brief change log
zookeeper.client.max-buffer-size, including its integer type, default of104857600bytes (100 MiB), and mapping to the client'sjute.maxbuffer. Clarify that it overrides the client configuration file value and that the server limit is configured separately.zookeeper.client.max-inflight-requestsfromStringtoInteger.Tests
git diff --checkpassed.zookeeper.*keys inConfigOptionsare documented and that both changed rows match their types and defaults.npm run build -- --no-minifypassed with Node.js 24 after preparing the versioned docs and blog. The build reported blog-tag and broken-anchor warnings on unmodified pages../mvnw -N spotless:check validatepassed with Java 11 (Spotless, zero Checkstyle violations, and zero unapproved licenses).API and Format
No API or storage format changes.
Documentation
Updates the existing ZooKeeper configuration table. No new feature is introduced.