We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60368df commit e2fb196Copy full SHA for e2fb196
quickwit/quickwit-serve/src/lib.rs
@@ -338,7 +338,10 @@ async fn start_control_plane_if_needed(
338
balance_channel_for_service(cluster, QuickwitService::ControlPlane).await;
339
340
// If the node is a metastore, we skip this check in order to avoid a deadlock.
341
- if !node_config.is_service_enabled(QuickwitService::Metastore) {
+ // If the node is a searcher, we skip this check because the searcher does not need to.
342
+ if !(node_config.is_service_enabled(QuickwitService::Metastore)
343
+ || node_config.is_service_enabled(QuickwitService::Searcher))
344
+ {
345
info!("connecting to control plane");
346
347
if !balance_channel
0 commit comments