docs/anomaly-detection/Scaling-vmanomaly.md
Ensuring high availability and horizontal scalability is important for maintaining reliable anomaly detection in distributed environments. Horizontal scalability allows vmanomaly to distribute workloads across multiple nodes by sharding configuration entities, preventing performance bottlenecks. High availability ensures redundancy by replicating sub-configurations across multiple nodes, reducing the risk of data loss or service disruption due to node failures.
This document explains how vmanomaly achieves scalability through sharding and redundancy through replication, covering configurations for Docker, Docker Compose, and Helm deployments.
vmanomaly service operations are configured using YAML files that define various components, as shown in the example below. These (global) configurations can be divided into smaller, fully functional sub-configurations, which can be used for horizontal scalability through sharding or for high availability by enabling replication.
# https://docs.victoriametrics.com/anomaly-detection/components/scheduler/
schedulers:
periodic_1d: # alias
class: 'periodic' # scheduler class
infer_every: "30s"
fit_every: "1000d"
fit_window: "24h"
# https://docs.victoriametrics.com/anomaly-detection/components/models/
models:
zscore: # we can set up alias for model
class: 'zscore_online' # online model class
z_threshold: 3.5
decay: 0.99 # give more weight to recent data while using the bootstrap-only fit schedule
queries: ['cpu_seconds_total', 'host_network_receive_errors']
# https://docs.victoriametrics.com/anomaly-detection/components/reader/#vm-reader
reader:
datasource_url: "https://play.victoriametrics.com/"
tenant_id: "0:0"
class: 'vm'
sampling_period: "30s" # what data resolution to fetch from VictoriaMetrics' /query_range endpoint
queries: # aliases to MetricsQL expressions
cpu_seconds_total:
expr: 'avg(rate(node_cpu_seconds_total[5m])) by (mode)'
host_network_receive_errors:
expr: 'rate(node_network_receive_errs_total[3m]) / rate(node_network_receive_packets_total[3m])'
# https://docs.victoriametrics.com/anomaly-detection/components/writer/
writer:
datasource_url: "http://victoriametrics:8428/"
Global configuration file can be split into N >= 1 validated sub-configurations based on logical entities such as schedulers, queries, models, and extra_filters. Each sub-configuration remains functional and respects the many-to-many relationships between models, queries, and schedulers. A minimal valid sub-configuration consists of a single model type running on a single query and attached to a single scheduler.
Example config above can be split into 2 sub-configurations (by queries):
zscore), attached to 1 scheduler (periodic_1d) which is run on 1st query (cpu_seconds_total)zscore), attached to 1 scheduler (periodic_1d) which is run on 2nd query (host_network_receive_errors)vmanomaly supports horizontal scalability {{% available_from "v1.21.0" anomaly %}} by sharding sub-config entities, enabling workload distribution across multiple nodes while preserving consistency and maintaining a single global configuration entry point.
A vmanomaly global YAML configuration can be split into N validated sub-configurations based on logical entities such as schedulers, queries, models, and extra_filters.
These sub-configurations can be assigned to a specific shard (node) indexed from {0, K-1} across K available nodes.
Additionally, a replication factor R ≥ 1 ensures high availability by enforcing redundancy across shards.
{{% content "vmanomaly-sharding-ha-diagram.md" %}}
[!WARNING] Please refer to deployment options section for the examples (Docker, Docker Compose, Helm). To avoid duplicate metrics being reported from each vmanomaly service used in sharded mode, make sure that deduplication is configured on vmsingle or vmselect and vmstorage for the VictoriaMetrics instance used in the writer section of the configuration.
Sharding configuration can be controlled by using the following environment variables:
VMANOMALY_MEMBERS_COUNT: Defines the total number of shards (i.e., available nodes to distribute sub-configurations to).
Defaults to 1 for backward compatibility.VMANOMALY_MEMBER_NUM: Specifies the shard index (0 to VMANOMALY_MEMBERS_COUNT - 1), determining the subset of sub-configurations to run on a specific node. Defaults to 0. Supports automatic pod name discovery in Kubernetes StatefulSets (e.g., if set to vmanomaly-node-exporter-7, shard 7 will be extracted).VMANOMALY_REPLICATION_FACTOR: If R > 1, enables high availability by ensuring each sub-configuration is assigned to exactly R shards. Defaults to 1 (no replication).VMANOMALY_SPLIT_BY: Defines the logical entity used to split the global config into sub-configurations. The accepted values are SCHEDULERS, MODELS, QUERIES, EXTRA_FILTERS, and COMPLETE (case-insensitive). It defaults to COMPLETE, which usually provides the most granular and balanced distribution.The split strategies differ as follows:
VMANOMALY_SPLIT_BY | Unit of work in each sub-configuration | Recommended use |
|---|---|---|
SCHEDULERS | One scheduler and the workload attached to it | Separate workloads by fit and inference cadence. The number of sub-configurations is limited by the number of referenced schedulers. |
MODELS | One configured model alias with its attached schedulers and queries | Isolate computationally different models or distribute several models that process the same queries. |
QUERIES | One query for univariate models; the complete attached query set for each multivariate model | Distribute independent query workloads. Queries belonging to one multivariate model remain together because the model needs all channels. This option does not split the series returned by one query. |
EXTRA_FILTERS | One configured reader.extra_filters selector, with the full model/query/scheduler topology retained | Partition the series returned by large queries, for example by region, cluster, another stable label, or by VictoriaMetrics tenant using vm_account_id and vm_project_id selectors with the multitenant endpoint. The filters must already be defined in the global configuration. |
COMPLETE | One valid scheduler/model/query combination; multivariate query sets remain together | Obtain the finest general-purpose split and the default choice for balanced sharding. reader.extra_filters are intentionally not expanded by this strategy. |
After the selected strategy creates the sub-configurations, they are assigned to members in deterministic round-robin order and then replicated according to VMANOMALY_REPLICATION_FACTOR.
{{% collapse name="Configuration and resulting sub-configurations" %}}
The following abbreviated global configuration contains two schedulers, two models, four queries, and two data partitions:
schedulers:
fast:
class: periodic
infer_every: 1m
fit_every: 1000d
fit_window: 1d
seasonal:
class: periodic
infer_every: 5m
fit_every: 1000d
fit_window: 2w
models:
cpu_zscore:
class: zscore_online
schedulers: [fast]
queries: [cpu, error_rate]
decay: 0.99
gpu_envelope:
class: temporal_envelope_multivariate
schedulers: [seasonal]
queries: [temperature, power]
seasonalities: [hod_smooth, dow_smooth]
reader:
class: vm
datasource_url: http://victoriametrics:8428/
sampling_period: 1m
queries:
cpu:
expr: avg(rate(node_cpu_seconds_total[5m])) by (instance)
error_rate:
expr: rate(application_errors_total[5m])
temperature:
expr: avg(gpu_temperature_celsius) by (gpu)
power:
expr: avg(gpu_power_watts) by (gpu)
extra_filters: ['{region="us-east"}', '{region="eu-west"}']
writer:
class: vm
datasource_url: http://victoriametrics:8428/
For this configuration, each strategy produces the following logical units before they are assigned to shards:
| Value | Resulting sub-configurations |
|---|---|
SCHEDULERS | fast; seasonal |
MODELS | cpu_zscore; gpu_envelope |
QUERIES | cpu; error_rate; the multivariate set power,temperature |
EXTRA_FILTERS | {region="us-east"}; {region="eu-west"}; each retains all schedulers, models, and queries, while the query context is restricted by its selector |
COMPLETE | fast:cpu_zscore:cpu; fast:cpu_zscore:error_rate; seasonal:gpu_envelope:power,temperature |
For example, choose the query split with:
environment:
VMANOMALY_MEMBERS_COUNT: 3
VMANOMALY_MEMBER_NUM: 0
VMANOMALY_REPLICATION_FACTOR: 1
VMANOMALY_SPLIT_BY: QUERIES
To partition the timeseries returned by the same large query instead, define non-overlapping selectors in reader.extra_filters and use VMANOMALY_SPLIT_BY: EXTRA_FILTERS. Each generated sub-configuration keeps one selector, for example {region="us-east"} or {region="eu-west"}.
{{% /collapse %}}
The total number of available and assigned sub-configurations per shard can be found using the following self-monitoring metric:
# HELP vmanomaly_config_entities Number of sub-configs (entities) in the configuration available for sharding.
Scope: total - total number of entities, shard - number of entities used on the current shard.
# TYPE vmanomaly_config_entities gauge
vmanomaly_config_entities{preset="default",scope="total"} 8.0
vmanomaly_config_entities{preset="default",scope="shard"} 4.0
Meaning, vmanomaly runs in sharded mode, where this particular shard uses 4 out of 8 sub-configurations, received after global config split.
For more details, refer to the vmanomaly_config_entities self-monitoring metric.
For a global configuration that is split into 9 sub-configs [1, 2, 3, ..., 9], setting:
VMANOMALY_MEMBERS_COUNT = 3 (3 shards)VMANOMALY_REPLICATION_FACTOR = 1 (default, no replication)results in the following distribution of sub-configs across the shards (nodes):
[1, 4, 7][2, 5, 8][3, 6, 9]Since the replication factor is set to 1, each sub-config is assigned to exactly one node, meaning there is no redundancy in the distribution.
Similar to other VictoriaMetrics ecosystem components, like VMAgent or VMAlert, there exists a support for high availability in vmanomaly through sub-config replication {{% available_from "v1.21.0" anomaly %}}.
When VMANOMALY_REPLICATION_FACTOR > 1, each sub-config n from {0, N-1} is assigned to exactly R nodes. This ensures redundancy, preventing single-node failures from causing data loss.
{{% content "vmanomaly-sharding-ha-diagram.md" %}}
[!WARNING] Please refer to deployment options section for the examples (Docker, Docker Compose, Helm). To avoid duplicate metrics being reported from each vmanomaly service used in sharded mode, make sure that deduplication is configured on vmsingle or vmselect and vmstorage for the VictoriaMetrics instance used in the writer section of the configuration.
For a global configuration split into 9 sub-configs [1, 2, 3, ..., 9], with:
VMANOMALY_MEMBERS_COUNT = 3 (3 shards)VMANOMALY_REPLICATION_FACTOR = 2 (each sub-config is assigned to exactly 2 nodes)the resulting replicated sharded distribution is:
[1, 3, 4, 6, 7, 9][1, 2, 4, 5, 7, 8][2, 3, 5, 6, 8, 9]Now, each sub-config (1–9) is present on exactly 2 nodes, ensuring redundancy:
To enable horizontal scalability (HS) or high availability (HA) in vmanomaly, deployment settings should be accordingly configured. Below are examples for running vmanomaly with sharding and replication using Docker, Docker Compose, and Helm.
To run vmanomaly in a Docker container with sharding enabled (e.g., setting VMANOMALY_MEMBERS_COUNT=2 for two shards and VMANOMALY_REPLICATION_FACTOR=1 for no replication), specify the shard index using VMANOMALY_MEMBER_NUM. Indexing starts from 0 up to VMANOMALY_MEMBERS_COUNT - 1. The example below runs the first shard (VMANOMALY_MEMBER_NUM=0):
#!/usr/bin/env bash
set -x -e
cd "$(dirname "$0")/.." || exit 1
# run the first shard (VMANOMALY_MEMBER_NUM=0) in a two-shard setup (VMANOMALY_MEMBERS_COUNT=2)
docker run -i -t --rm \
--user="$(id -u):$(id -g)" \
--cap-drop=ALL \
-e "VM_LICENSE_FILE=/.secret/license" \
-e "VMANOMALY_MEMBERS_COUNT=2" \
-e "VMANOMALY_MEMBER_NUM=0" \
-e "VMANOMALY_REPLICATION_FACTOR=1"
-e "VMANOMALY_SPLIT_BY=COMPLETE" \
-v "$PWD/global_config.yaml":/global_config.yaml \
-v "$PWD/.secret/license":/.secret/license \
-p 8080:8080 \
-p 8490:8490 \
vmanomaly:v1.21.0 \
/global_config.yaml \
--loggerLevel=INFO
Sharded vmanomaly can be set up using Docker Compose, enabling easier orchestration of multiple shards. Each shard runs a subset N_k out of N split sub-configurations of the global configuration. No replication is set in this example, meaning VMANOMALY_REPLICATION_FACTOR is set to 1.
The following example demonstrates how to deploy vmanomaly with two shards, each assigned a unique subset of the global config:
# other sections ...
services:
# other services ...
vmanomaly-1:
image: victoriametrics/vmanomaly:v1.21.0
user: "1000:1000"
restart: always
healthcheck:
test:
- "CMD"
- "curl"
- "-f"
- "http://127.0.0.1:8490/health"
interval: 30s
timeout: 10s
retries: 5
volumes:
- ./vmanomaly-config:/config
command:
- "/config/global_config.yml"
- "--license=YOUR_LICENSE"
environment:
VMANOMALY_MEMBERS_COUNT: 2
VMANOMALY_MEMBER_NUM: 0
VMANOMALY_REPLICATION_FACTOR: 1
VMANOMALY_SPLIT_BY: "COMPLETE"
vmanomaly-2:
image: victoriametrics/vmanomaly:v1.21.0
user: "1000:1000"
restart: always
healthcheck:
test:
- "CMD"
- "curl"
- "-f"
- "http://127.0.0.1:8490/health"
interval: 30s
timeout: 10s
retries: 5
volumes:
- ./vmanomaly-config:/config
command:
- "/config/global_config.yml" # Fixed to match vmanomaly-1
- "--license=YOUR_LICENSE"
environment:
VMANOMALY_MEMBERS_COUNT: 2
VMANOMALY_MEMBER_NUM: 1
VMANOMALY_REPLICATION_FACTOR: 1
VMANOMALY_SPLIT_BY: "COMPLETE"
To deploy vmanomaly with N > 1 shards using Helm, ensure chart version 1.9.0 or newer is used. Configure the following settings in values.yaml:
.Values.shardsCount): Defines the number of shards (N > 1) to enable horizontal scaling. Configure it here..Values.replicationFactor): If R > 1, each sub-config is assigned to exactly R shards. Configure it here.With StatefulSet enabled, vmanomaly automatically extracts shard numbers from pod names. For example, if the pod is named vmanomaly-node-exporter-0, then VMANOMALY_MEMBER_NUM=0 is assigned automatically.