This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-26067-branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git.
discard e40878a HBASE-26286: Add support for specifying store file tracker
when restoring or cloning snapshot
discard b3c61ef HBASE-26454 CreateTableProcedure still relies on temp dir and
renames… (#3845)
discard c60adbc HBASE-26271 Cleanup the broken store files under data
directory (#3786)
discard 1d410ec HBASE-26263 [Rolling Upgrading] Persist the StoreFileTracker
configurations to TableDescriptor for existing tables (#3700)
discard 67f4aa3 HBASE-26328 Clone snapshot doesn't load reference files into
FILE SFT impl (#3749)
discard 1dd3f9d HBASE-26386 Refactor StoreFileTracker implementations to
expose the set method (#3774)
discard 0e46ed2 HBASE-26326 CreateTableProcedure fails when
FileBasedStoreFileTracker… (#3721)
discard 2269b19 HBASE-26280 Use store file tracker when snapshoting (#3685)
discard 21c0387 HBASE-26264 Add more checks to prevent misconfiguration on
store file tracker (#3681)
discard fed12b1 HBASE-26248 Should find a suitable way to let users specify
the store file tracker implementation (#3665)
discard ac647a8 HBASE-26246 Persist the StoreFileTracker configurations to
TableDescriptor when creating table (#3666)
discard ef4521f HBASE-26224 Introduce a MigrationStoreFileTracker to support
migrating from different store file tracker implementations (#3656)
discard 879a7a0 HBASE-26079 Use StoreFileTracker when splitting and merging
(#3617)
discard e623d29 HBASE-25988 Store the store file list by a file (#3578)
discard 8de84b4 HBASE-26064 Introduce a StoreFileTracker to abstract the
store file tracking logic
add a478d02 HBASE-26629 Add expiration for long time vacant scanners in
Thrift2 (#3984)
add 49e64ff HBASE-26641 Split TestMasterFailoverWithProcedures (#3994)
new d2a2170 HBASE-26064 Introduce a StoreFileTracker to abstract the
store file tracking logic
new 104e625 HBASE-25988 Store the store file list by a file (#3578)
new c50a901 HBASE-26079 Use StoreFileTracker when splitting and merging
(#3617)
new adb00b5 HBASE-26224 Introduce a MigrationStoreFileTracker to support
migrating from different store file tracker implementations (#3656)
new 8e9d93f HBASE-26246 Persist the StoreFileTracker configurations to
TableDescriptor when creating table (#3666)
new 474ca90 HBASE-26248 Should find a suitable way to let users specify
the store file tracker implementation (#3665)
new d28a229 HBASE-26264 Add more checks to prevent misconfiguration on
store file tracker (#3681)
new aec8f79 HBASE-26280 Use store file tracker when snapshoting (#3685)
new 5e243b4 HBASE-26326 CreateTableProcedure fails when
FileBasedStoreFileTracker… (#3721)
new d1ca261 HBASE-26386 Refactor StoreFileTracker implementations to
expose the set method (#3774)
new 30acffe HBASE-26328 Clone snapshot doesn't load reference files into
FILE SFT impl (#3749)
new 0f76e80 HBASE-26263 [Rolling Upgrading] Persist the StoreFileTracker
configurations to TableDescriptor for existing tables (#3700)
new 6c899ea HBASE-26271 Cleanup the broken store files under data
directory (#3786)
new ff45cbf HBASE-26454 CreateTableProcedure still relies on temp dir and
renames… (#3845)
new e50d61b HBASE-26286: Add support for specifying store file tracker
when restoring or cloning snapshot
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 (e40878a)
\
N -- N -- N refs/heads/HBASE-26067-branch-2 (e50d61b)
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 15 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:
.../MasterFailoverWithProceduresTestBase.java | 87 ++++++
.../TestCreateTableWithMasterFailover.java | 74 +++++
.../TestDeleteTableWithMasterFailover.java | 76 +++++
.../TestDisableTableWithMasterFailover.java | 74 +++++
.../TestEnableTableWithMasterFailover.java | 74 +++++
.../TestMasterFailoverWithProcedures.java | 335 ---------------------
.../TestTruncateTableWithMasterFailover.java | 102 +++++++
.../hbase/thrift2/ThriftHBaseServiceHandler.java | 36 ++-
.../thrift2/TestThriftHBaseServiceHandler.java | 27 ++
9 files changed, 535 insertions(+), 350 deletions(-)
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/MasterFailoverWithProceduresTestBase.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestCreateTableWithMasterFailover.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestDeleteTableWithMasterFailover.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestDisableTableWithMasterFailover.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestEnableTableWithMasterFailover.java
delete mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestMasterFailoverWithProcedures.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/master/procedure/TestTruncateTableWithMasterFailover.java