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.
discard 2b2bcbe HBASE-22676 Move all the code in hbase-rsgroup to
hbase-server and remove hbase-rsgroup module (#399)
omit bf2055a HBASE-22662 Move RSGroupInfoManager to hbase-server (#368)
omit 124fed6 HBASE-22664 Move protobuf stuff in hbase-rsgroup to
hbase-protocol-shaded (#362)
add aa9679d HBASE-22718 Removal of org.apache.hadoop.hbase.util.Counter
(#396)
add 7f68591 HBASE-22690 Deprecate / Remove OfflineMetaRepair in hbase-2+
add 9615c64 HBASE-22648 Snapshot TTL (#371)
new 107d3b4 HBASE-22664 Move protobuf stuff in hbase-rsgroup to
hbase-protocol-shaded (#362)
new 567b8cc HBASE-22662 Move RSGroupInfoManager to hbase-server (#368)
new 7a0b822 HBASE-22676 Move all the code in hbase-rsgroup to
hbase-server and remove hbase-rsgroup module (#399)
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 (2b2bcbe)
\
N -- N -- N refs/heads/HBASE-22514 (7a0b822)
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:
.../java/org/apache/hadoop/hbase/client/Admin.java | 47 +++++
.../hadoop/hbase/client/SnapshotDescription.java | 72 +++++--
.../hadoop/hbase/shaded/protobuf/ProtobufUtil.java | 16 +-
.../snapshot/ClientSnapshotDescriptionUtils.java | 13 +-
.../java/org/apache/hadoop/hbase/HConstants.java | 9 +
.../java/org/apache/hadoop/hbase/util/Counter.java | 194 -------------------
hbase-common/src/main/resources/hbase-default.xml | 19 ++
.../org/apache/hadoop/hbase/util/TestCounter.java | 108 -----------
.../src/main/protobuf/Snapshot.proto | 1 +
hbase-protocol/src/main/protobuf/HBase.proto | 1 +
.../org/apache/hadoop/hbase/master/HMaster.java | 13 ++
.../hbase/master/cleaner/SnapshotCleanerChore.java | 110 +++++++++++
.../hbase/snapshot/SnapshotDescriptionUtils.java | 20 ++
.../apache/hadoop/hbase/snapshot/SnapshotInfo.java | 11 +-
.../org/apache/hadoop/hbase/util/HBaseFsck.java | 212 ---------------------
.../hadoop/hbase/util/hbck/OfflineMetaRepair.java | 132 -------------
.../resources/hbase-webapps/master/snapshot.jsp | 10 +
.../hbase-webapps/master/snapshotsStats.jsp | 8 +
.../hbase/client/TestSnapshotFromClient.java | 2 +-
.../client/TestSnapshotTemporaryDirectory.java | 5 +-
.../master/cleaner/TestSnapshotCleanerChore.java | 199 +++++++++++++++++++
hbase-shell/src/main/ruby/hbase/admin.rb | 8 +-
src/main/asciidoc/_chapters/hbase-default.adoc | 30 +++
src/main/asciidoc/_chapters/ops_mgt.adoc | 41 ++++
24 files changed, 603 insertions(+), 678 deletions(-)
delete mode 100644
hbase-common/src/main/java/org/apache/hadoop/hbase/util/Counter.java
delete mode 100644
hbase-common/src/test/java/org/apache/hadoop/hbase/util/TestCounter.java
create mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/SnapshotCleanerChore.java
delete mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/util/hbck/OfflineMetaRepair.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/cleaner/TestSnapshotCleanerChore.java