Add updates for merge changes in Accumulo 4.0#452
Merged
dlmarion merged 4 commits intoapache:mainfrom Apr 28, 2025
Merged
Conversation
_docs-2/administration/merging.md
Outdated
|
|
||
| * `manager.tablet.mergeability.interval` -Time to wait between scanning tables to identify ranges of tablets that can be auto-merged (default is `24h`) | ||
| * `table.mergeability.threshold` - A range of tablets are eligible for automatic merging until the combined size of RFiles reaches this percentage of the split threshold. (default is `.25`) | ||
| * `table.merge.file.max` - The maximum number of files that a merge operation will process (default is `10000`) |
Contributor
There was a problem hiding this comment.
This property applies to both api initiated merges and automatically initiated merges, the other two props only apply to automatic merges. Not sure if this is worth working in somehow, it was just something I noticed.
| * `table.mergeability.threshold` - A range of tablets are eligible for automatic merging until the combined size of RFiles reaches this percentage of the split threshold. (default is `.25`) | ||
| * `table.merge.file.max` - The maximum number of files that a merge operation will process (default is `10000`) | ||
|
|
||
| ## Tablet Mergeability |
Contributor
There was a problem hiding this comment.
May want to work in to this section what will happen on upgrade for existing tablets.
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
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.
Adds some initial information for users for the updated merge changes in Accumulo 4.0. I didn't want to go to detailed into the internals but the changes describe how the new merge is different (faster and fences files, etc compared to chop compactions) and also goes into auto merge and how to configure tablets using the API. I'm marking it as a draft as I'm sure some changes are needed and polishing but want to get some feedback on how things look and if we need more detail or not. I also assume there will be updates in the future before release as things are tweaked as 4.0 still is not close to release.