-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-28204 : Canary can take lot more time If any region (except the first region) starts with delete markers #5522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
2ee2352 to
75580f4
Compare
|
🎊 +1 overall
This message was automatically generated. |
|
This PR cleanly applies to |
|
🎊 +1 overall
This message was automatically generated. |
| StopWatch stopWatch = new StopWatch(); | ||
| startKey = region.getStartKey(); | ||
| // Can't do a get on empty start row so do a Scan of first element if any instead. | ||
| if (startKey.length > 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there any benefit to retaining the Get path? I legitimately don't know.
If there is, it seems like it could be possible to make a change where we use Get only if (startKey.length > 0 && !rawScanEnabled)
But if Get is unnecessary, then your proposal is good, because it reduces the complexity anyway.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I couldn't see any benefit for Get path.
|
💔 -1 overall
This message was automatically generated. |
|
@sunhelly Can you merge the PR for |
|
It shows Test failure but they are not related. One of them is marked as Flaky |
…th delete markers (apache#5522)" This reverts commit ce9eabe.
…e markers (apache#5522) Co-authored-by: Mihir Monani <mihir6692@apache.org> (cherry picked from commit ce9eabe) (cherry picked from commit 9171206) Change-Id: Iaf78f481a7547485b65d1be90f57a8b1982c954a
…th delete markers (apache#5522)" This reverts commit 9171206. (cherry picked from commit 4fa9a63) Change-Id: Id8996842bf31d7bfbbebe741b3f6857857ee7d39
No description provided.