-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-28328 Add an option to count different types of Delete Markers in RowCounter #6496
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
Merged
virajjasani
merged 15 commits into
apache:branch-2
from
shubham-roy:branch-2-HBASE-28328
Dec 2, 2024
Merged
HBASE-28328 Add an option to count different types of Delete Markers in RowCounter #6496
virajjasani
merged 15 commits into
apache:branch-2
from
shubham-roy:branch-2-HBASE-28328
Dec 2, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(cherry picked from commit 8b9787c)
(cherry picked from commit fa10771)
(cherry picked from commit 972d3b7)
(cherry picked from commit db72e7c)
(cherry picked from commit f2e9886)
(cherry picked from commit f3db2d5)
(cherry picked from commit 1240594)
… flag is set. (cherry picked from commit 5754e53)
(cherry picked from commit 0e69048)
(cherry picked from commit 7f1d9ba)
(cherry picked from commit 1904ed6)
(cherry picked from commit 478ead4)
(cherry picked from commit 3b103ef)
(cherry picked from commit 9476622)
|
🎊 +1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
|
🎊 +1 overall
This message was automatically generated. |
virajjasani
pushed a commit
that referenced
this pull request
Dec 2, 2024
…in RowCounter (#6496) (#6435) Signed-off-by: Nihal Jain <[email protected]>
virajjasani
pushed a commit
that referenced
this pull request
Dec 2, 2024
…in RowCounter (#6496) (#6435) Signed-off-by: Nihal Jain <[email protected]>
mokai87
pushed a commit
to mokai87/hbase
that referenced
this pull request
Aug 7, 2025
…in RowCounter (apache#6496) (apache#6435) Signed-off-by: Nihal Jain <[email protected]>
sanjeet006py
pushed a commit
to sanjeet006py/hbase
that referenced
this pull request
Sep 26, 2025
…in RowCounter (apache#6496) (apache#6435) Signed-off-by: Nihal Jain <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A flag is introduced, which, when enabled, allows RowCounter to count the various types of Delete Markers - DELETE_COLUMN, DELETE_FAMILY, DELETE_FAMILY_VERSION. It will also calculate the number of rows having a delete marker.
To enable this the scan object was modified -> if flag is set, raw scan is performed without FirstKeyOnlyFilter.
Note: Commits are cherry-picked from #6435