Installing Drill on the Cluster
You install Drill on nodes in the cluster, and then configure a cluster ID and add Zookeeper information, as described in the following steps:
Download the Drill tarball. For example, enter the curl command using the latest version number for Drill:
curl http://getdrill.org/drill/download/apache-drill-<version>.tar.gzExtract the tarball to the directory of your choice, such as
/opt:tar -xzvf apache-drill-<version>.tar.gzIn
drill-override.conf,use the Drillcluster ID, and provide Zookeeper host names and port numbers to configure a connection to your Zookeeper quorum.- Edit
drill-override.conflocated in theconfdirectory. - Provide a unique
cluster-idand the Zookeeper host names and port numbers inzk.connect. If you install Drill on multiple nodes, assign the samecluster IDto each Drill node so that all Drill nodes share the same ID. The default Zookeeper port on the open source version of Apache Drill is 2181.
Example
drill.exec:{ cluster-id: "<mydrillcluster>", zk.connect: "<zkhostname1>:<port>,<zkhostname2>:<port>,<zkhostname3>:<port>" }- Edit
