Configuring Executor Nodes
You can change how executor nodes are configured by modifying the executor configuration files on the coordinator node and then pushing out the changes to all the executor nodes.
-
If the directory
Create directory/var/dremio_efs/executor/etc/dremio/
does not exist on the coordinator node, create it on that node by running this command:mkdir -p /var/dremio_efs/executor/etc/dremio/
-
Copy the executor configuration files that you want to modify from
/etc/dremio/
on an executor node to/var/dremio_efs/executor/etc/dremio/
on the coordinator node. -
On the coordinator node, follow these steps:
-
Make your changes in the copy of the executor configuration files on the coordinator node.
-
If the file
Create customization file/var/dremio_efs/executor_customization.sh
does not already exist, create it.sudo sh -c 'echo "#!/bin/bash" > /var/dremio_efs/executor_customization.sh'
sudo chmod 755 /var/dremio_efs/executor_customization.sh -
Add the following line to
Add line to customization file/var/dremio_efs/executor_customization.sh
:cp -rf /var/dremio_efs/executor/etc/dremio/* /etc/dremio
-
Restart the executor nodes.
-