This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/hbase-website/vite-7.2.6
in repository https://gitbox.apache.org/repos/asf/hbase.git
omit 0cbafa1621f Bump vite from 7.1.10 to 7.2.6 in /hbase-website
add db25deefcfa HBASE-29727 Introduce a String pool for repeating
filename, region and cf string fields in BlockCacheKey (#7477)
add 6d342cc2e0c HBASE-29695: Fix typo in RestoreRequest's
"Builder.withOvewrite()" method (#7508)
add 7e96a90d23a [ADDENDUM] HBASE-29689 Ignore JSON files in RAT check,
exclude node_modules from spotless check (#7507)
add f9e35368269 Bump glob from 10.4.5 to 10.5.0 in /hbase-website (#7498)
add 6a53c6e0844 HBASE-29745 Bump express from 4.21.2 to 4.22.1 in
/hbase-website (#7499)
add d42f2810841 Bump vite from 7.1.10 to 7.2.6 in /hbase-website
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 (0cbafa1621f)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/hbase-website/vite-7.2.6 (d42f2810841)
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.
No new revisions were added by this update.
Summary of changes:
dev-support/spotbugs-exclude.xml | 12 +
.../apache/hadoop/hbase/backup/RestoreRequest.java | 2 +-
.../hadoop/hbase/backup/util/BackupUtils.java | 2 +-
.../TestBackupRestoreOnEmptyEnvironment.java | 2 +-
.../backup/TestBackupRestoreWithModifications.java | 2 +-
.../hadoop/hbase/backup/TestRemoteRestore.java | 2 +-
.../hadoop/hbase/IntegrationTestBackupRestore.java | 2 +-
.../main/protobuf/server/io/BucketCacheEntry.proto | 3 +
.../apache/hadoop/hbase/io/hfile/BlockCache.java | 8 -
.../hadoop/hbase/io/hfile/BlockCacheKey.java | 127 ++++++--
.../hadoop/hbase/io/hfile/CombinedBlockCache.java | 5 -
.../hadoop/hbase/io/hfile/HFilePreadReader.java | 2 +-
.../hadoop/hbase/io/hfile/HFileReaderImpl.java | 2 +-
.../hadoop/hbase/io/hfile/bucket/BucketCache.java | 88 +++---
.../hbase/io/hfile/bucket/BucketProtoUtils.java | 5 +-
.../hbase/io/hfile/bucket/FilePathStringPool.java | 176 +++++++++++
.../hbase/regionserver/DataTieringManager.java | 85 +++---
.../hadoop/hbase/io/hfile/CacheTestUtils.java | 32 +-
.../hbase/io/hfile/bucket/TestBucketCache.java | 45 ++-
.../io/hfile/bucket/TestFilePathStringPool.java | 326 +++++++++++++++++++++
.../bucket/TestRecoveryPersistentBucketCache.java | 44 +--
.../io/hfile/bucket/TestVerifyBucketCacheFile.java | 57 ++--
.../TestCustomCellDataTieringManager.java | 36 +--
.../hbase/regionserver/TestDataTieringManager.java | 102 +------
hbase-website/package-lock.json | 53 ++--
pom.xml | 4 +
26 files changed, 890 insertions(+), 334 deletions(-)
create mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/bucket/FilePathStringPool.java
create mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/bucket/TestFilePathStringPool.java