This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-11288.splittable-meta
in repository https://gitbox.apache.org/repos/asf/hbase.git.
omit 52ba06a HBASE-24390 Remove RegionInfoBuilder.FIRST_META_REGIONINFO
(#1877)
omit 31481b7 HBASE-24389 Introduce new master rpc methods to locate meta
region through root region (#1774)
omit 08a0c06 HBASE-24388 Store the locations of meta regions in master
local store (#1746)
add 998ee77 HBASE-24872 refactor valueOf PoolType (#2250)
add ecc0c67 HBASE-24627 Normalize one table at a time
add 6789aca HBASE-24874 Fix hbase-shell access to
ModifiableTableDescriptor methods (#2268)
add 98e3584 HBASE-24806 Small Updates to Functionality of Shell IRB
Workspace (#2232)
add 7a4d7c8 HBASE-24886 Remove deprecated methods in RowMutations (#2267)
add 1231ac0 HBASE-24799 Do not call make_binary_release for
hbase-thirdparty in release scripts (#2177)
new a1a3e14 HBASE-24388 Store the locations of meta regions in master
local store (#1746)
new c5a6c95 HBASE-24389 Introduce new master rpc methods to locate meta
region through root region (#1774)
new 84dfce7 HBASE-24390 Remove RegionInfoBuilder.FIRST_META_REGIONINFO
(#1877)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (52ba06a)
\
N -- N -- N refs/heads/HBASE-11288.splittable-meta (84dfce7)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
bin/hirb.rb | 8 +-
dev-support/create-release/release-build.sh | 5 +-
.../java/org/apache/hadoop/hbase/client/Admin.java | 18 ++-
.../hadoop/hbase/client/AdminOverAsyncAdmin.java | 4 +-
.../org/apache/hadoop/hbase/client/AsyncAdmin.java | 14 +-
.../hadoop/hbase/client/AsyncHBaseAdmin.java | 6 +-
.../hbase/client/NormalizeTableFilterParams.java | 107 ++++++++++++++
.../hadoop/hbase/client/RawAsyncHBaseAdmin.java | 18 ++-
.../apache/hadoop/hbase/client/RowMutations.java | 24 ----
.../hbase/client/TableDescriptorBuilder.java | 4 +
.../apache/hadoop/hbase/ipc/AbstractRpcClient.java | 2 +-
.../hadoop/hbase/shaded/protobuf/ProtobufUtil.java | 7 +
.../hbase/shaded/protobuf/RequestConverter.java | 17 ++-
.../java/org/apache/hadoop/hbase/util/PoolMap.java | 22 +--
.../src/main/protobuf/server/master/Master.proto | 3 +
.../org/apache/hadoop/hbase/master/HMaster.java | 33 +++--
.../hadoop/hbase/master/MasterRpcServices.java | 10 +-
.../TestSimpleRegionNormalizerOnCluster.java | 160 ++++++++++++++++-----
.../hbase/rsgroup/VerifyingRSGroupAdmin.java | 8 +-
hbase-shell/src/main/ruby/hbase/admin.rb | 116 +++++++++++++--
hbase-shell/src/main/ruby/hbase_constants.rb | 8 ++
hbase-shell/src/main/ruby/shell.rb | 36 +++--
hbase-shell/src/main/ruby/shell/commands/alter.rb | 18 +--
.../src/main/ruby/shell/commands/normalize.rb | 20 ++-
hbase-shell/src/main/ruby/shell/hbase_loader.rb | 56 ++++++++
hbase-shell/src/test/ruby/hbase/admin_test.rb | 32 ++++-
hbase-shell/src/test/ruby/shell/shell_test.rb | 24 +++-
hbase-shell/src/test/ruby/tests_runner.rb | 11 +-
.../hadoop/hbase/thrift2/client/ThriftAdmin.java | 6 +-
29 files changed, 631 insertions(+), 166 deletions(-)
create mode 100644
hbase-client/src/main/java/org/apache/hadoop/hbase/client/NormalizeTableFilterParams.java
create mode 100644 hbase-shell/src/main/ruby/shell/hbase_loader.rb