Heal queue is full #465
Unanswered
IceBear-huang
asked this question in
Q&A
Replies: 1 comment
-
Got it. We're currently working on this issue and making improvements. Thank you for your feedback. @IceBear-huang |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
https://github.com/rustfs/rustfs/blob/main/crates/ahm/src/heal/manager.rs
Why is queue_size hardcoded as 1000 in the source code? My k+m is 3+1. Is the number of queues too small? The Heal queue is always full.
impl Default for HealConfig {
fn default() -> Self {
Self {
enable_auto_heal: true,
heal_interval: Duration::from_secs(10), // 10 seconds
max_concurrent_heals: 4,
task_timeout: Duration::from_secs(300), // 5 minutes
queue_size: 1000,
}
}
}
Beta Was this translation helpful? Give feedback.
All reactions