This is an automated email from the ASF dual-hosted git repository.
ndimiduk pushed a change to branch 29787-gh-actions-static
in repository https://gitbox.apache.org/repos/asf/hbase.git
discard c43c61b80dc BUILD_URL_ARTIFACTS only for actions
discard 15866473ca2 Revert "GH won't let us deep-link to artifact results"
discard 67b9a739d45 GH won't let us deep-link to artifact results
discard a186c9131e1 maybe fix output path for uploads
discard 3fda2215c3e introduce some breakages
discard ea74e3af64d use the same fetch script as jenkinsfile
discard 2cedeea7db3 do as the jenkinsfile does
discard b46d9bee466 use yetus:0.15.0
discard ff367b04b3c more yaml formatting
discard 84ff0e346f4 fix yaml lints
discard 69bb2b574f5 needs write access
discard fa89335c57a missing env maybe
discard 75e6c972f8c go "under the hood" to enable personality features
discard 64d5eeedf0f drop unsupported paramteres
discard 0f034f88607 add missing statuses:write
discard d9a977c8b66 only on PRs for now
discard faa7b88386a maybe address yamllint issues
discard 8e66126afeb pin to a feature branch for dev purposes
discard a1efc7d5f59 WIP Experiment with GH Actions for static checks
add 1c2025cf073 HBASE-29794 Only exclude tests when its failure rate above
a threshold (#7574)
add 1a3e371ca0a HBASE-29795 RegionServer abort because of NPE when closing
compacted store file (#7576)
add bdaacecba30 WIP Experiment with GH Actions for static checks
add 1816df3609c pin to a feature branch for dev purposes
add 58b8e5759e4 maybe address yamllint issues
add b2fb0a09303 only on PRs for now
add 4dc79e0963e add missing statuses:write
add 9a7aed8476b drop unsupported paramteres
add bef466d85d6 go "under the hood" to enable personality features
add 4bc0b93a0ed missing env maybe
add 55d0de37d22 needs write access
add 26896114763 fix yaml lints
add fa0789cfdf2 more yaml formatting
add 03048357578 use yetus:0.15.0
add 8d1d6618873 do as the jenkinsfile does
add 7feebf86891 use the same fetch script as jenkinsfile
add 83aeb87219e introduce some breakages
add 724f4e2c66b maybe fix output path for uploads
add 01a7a079638 GH won't let us deep-link to artifact results
add 8c2a4842250 Revert "GH won't let us deep-link to artifact results"
add 884cd89862b BUILD_URL_ARTIFACTS only for actions
add 9f4a4a45ae8 try out nightlies secrets
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 (c43c61b80dc)
\
N -- N -- N refs/heads/29787-gh-actions-static (9f4a4a45ae8)
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:
.github/workflows/yetus-general-check.yml | 13 +
.gitignore | 2 +-
dev-support/flaky-tests/report-flakies.py | 45 +--
.../apache/hadoop/hbase/util/FastStringPool.java | 158 ++++++++++
.../hadoop/hbase/util/TestFastStringPool.java | 113 +++++++
.../hadoop/hbase/io/hfile/BlockCacheKey.java | 34 ++-
.../hadoop/hbase/io/hfile/bucket/BucketCache.java | 15 -
.../hbase/io/hfile/bucket/FilePathStringPool.java | 176 -----------
.../hbase/io/hfile/bucket/TestBucketCache.java | 32 --
.../io/hfile/bucket/TestFilePathStringPool.java | 326 ---------------------
10 files changed, 332 insertions(+), 582 deletions(-)
create mode 100644
hbase-common/src/main/java/org/apache/hadoop/hbase/util/FastStringPool.java
create mode 100644
hbase-common/src/test/java/org/apache/hadoop/hbase/util/TestFastStringPool.java
delete mode 100644
hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/bucket/FilePathStringPool.java
delete mode 100644
hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/bucket/TestFilePathStringPool.java