This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a change to branch HBASE-24950
in repository https://gitbox.apache.org/repos/asf/hbase.git.
discard 82f3aa4 HBASE-25013 Avoid reset the backup master root cache every
time when syncing (#2392)
discard ca62baf HBASE-24929 Introduce a special CellComparator for master
local region (#2378)
discard 75949d5 HBASE-24607 Implement CatalogJanitor for 'root table' (#2377)
discard 44050c3 HBASE-24606 Implement meta merge (#2311)
discard cf66204 HBASE-24391 Implement meta split (#2010)
discard 84f3692 HBASE-24459 Move the locateMeta logic from
AsyncMetaRegionTableLocator to ConnectionRegistry (#2095)
discard b0a6e61 HBASE-24390 Remove RegionInfoBuilder.FIRST_META_REGIONINFO
(#1877)
discard 12bff02 HBASE-24389 Introduce new master rpc methods to locate meta
region through root region (#1774)
discard 4de5872 HBASE-24388 Store the locations of meta regions in master
local store (#1746)
add 9e27de6 HBASE-24734 RegionInfo#containsRange should support check
meta table (#3496)
add 3c70bc1 HBASE-26107 MOB compaction with missing files catches
incorrect exception (#3511)
add 0f787af HBASE-26110: Add download links for 1.7.1 (#3514)
add be2c97e HBASE-25521 Change ChoreService and ScheduledChore to
IA.Private (#3505)
add d15f3cb HBASE-26108 add option to disable scanMetrics in
TableSnapshotInputFormat (#3516)
add 51ed95c HBASE-26071: Document HBASE-26021 and upgrade considerations
for 1.7.0/1.7.1 (#3469)
add 0294c73 HBASE-26093 Replication is stuck due to zero length wal file
in oldWALs directory (#3504)
add 8ae3942 HBASE-26091 Remove FirstKeyValueMatchingQualifiersFilter
(#3497)
add f0324a7 HBASE-26119 Polish TestAsyncNonMetaRegionLocator (#3526)
add c74366c HBASE-26049 Remove DfsBuilderUtility (#3444)
add 4a3c7d7 HBASE-21946 Use ByteBuffer pread instead of byte[] pread in
HFileBlock when applicable (#3434)
add 02d263e HBASE-26118 The HStore.commitFile and
HStore.moveFileIntoPlace almost have the same logic (#3525)
new 13b44d0 HBASE-24388 Store the locations of meta regions in master
local store (#1746)
new 48be0e0 HBASE-24389 Introduce new master rpc methods to locate meta
region through root region (#1774)
new 9959293 HBASE-24390 Remove RegionInfoBuilder.FIRST_META_REGIONINFO
(#1877)
new cf0fcca HBASE-24459 Move the locateMeta logic from
AsyncMetaRegionTableLocator to ConnectionRegistry (#2095)
new 981d9d0 HBASE-24391 Implement meta split (#2010)
new d96c610 HBASE-24606 Implement meta merge (#2311)
new 75ac29c HBASE-24607 Implement CatalogJanitor for 'root table' (#2377)
new 2cc9cb9 HBASE-24929 Introduce a special CellComparator for master
local region (#2378)
new b6c54e5 HBASE-25013 Avoid reset the backup master root cache every
time when syncing (#2392)
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 (82f3aa4)
\
N -- N -- N refs/heads/HBASE-24950 (b6c54e5)
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:
.../hadoop/hbase/client/MutableRegionInfo.java | 14 ++-
.../FirstKeyValueMatchingQualifiersFilter.java | 106 +---------------
.../hadoop/hbase/client/TestRegionInfoBuilder.java | 34 ++++++
.../org/apache/hadoop/hbase/CellComparator.java | 12 ++
.../java/org/apache/hadoop/hbase/ChoreService.java | 2 +-
.../apache/hadoop/hbase/MetaCellComparator.java | 5 +
.../org/apache/hadoop/hbase/ScheduledChore.java | 2 +-
.../apache/hadoop/hbase/io/util/BlockIOUtils.java | 82 ++++++++++++-
.../apache/hadoop/hbase/util/CommonFSUtils.java | 74 ------------
.../mapreduce/TableSnapshotInputFormatImpl.java | 13 +-
hbase-procedure/pom.xml | 4 +
.../procedure2/store/wal/WALProcedureStore.java | 10 +-
.../src/main/protobuf/client/Filter.proto | 2 +
.../hadoop/hbase/mob/DefaultMobStoreCompactor.java | 8 +-
.../apache/hadoop/hbase/regionserver/HStore.java | 134 ++++++++++-----------
.../hbase/regionserver/wal/ProtobufLogWriter.java | 17 ++-
.../regionserver/ReplicationSourceWALReader.java | 15 ++-
.../replication/regionserver/WALEntryStream.java | 35 +-----
.../hadoop/hbase/wal/AbstractFSWALProvider.java | 38 +++++-
.../hbase/TestPartialResultsFromClientSide.java | 10 +-
.../client/TestAsyncNonMetaRegionLocator.java | 81 +++++++------
.../hbase/filter/TestFilterSerialization.java | 20 ---
.../TestFirstKeyValueMatchingQualifiersFilter.java | 81 -------------
.../hadoop/hbase/io/hfile/TestBlockIOUtils.java | 94 +++++++++++++++
.../hadoop/hbase/mob/FaultyMobStoreCompactor.java | 10 +-
.../hadoop/hbase/regionserver/TestCompaction.java | 37 ++----
.../hadoop/hbase/regionserver/TestRegionInfo.java | 34 ++++++
.../regionserver/TestBasicWALEntryStream.java | 46 +++++++
src/main/asciidoc/_chapters/upgrading.adoc | 22 ++++
src/site/xdoc/downloads.xml | 14 +--
30 files changed, 575 insertions(+), 481 deletions(-)
delete mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFirstKeyValueMatchingQualifiersFilter.java