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 8660b52  HBASE-22820 Do not need to persist default rs group now (#482)
    omit 1ae9298  HBASE-22809 Allow creating table in group when rs group 
contains no live servers (#464)
    omit c15a365  HBASE-22695 Store the rsgroup of a table in table 
configuration (#426)
    omit bb964a5  HBASE-22676 Move all the code in hbase-rsgroup to 
hbase-server and remove hbase-rsgroup module (#399)
    omit aa8f79a  HBASE-22662 Move RSGroupInfoManager to hbase-server (#368)
    omit 96d1e4a  HBASE-22664 Move protobuf stuff in hbase-rsgroup to 
hbase-protocol-shaded (#362)
     add 46abaef  HBASE-22875 TestShell and TestAdminShell2 are broken
     add 0b3db50  HBASE-22857 Fix the failed ut TestHRegion and 
TestHRegionWithInMemoryFlush (#495)
     add 8e488ce  HBASE-22882 
TestFlushSnapshotFromClient#testConcurrentSnapshottingAttempts is flakey (was 
written flakey)
     add 6738280   HBASE-22882 
TestFlushSnapshotFromClient#testConcurrentSnapshottingAttempts is flakey (was 
written flakey)  Addendum; just remove the test altogether
     add a59f7d4  Add 2.0.6 to download page in place of 2.0.5. Add notice that 
2.0.6 is last of the 2.0.x releases under the notices column.
     add ab28f9d  Revert "HBASE-22823 Mark Canary as Public/Evolving"
     add 66ad42c  HBASE-22879 user_permission command failed to show global 
permission (#511)
     add 7af5b30  HBASE-22013 SpaceQuotas - getNumRegions() returning wrong 
number of regions due to region replicas
     add 1b50404  HBASE-22844 Fixed Checkstyle violations in client snapshot 
exceptions
     add 61a3a9f  HBASE-22601 Misconfigured addition of peers leads to cluster 
shutdown. (#499)
     add b8857ec  HBASE-22863 Cleanup transitive Jackson1 vulnerable 
dependencies(forward-port HBASE-22728) (#505)
     add 84ee378  HBASE-22810 Initialize an separate ThreadPoolExecutor for 
taking/restoring snapshot (addendum - use the old config key) (#517)
     add b329bf0  Revert "HBASE-22013 SpaceQuotas - getNumRegions() returning 
wrong number of regions due to region replicas"
     add 4268774  HBASE-22867 The ForkJoinPool in CleanerChore will spawn 
thousands of threads in our cluster with thousands table (#513)
     new 5d0f541  HBASE-22664 Move protobuf stuff in hbase-rsgroup to 
hbase-protocol-shaded (#362)
     new de969ab  HBASE-22662 Move RSGroupInfoManager to hbase-server (#368)
     new af0ab59  HBASE-22676 Move all the code in hbase-rsgroup to 
hbase-server and remove hbase-rsgroup module (#399)
     new f02d2f0  HBASE-22695 Store the rsgroup of a table in table 
configuration (#426)
     new ce67fec  HBASE-22809 Allow creating table in group when rs group 
contains no live servers (#464)
     new 4c570ed  HBASE-22820 Do not need to persist default rs group now (#482)

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   (8660b52)
            \
             N -- N -- N   refs/heads/HBASE-22514 (4c570ed)

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 6 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:
 .../snapshot/ClientSnapshotDescriptionUtils.java   |  39 ++--
 .../hbase/snapshot/CorruptedSnapshotException.java |  21 +-
 .../hbase/snapshot/ExportSnapshotException.java    |   9 +-
 .../hbase/snapshot/HBaseSnapshotException.java     |  55 +++---
 .../hbase/snapshot/RestoreSnapshotException.java   |  36 +++-
 .../hbase/snapshot/SnapshotCreationException.java  |  35 ++--
 .../snapshot/SnapshotDoesNotExistException.java    |  18 +-
 .../hbase/snapshot/SnapshotExistsException.java    |  24 ++-
 .../snapshot/TablePartiallyOpenException.java      |  26 +--
 .../hbase/snapshot/UnknownSnapshotException.java   |  16 +-
 .../java/org/apache/hadoop/hbase/HConstants.java   |   5 -
 hbase-mapreduce/pom.xml                            |  10 +
 hbase-server/pom.xml                               |   6 +
 .../org/apache/hadoop/hbase/master/HMaster.java    |   5 +-
 .../hadoop/hbase/master/cleaner/CleanerChore.java  | 216 +++++++++------------
 .../hadoop/hbase/master/cleaner/DirScanPool.java   |  27 ++-
 .../snapshot/EnabledTableSnapshotHandler.java      |   3 +-
 .../hbase/master/snapshot/SnapshotManager.java     |   4 +-
 .../hbase/procedure/ProcedureCoordinator.java      |   5 +-
 .../regionserver/ReplicationSource.java            |   4 +
 .../java/org/apache/hadoop/hbase/tool/Canary.java  |   2 +-
 .../hadoop/hbase/regionserver/TestHRegion.java     |   7 -
 .../TestConcurrentFlushSnapshotFromClient.java}    |  35 +---
 .../snapshot/TestFlushSnapshotFromClient.java      | 112 +----------
 .../hbase-shaded-client-byo-hadoop/pom.xml         |  64 ++++++
 hbase-shaded/hbase-shaded-mapreduce/pom.xml        |  64 ++++++
 .../hbase-shaded-testing-util-tester/pom.xml       |   6 +
 hbase-shaded/hbase-shaded-testing-util/pom.xml     |  40 ++++
 hbase-shell/src/main/ruby/hbase/security.rb        |   2 +-
 .../src/main/ruby/shell/commands/list_snapshots.rb |   2 +-
 .../ruby/shell/commands/list_table_snapshots.rb    |   2 +-
 .../org/apache/hadoop/hbase/client/TestShell.java  |   2 +-
 .../src/test/ruby/hbase/security_admin_test.rb     |  20 ++
 pom.xml                                            |  32 +++
 src/site/xdoc/downloads.xml                        |  16 +-
 35 files changed, 554 insertions(+), 416 deletions(-)
 copy 
hbase-server/src/test/java/org/apache/hadoop/hbase/{client/TestMobSnapshotFromClient.java
 => snapshot/TestConcurrentFlushSnapshotFromClient.java} (63%)

Reply via email to