Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ public final class BalanceRequest {
/**
* Builder for constructing a {@link BalanceRequest}
*/
@InterfaceAudience.Public
@InterfaceAudience.Private
public final static class Builder {
private boolean dryRun = false;
private boolean ignoreRegionsInTransition = false;

private Builder() {}

/**
* Creates a BalancerRequest which runs the balancer in dryRun mode.
* Updates BalancerRequest to run the balancer in dryRun mode.
* In this mode, the balancer will try to find a plan but WILL NOT
* execute any region moves or call any coprocessors.
*
Expand All @@ -55,8 +55,8 @@ public Builder setDryRun(boolean dryRun) {
}

/**
* Creates a BalancerRequest to cause the balancer to run even if there
* are regions in transition.
* Updates BalancerRequest to run the balancer even if there are regions
* in transition.
*
* WARNING: Advanced usage only, this could cause more issues than it fixes.
*/
Expand Down