-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-29933: update_all_config hangs indefinitely when balancing even… #7932
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
base: branch-2
Are you sure you want to change the base?
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -785,7 +785,7 @@ protected abstract List<RegionPlan> balanceTable(TableName tableName, | |
| } | ||
|
|
||
| @Override | ||
| public synchronized void onConfigurationChange(Configuration conf) { | ||
| public void onConfigurationChange(Configuration conf) { | ||
|
||
| loadConf(conf); | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,6 +37,8 @@ | |
| import java.util.List; | ||
| import java.util.Map; | ||
| import java.util.Optional; | ||
| import java.util.concurrent.atomic.AtomicBoolean; | ||
| import java.util.concurrent.atomic.AtomicReference; | ||
| import org.apache.hadoop.conf.Configuration; | ||
| import org.apache.hadoop.hbase.ClusterMetrics; | ||
| import org.apache.hadoop.hbase.RegionMetrics; | ||
|
|
@@ -64,13 +66,39 @@ public class CacheAwareLoadBalancer extends StochasticLoadBalancer { | |
| private Long sleepTime; | ||
| private Configuration configuration; | ||
|
|
||
| /** | ||
| * Tracks whether a balance run is currently in progress. | ||
| */ | ||
| private final AtomicBoolean isBalancing = new AtomicBoolean(false); | ||
|
|
||
| /** | ||
| * Holds a configuration update that arrived while a balance run was in progress. | ||
| */ | ||
| private AtomicReference<Configuration> pendingConfiguration = new AtomicReference<>(); | ||
|
|
||
| public enum GeneratorFunctionType { | ||
| LOAD, | ||
| CACHE_RATIO | ||
| } | ||
|
|
||
| @Override | ||
| public synchronized void loadConf(Configuration configuration) { | ||
| public void loadConf(Configuration configuration) { | ||
| // Refer to HBASE-29933 | ||
| synchronized (this) { | ||
| // If balance is running, store configuration in pendingConfiguration and return immediately. | ||
| // Defer the config update. | ||
| if (isBalancing.get()) { | ||
| LOG.debug( | ||
| "Balance is in progress, defer applying configuration change until balance completed."); | ||
| pendingConfiguration.set(configuration); | ||
| } else { | ||
| // Apply configuration change immediately. | ||
| updateConfiguration(configuration); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| public void updateConfiguration(Configuration configuration) { | ||
| this.configuration = configuration; | ||
| this.costFunctions = new ArrayList<>(); | ||
| super.loadConf(configuration); | ||
|
|
@@ -79,6 +107,38 @@ public synchronized void loadConf(Configuration configuration) { | |
| sleepTime = configuration.getLong(MOVE_THROTTLING, MOVE_THROTTLING_DEFAULT.toMillis()); | ||
| } | ||
|
|
||
| /** | ||
| * Sets {@link #isBalancing} to {@code true} before a balance run starts. | ||
| */ | ||
| @Override | ||
| public void onBalancingStart() { | ||
| LOG.debug("Setting isBalancing to true as balance is starting"); | ||
| isBalancing.set(true); | ||
| } | ||
|
|
||
| /** | ||
| * Sets {@link #isBalancing} to {@code false} after a balance run completes and applies any | ||
| * pending configuration that arrived during balancing. | ||
| */ | ||
| @Override | ||
| public void onBalancingComplete() { | ||
| LOG.debug("Setting isBalancing to false as balance is completed"); | ||
| isBalancing.set(false); | ||
| applyPendingConfiguration(); | ||
| } | ||
|
|
||
| /** | ||
| * If a pending configuration was stored during a balance run, apply it and clear the pending | ||
| * reference. | ||
| */ | ||
| public void applyPendingConfiguration() { | ||
| Configuration toApply = pendingConfiguration.getAndSet(null); | ||
| if (toApply != null) { | ||
| LOG.info("Applying pending configuration after balance completed."); | ||
| updateConfiguration(toApply); | ||
| } | ||
| } | ||
|
|
||
| @Override | ||
| protected Map<Class<? extends CandidateGenerator>, CandidateGenerator> | ||
| createCandidateGenerators(Configuration conf) { | ||
|
|
@@ -193,10 +253,13 @@ public void throttle(RegionPlan plan) { | |
| + "Throttling move for {}ms.", | ||
| plan.getRegionInfo().getEncodedName(), plan.getDestination(), sleepTime); | ||
| } | ||
| try { | ||
| Thread.sleep(sleepTime); | ||
| } catch (InterruptedException e) { | ||
| throw new RuntimeException(e); | ||
| synchronized (this) { | ||
| try { | ||
| // Release the monitor while waiting to avoid blocking other threads. | ||
| wait(sleepTime); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Comment line here to explain its giving up monitor. |
||
| } catch (InterruptedException e) { | ||
| throw new RuntimeException(e); | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can see space character here in diff? Did you fix formatting here and next few lines?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this is because of introduction of try block. I ran "mvn spotless:apply" to fix formatting.