Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update concepts-broker-load-balancing-concepts.md #885

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 11 additions & 13 deletions docs/concepts-broker-load-balancing-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,17 @@ The unloaded bundles are assigned to less loaded brokers, and the clients connec

When unloading happens, the client experiences a small latency blip while the topic is reassigned.

</TabItem>
<TabItem value="Manual bundle unloading">

#### Step 1: find target bundles

Based on the broker resource usage (for example, CPU, network, and memory usage), you can choose hot bundles to unload.

#### Step 2: unload hot bundles

Unload hot bundles to available brokers. Target bundles' ownerships will be transferred, and topic connections will be closed.

For how to unload bundles manually, please refer to [`unload`](pathname:///reference/#/@pulsar:version_reference@/pulsar-admin/namespaces?id=unload) admin command.

Examples:
Expand All @@ -474,19 +485,6 @@ Unload all bundles in a namespace

`pulsar-admin namespaces unload my-tenant/my-namespace`

</TabItem>
<TabItem value="Manual bundle unloading">

#### Step 1: find target bundles

Based on the broker resource usage (for example, CPU, network, and memory usage), you can choose hot bundles to unload.

#### Step 2: unload hot bundles

Unload hot bundles to available brokers. Target bundles' ownerships will be transferred, and topic connections will be closed.

For how to unload bundles manually, see TBD (the docs is WIP, stay tuned!).

</TabItem>

</Tabs>
Expand Down
Loading