-
Notifications
You must be signed in to change notification settings - Fork 146
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
show when a repair is paused #2187
Comments
|
We could add SM metric like // Status enumeration.
const (
StatusNew Status = "NEW" // 1
StatusRunning Status = "RUNNING"
StatusStopping Status = "STOPPING"
StatusStopped Status = "STOPPED"
StatusWaiting Status = "WAITING"
StatusDone Status = "DONE"
StatusError Status = "ERROR"
StatusAborted Status = "ABORTED" // 8
) |
I have concerns about the explosion of metrics from the manager when we have lots of tables. |
Proposed metric wouldn't be labeled by host or table, so it shouldn't generate much entries. |
some clusters can have 1200 tables |
Does this request need to factor in tables? Or is this simply a boolean on whether there is a pause on repair for a cluster? |
@tarzanek, does anyone you know care about the table-by-table repair? |
Usually people want whole cluster stats, so @tzach is right |
Thanks @tarzanek Look like we have 3 separate issues:
|
@Michal-Leszczynski how are we with regards to those metrics? may be related to #2307 |
I suppose that we can put scylladb/scylla-manager#3744 in 3.3.1 milestone. |
Let's bring this issue to the refirement. |
It could be useful to see if a repair process is paused.
The text was updated successfully, but these errors were encountered: