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

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


    omit f2da2f40b8f HBASE-27214 Implement the new replication hfile/log 
cleaner (#4722)
    omit de523ae02c2 HBASE-27213 Add support for claim queue operation (#4708)
    omit 5ad9d8250e8 HBASE-27212 Implement a new table based replication queue 
storage and make the minimum replication system work (#4672)
     add d21be92fd0c HBASE-27314 Make index block be customized and configured 
(#4718)
     add 3d394823398 HBASE-27314 Addendum fix spotless errors
     new efab58fc2ca HBASE-27212 Implement a new table based replication queue 
storage and make the minimum replication system work (#4672)
     new 95599e05d67 HBASE-27213 Add support for claim queue operation (#4708)
     new 49a9e820517 HBASE-27214 Implement the new replication hfile/log 
cleaner (#4722)

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   (f2da2f40b8f)
            \
             N -- N -- N   refs/heads/HBASE-27109/table_based_rqs (49a9e820517)

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:
 .../hbase/client/ColumnFamilyDescriptor.java       |   4 +
 .../client/ColumnFamilyDescriptorBuilder.java      |  32 ++
 .../client/TestColumnFamilyDescriptorBuilder.java  |   5 +-
 ...aBlockEncoding.java => IndexBlockEncoding.java} |  79 +---
 .../apache/hadoop/hbase/io/hfile/HFileContext.java |  14 +-
 .../hadoop/hbase/io/hfile/HFileContextBuilder.java |  10 +-
 ...lidHFileException.java => BlockIndexChunk.java} |  48 ++-
 .../hadoop/hbase/io/hfile/HFileBlockIndex.java     | 181 +++++---
 .../hbase/io/hfile/HFileIndexBlockEncoder.java     |  74 ++++
 .../hbase/io/hfile/HFileIndexBlockEncoderImpl.java |  85 ++++
 .../apache/hadoop/hbase/io/hfile/HFileInfo.java    |  18 +-
 .../hadoop/hbase/io/hfile/HFileWriterImpl.java     |  13 +-
 .../hbase/io/hfile/NoOpIndexBlockEncoder.java      | 477 +++++++++++++++++++++
 .../storefiletracker/StoreFileTrackerBase.java     |   3 +-
 .../hadoop/hbase/io/hfile/TestHFileBlockIndex.java |  11 +-
 .../hadoop/hbase/io/hfile/TestHFileWriterV3.java   |   3 +-
 .../hfile/TestHFileWriterV3WithDataEncoders.java   |   3 +-
 17 files changed, 895 insertions(+), 165 deletions(-)
 copy 
hbase-common/src/main/java/org/apache/hadoop/hbase/io/encoding/{DataBlockEncoding.java
 => IndexBlockEncoding.java} (53%)
 copy 
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/{InvalidHFileException.java
 => BlockIndexChunk.java} (61%)
 create mode 100644 
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileIndexBlockEncoder.java
 create mode 100644 
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileIndexBlockEncoderImpl.java
 create mode 100644 
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/NoOpIndexBlockEncoder.java

Reply via email to