Update Exporter CPU and Memory Limits
The SingleStoreDB exporter container collects health and performance data about a running cluster. Should an exporter container continue to crash, additional CPU and/or memory resources can be assigned to it.
For the CPU, a value of
1.0
means one CPU. This value may also be fractional, such as0.25
(25%) of a CPU.For memory, desired memory values must be specified in megabytes (MB).
SingleStoreDB aggregator nodes and leaf nodes can be assigned CPU and memory values independently. These values may be adjusted in the spec
section of the sdb-cluster.yaml.
In the
aggregatorSpec
section, revise thecpu
and/or thememoryMB
values under theexporterConfig
sectionIn the
leafSpec
section, revise thecpu
and/or thememoryMB
values under theexporterConfig
section
When completed, apply these changes to the cluster.
spec: ... aggregatorSpec: ... exporterConfig: cpu: 0.25 # 1.0 means one cpu memoryMB: 256 leafSpec: ... exporterConfig: cpu: 0.25 # 1.0 means one cpu memoryMB: 256