This topic describes how to configure Dremio services depending on your deployment. Dremio services are configured in the dremio.conf file. In addition, each node in the Dremio cluster must be configure accordingly.
The Dremio services
property determines whether the node is enabled with the
master coordinator, secondary coordinator, or executor role.
To configure a coordinator node with the master-coordinator role, use the following Dremio services configuration.
services: {
coordinator.enabled: true,
coordinator.master.enabled: true,
executor.enabled: false
}
Configure multiple secondary coordinator nodes to improve concurrency and distribute query planning for ODBC and JDBC client requests to your deployment. To distribute queries across your deployment, Dremio recommends that you also configure ZooKeeper.
Important
Do not run metadata commands on secondary coordinators. Run metadata commands only on the master coordinator.
To enable this feature for YARN-based and standalone deployments, add the following Dremio services configuration to the dremio.conf file on each secondary coordinator node in your cluster and restart your deployment:
services: {
coordinator.enabled: true,
coordinator.master.enabled: false,
coordinator.web.enabled: false,
executor.enabled: false
}
To enable secondary coordinator nodes for Azure AKE and AWS EKS deployments, update coordinator.count
in values.yaml
of the helm chart and restart your deployment.
Tip
Dremio recommends a maximum of five secondary coordinator nodes for a deployment.
Note:
Dremio deployments on AWS Edition and Azure ARM do not support secondary coordinator nodes.
To configure a node with the executor role, use the following Dremio services configuration.
services: {
coordinator.enabled: false,
coordinator.master.enabled: false,
executor.enabled: true
}