-
Notifications
You must be signed in to change notification settings - Fork 694
healthcheck config #14860
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
healthcheck config #14860
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1768,6 +1768,14 @@ message THiveConfig { | |
optional uint64 NodeRestartsForPenalty = 85 [default = 3]; | ||
} | ||
|
||
message THealthCheckConfig { | ||
optional uint32 NodeRestartsPerPeriodYellowThreshold = 1 [default = 10]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How do I set the duration of the "period"? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. that part is configured through Hive config There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is very unexpected. Do you have an improvement plan? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
optional uint32 NodeRestartsPerPeriodOrangeThreshold = 2 [default = 30]; | ||
optional uint64 NodesTimeDifferenceUsYellowThreshold = 3 [default = 5000]; | ||
optional uint64 NodesTimeDifferenceUsOrangeThreshold = 4 [default = 25000]; | ||
optional uint32 TabletsRestartsPerPeriodOrangeThreshold = 5 [default = 30]; | ||
} | ||
|
||
message TBlobCacheConfig { | ||
optional uint64 MaxSizeBytes = 1 [default = 1073741824]; | ||
} | ||
|
@@ -2253,6 +2261,7 @@ message TAppConfig { | |
optional TSelfManagementConfig SelfManagementConfig = 86; | ||
optional NKikimrProto.TDataIntegrityTrailsConfig DataIntegrityTrailsConfig = 87; | ||
optional TDataErasureConfig DataErasureConfig = 88; | ||
optional THealthCheckConfig HealthCheckConfig = 89; | ||
|
||
repeated TNamedConfig NamedConfigs = 100; | ||
optional string ClusterYamlConfig = 101; | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -143,6 +143,7 @@ message TConfigItem { | |||||
GroupedMemoryLimiterConfig = 82; | ||||||
ReplicationConfigItem = 83; | ||||||
CompPrioritiesConfig = 85; | ||||||
HealthCheckConfigItem = 89; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe the item number should match the configuration number in AppConfig so that the console knows which subscribers to send updates to. If the number is changed, the test fails. |
||||||
|
||||||
NamedConfigsItem = 100; | ||||||
ClusterYamlConfigItem = 101; | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.