You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Oh, this is a big change, hard to review so let me ask some questions.
I think balancer is somehow tied with some components of HMaster, such as ServerManager and AssignmentManager? How do you break the tie?
Thanks.
I do not break the tie, so the module hbase-balancer depends on hbase-server ,not on the contrary. LoadBalancer is a interface,so we can separate all it's implement and ut into hbase-balancer module, just leave LoadBalancerFactory in module hbase-server for balancer class instantiation.
Some key points of actual separation:
1.Leave RSGroupBasedLoadBalancer in hbase-server module, for we must use rsgroup now
2.Newly add a class MiniHBaseLoadBalancer and set as default in MiniHBaseCluster, so the minicluster can start up without dependency of hbase-balancer
3.Leave BaseLoadBalancer in hbase-server module, for assignment correctness to pass some ut, these ut not related balance but assignment
4.we do not change default loadbalancer StochasticLoadBalancer, and in production environment,we must depend on module hbase-balancer
In general, we need hbase-balancer when running the hbase-server, so make hbase-balancer depend on hbase-server is a bit strange and easy to confuse others...
In general, we need hbase-balancer when running the hbase-server, so make hbase-balancer depend on hbase-server is a bit strange and easy to confuse others...
How about rename module hbase-server to hbase-core/hbase-server-core , and add a new hbase-server module that depends on hbase-core , hbase-balancer... etc. Code in the new hbase-server module only contain ut that need start up minicluster, it seems no change to users. And we can separate the hbase-core gradually to each independent module
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
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.
No description provided.