-
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
Open
hingu-8103
wants to merge
3
commits into
apache:branch-2
Choose a base branch
from
hingu-8103:HBASE-29933-branch-2
base: branch-2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+288
−63
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| 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,36 @@ 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) { | ||
| // 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 +104,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 +250,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); | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
Oops, something went wrong.
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.
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.