-
Notifications
You must be signed in to change notification settings - Fork 475
Fix major compaction metrics to not reference the tserver #5074
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
keith-turner
left a comment
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.
Seems like the three metric names in this PR could use the accumulo.compaction prefix like in #5075. Like accumulo.compaction.majc.queued. Also not something for this PR, but it seems like MAJC_QUEUED and MAJC_RUNNING could be removed. Those two metrics are dupicating data the is present in per compactor RG metrics and could be derived from those.
I merged into #5075 and fixed the names here.
|
Ok, I see now in #5062 you said |
Ok, using the server idle metric to gauge whether or not the Compactor is running a compaction is probably not the way to go. The process has to be idle for so long, regulated by Property.GENERAL_IDLE_PROCESS_INTERVAL, to be considered idle. This is so that the metric is not constantly flapping. |
|
I removed |
Closes #5062