mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
25 lines
706 B
Markdown
25 lines
706 B
Markdown
|
# ArangoDB Rebalancer Support
|
||
|
|
||
|
## Overview
|
||
|
|
||
|
ArangoDB as of 3.10.0 provide Cluster Rebalancer functionality via [api](https://www.arangodb.com/docs/stable/http/cluster.html#rebalance).
|
||
|
|
||
|
Operator will use above functionality to check shard movement plan and enforce it on the Cluster.
|
||
|
|
||
|
|
||
|
## How to use
|
||
|
|
||
|
To enable this feature use `--deployment.feature.rabalancer-v2` arg, which needs be passed to the operator:
|
||
|
|
||
|
```shell
|
||
|
helm upgrade --install kube-arangodb \
|
||
|
https://github.com/arangodb/kube-arangodb/releases/download/$VER/kube-arangodb-$VER.tgz \
|
||
|
--set "operator.args={--deployment.feature.rabalancer-v2}"
|
||
|
```
|
||
|
|
||
|
To enable Rebalancer in ArangoDeployment:
|
||
|
```yaml
|
||
|
spec:
|
||
|
rebalancer:
|
||
|
enabled: true
|
||
|
```
|