This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a change to branch HBASE-22514
in repository https://gitbox.apache.org/repos/asf/hbase.git.


    omit ce72633  HBASE-22987 Calculate the region servers in default group in 
foreground (#599)
    omit 7e77ad4  HBASE-22729 Start RSGroupInfoManager as default (#555)
    omit 3cb0d3e  HBASE-22819 Automatically migrate the rs group config for 
table after HBASE-22695 (#498)
    omit cb41db0  HBASE-22820 Do not need to persist default rs group now (#482)
    omit 475a1bf  HBASE-22809 Allow creating table in group when rs group 
contains no live servers (#464)
    omit 0bf6e6e  HBASE-22695 Store the rsgroup of a table in table 
configuration (#426)
    omit 6652b4e  HBASE-22676 Move all the code in hbase-rsgroup to 
hbase-server and remove hbase-rsgroup module (#399)
    omit 95c7a06  HBASE-22662 Move RSGroupInfoManager to hbase-server (#368)
    omit f5bdb8a  HBASE-22664 Move protobuf stuff in hbase-rsgroup to 
hbase-protocol-shaded (#362)
     add a581498  HBASE-23014 Should not show split parent regions in hbck 
report UI (#609)
     add c0e5c15  HBASE-22993 HBCK report UI showed -1 if hbck chore not 
running (#610)
     add 3330e5c  HBASE-22796 [HBCK2] Add fix of overlaps to fixMeta hbck 
Service
     add c0908d4  HBASE-22929 - MemStoreLAB ChunkCreator may memory leak(ram) 
(#614)
     add 1dcc8ee  HBASE-22760 : Pause/Resume/Query Snapshot Auto Cleanup 
Activity (#617)
     add a048630  Downloads page archive link should be https
     add 9658033  Revert "Downloads page archive link should be https"
     add 3583ef7  HBASE-23022 Downloads page archive link should be https (#622)
     add a09c0c8  HBASE-22899 logging improvements for snapshot operations 
w/large manifests (#547)
     add f31301d  HBASE-22939 SpaceQuotas - Bulkload from different hdfs failed 
when space quotas are turned on. (#553)
     add 1cb4f68  HBASE-23023 upgrade shellcheck used in dockerfile (#624)
     new d6cca69  HBASE-22664 Move protobuf stuff in hbase-rsgroup to 
hbase-protocol-shaded (#362)
     new 648913e  HBASE-22662 Move RSGroupInfoManager to hbase-server (#368)
     new a3b90fa  HBASE-22676 Move all the code in hbase-rsgroup to 
hbase-server and remove hbase-rsgroup module (#399)
     new da0768a  HBASE-22695 Store the rsgroup of a table in table 
configuration (#426)
     new e3b402f  HBASE-22809 Allow creating table in group when rs group 
contains no live servers (#464)
     new 0782608  HBASE-22820 Do not need to persist default rs group now (#482)
     new 5d652cc  HBASE-22819 Automatically migrate the rs group config for 
table after HBASE-22695 (#498)
     new eaef4af  HBASE-22729 Start RSGroupInfoManager as default (#555)
     new e80c702  HBASE-22987 Calculate the region servers in default group in 
foreground (#599)

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   (ce72633)
            \
             N -- N -- N   refs/heads/HBASE-22514 (e80c702)

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 9 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:
 dev-support/docker/Dockerfile                      |  12 ++-
 .../java/org/apache/hadoop/hbase/client/Admin.java |  22 ++++
 .../hadoop/hbase/client/AdminOverAsyncAdmin.java   |  12 +++
 .../org/apache/hadoop/hbase/client/AsyncAdmin.java |  23 +++++
 .../hadoop/hbase/client/AsyncHBaseAdmin.java       |  12 +++
 .../hadoop/hbase/client/RawAsyncHBaseAdmin.java    |  28 ++++++
 .../org/apache/hadoop/hbase/client/RegionInfo.java |   4 +-
 .../hbase/shaded/protobuf/RequestConverter.java    |  30 ++++++
 .../apache/hadoop/hbase/zookeeper/ZNodePaths.java  |  38 +++++--
 .../java/org/apache/hadoop/hbase/HConstants.java   |   2 -
 .../src/main/protobuf/Master.proto                 |  28 ++++++
 .../{LoadBalancer.proto => SnapshotCleanup.proto}  |   9 +-
 .../apache/hadoop/hbase/master/CatalogJanitor.java |   6 +-
 .../org/apache/hadoop/hbase/master/HMaster.java    |  49 +++++++--
 .../org/apache/hadoop/hbase/master/HbckChore.java  |  12 ++-
 .../hadoop/hbase/master/MasterRpcServices.java     |  57 +++++++++++
 .../hadoop/hbase/regionserver/MemStoreLABImpl.java |   5 +
 .../hadoop/hbase/regionserver/RSRpcServices.java   |  12 ++-
 .../hadoop/hbase/regionserver/StoreScanner.java    |   2 +
 .../hbase/snapshot/RestoreSnapshotHelper.java      |  21 ++--
 .../hadoop/hbase/snapshot/SnapshotManifest.java    |   9 +-
 .../main/resources/hbase-webapps/master/hbck.jsp   |  15 ++-
 .../org/apache/hadoop/hbase/client/TestAdmin2.java |  27 +++++
 .../hbase/master/assignment/TestHbckChore.java     |  20 ++++
 .../master/cleaner/TestSnapshotCleanerChore.java   |   1 -
 .../master/cleaner/TestSnapshotFromMaster.java     | 103 +++++++++++++++++++
 .../hadoop/hbase/regionserver/TestHRegionInfo.java |   5 -
 .../regionserver/TestStoreScannerClosure.java      |  57 +++++++++++
 ...estReplicationSyncUpToolWithBulkLoadedData.java |  53 ++++++++--
 .../hbase/snapshot/SnapshotTestingUtils.java       |  23 +++++
 hbase-shell/src/main/ruby/hbase/admin.rb           |  16 +++
 hbase-shell/src/main/ruby/shell.rb                 |   2 +
 ...ncer_enabled.rb => snapshot_cleanup_enabled.rb} |  14 +--
 ...hrottle_quota.rb => snapshot_cleanup_switch.rb} |  19 ++--
 hbase-shell/src/test/ruby/hbase/admin_test.rb      |  14 +++
 .../hadoop/hbase/thrift2/client/ThriftAdmin.java   |  10 ++
 .../hbase/zookeeper/SnapshotCleanupTracker.java    | 112 +++++++++++++++++++++
 src/main/asciidoc/_chapters/ops_mgt.adoc           |  38 ++++++-
 src/site/xdoc/downloads.xml                        |   2 +-
 39 files changed, 847 insertions(+), 77 deletions(-)
 copy hbase-protocol-shaded/src/main/protobuf/{LoadBalancer.proto => 
SnapshotCleanup.proto} (85%)
 copy hbase-shell/src/main/ruby/shell/commands/{balancer_enabled.rb => 
snapshot_cleanup_enabled.rb} (80%)
 copy 
hbase-shell/src/main/ruby/shell/commands/{disable_exceed_throttle_quota.rb => 
snapshot_cleanup_switch.rb} (65%)
 create mode 100644 
hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/SnapshotCleanupTracker.java

Reply via email to