-
Notifications
You must be signed in to change notification settings - Fork 65
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
Added structs for replication diag #330
base: main
Are you sure you want to change the base?
Conversation
6b958dc
to
36857be
Compare
Signed-off-by: Shubhendu Ram Tripathi <[email protected]>
36857be
to
9fcf548
Compare
9fcf548
to
97c3c3e
Compare
Signed-off-by: Shubhendu Ram Tripathi <[email protected]>
97c3c3e
to
1f02702
Compare
ActiveWorkers WorkerStat `json:"active_workers,omitempty"` | ||
Queued InQueueMetric `json:"queued,omitempty"` | ||
ReplicaCount int64 `json:"replica_count,omitempty"` | ||
ReplicaSize int64 `json:"replica_size,omitempty"` |
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.
What do ReplicaCount and ReplicaSize represent?
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.
ReplicaCount = no of objects replicated
ReplicaSize = no of bytes replicated
IIUC
Edge bool `json:"edge,omitempty"` | ||
ILMEnabled bool `json:"ilm_enabled,omitempty"` | ||
EncryptionEnabled bool `json:"encryption_enabled,omitempty"` | ||
ILMExpiryReplication bool `json:"ilm_expiry_replication,omitempty"` |
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.
Shouldn't lines 46-54 be captured per node, perhaps in MinIONode below, the intention being, to flag any mismatch across nodes in the subsequent reporting step?
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.
My thought was that across sites if they mismatch, that itself is issue
No description provided.