Skip to content

Commit bb05901

Browse files
bbeaudreaultndimiduk
authored andcommitted
HBASE-26240 Set InterfaceAudience to Private for BalanceRequest$Builder (#3663)
Signed-off-by: Duo Zhang <[email protected]> Signed-off-by: Nick Dimiduk <[email protected]>
1 parent 21d9741 commit bb05901

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hbase-client/src/main/java/org/apache/hadoop/hbase/client/BalanceRequest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ public final class BalanceRequest {
3030
/**
3131
* Builder for constructing a {@link BalanceRequest}
3232
*/
33-
@InterfaceAudience.Public
33+
@InterfaceAudience.Private
3434
public final static class Builder {
3535
private boolean dryRun = false;
3636
private boolean ignoreRegionsInTransition = false;
3737

3838
private Builder() {}
3939

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

5757
/**
58-
* Creates a BalancerRequest to cause the balancer to run even if there
59-
* are regions in transition.
58+
* Updates BalancerRequest to run the balancer even if there are regions
59+
* in transition.
6060
*
6161
* WARNING: Advanced usage only, this could cause more issues than it fixes.
6262
*/

0 commit comments

Comments
 (0)