ArangoDB cluster
There are several ways to start an ArangoDB cluster. In this section we will focuson our recommended way to start ArangoDB: the ArangoDB Starter.
Datacenter to datacenter replication requires the rocksdb
storage engine. Theexample setup described in this section will have rocksdb
enabled. If you chooseto deploy with a different strategy keep in mind to set the storage engine.
For the other possibilities to deploy an ArangoDB cluster please refer tothis section.
The Starter simplifies things for the operator and will coordinate a distributedcluster startup across several machines and assign cluster roles automatically.
When started on several machines and enough machines have joined, the Starters_will start _Agents, Coordinators and DBservers on these machines.
When running the Starter will supervise its child tasks (namely Coordinators,DBservers and Agents) and restart them in case of failure.
To start the cluster using a systemd
unit file use the following:
[Unit]
Description=Run the ArangoDB Starter
After=network.target
[Service]
Restart=on-failure
EnvironmentFile=/etc/arangodb.env
EnvironmentFile=/etc/arangodb.env.local
Environment=DATADIR=/var/lib/arangodb/cluster
ExecStartPre=/usr/bin/sh -c "mkdir -p ${DATADIR}"
ExecStart=/usr/bin/arangodb \
--starter.address=${PRIVATEIP} \
--starter.data-dir=${DATADIR} \
--starter.join=${STARTERENDPOINTS} \
--server.storage-engine=rocksdb \
--auth.jwt-secret=${CLUSTERSECRETPATH}
TimeoutStopSec=60
LimitNOFILE=1048576
[Install]
WantedBy=multi-user.target
Note that we set rocksdb
in the unit service file.
Cluster authentication
The communication between the cluster nodes use a token (JWT) to authenticate.This must be shared between cluster nodes.
Sharing secrets is obviously a very delicate topic. The above workflow assumesthat the operator will put a secret in a file named ${CLUSTERSECRETPATH}
.
We recommend to use a dedicated system for managing secrets like HashiCorps’ Vault
or thesecret management of DC/OS
.
Required ports
As soon as enough machines have joined, the Starter will begin starting Agents,Coordinators and DBservers.
Each of these tasks needs a port to communicate. Please make sure that the followingports are available on all machines:
8529
for Coordinators8530
for DBservers8531
for AgentsThe Starter itself will use port8528
.
Recommended deployment environment
Since the Agents are so critical to the availability of both the ArangoDB and the ArangoSync cluster,it is recommended to run Agents on dedicated machines. Consider these machines “pets”.
Coordinators and DBServers can be deployed on other machines that should be considered “cattle”.