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 1258331 commit 14134a4Copy full SHA for 14134a4
src/query/service/src/clusters/cluster.rs
@@ -636,6 +636,13 @@ impl ClusterDiscovery {
636
let license_key = Self::get_license_key(&self.tenant_id).await?;
637
638
let total_cpu_nums = nodes.iter().map(|x| x.cpu_nums).sum::<u64>();
639
+
640
+ info!("[Cluster] current resource status - online nodes: [{}], available CPU cores: [{}] for tenant [{}].",
641
+ nodes.len(),
642
+ total_cpu_nums,
643
+ self.tenant_id
644
+ );
645
646
LicenseManagerSwitch::instance()
647
.check_enterprise_enabled(license_key.clone(), Feature::MaxNodeQuota(nodes.len()))?;
648
0 commit comments