Skip to content

Commit 0ca357b

Browse files
authored
Check the current cluster status before removing maintenance mode (FoundationDB#2235)
* Check the current cluster status before removing maintenance mode * Add documentation for the reset of the maintenance mode * Fix typos
1 parent bb4f535 commit 0ca357b

9 files changed

+150
-1963
lines changed

api/v1beta2/foundationdb_status.go

+4
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,10 @@ type FoundationDBStatusQosInfo struct {
383383
LimitingDurabilityLagStorageServer FoundationDBStatusLagInfo `json:"limiting_durability_lag_storage_server,omitempty"`
384384
WorstDataLagStorageServer FoundationDBStatusLagInfo `json:"worst_data_lag_storage_server,omitempty"`
385385
WorstDurabilityLagStorageServer FoundationDBStatusLagInfo `json:"worst_durability_lag_storage_server,omitempty"`
386+
// WorstQueueBytesLogServer refers to the worst_queue_bytes_log_server field in the machine readable status
387+
WorstQueueBytesLogServer int64 `json:"worst_queue_bytes_log_server,omitempty"`
388+
// WorstQueueBytesStorageServer refers to the worst_queue_bytes_storage_server field in the machine readable status
389+
WorstQueueBytesStorageServer int64 `json:"worst_queue_bytes_storage_server,omitempty"`
386390
}
387391

388392
// ProcessRole models the role of a pod.

0 commit comments

Comments
 (0)