> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domino.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Connect to a Cloudera CDH5 cluster from Domino

Domino supports connecting to a [Cloudera CDH5](https://www.cloudera.com/services-and-support/tutorials/how-to-create-a-cdp-private-cloud-base-development-cluster.html) cluster through the addition of cluster-specific binaries and configuration files to your [Domino environment](/6.3/platform-capabilities/core-concepts/compute-environments/manage-compute-environments).

At a high level, the process is as follows:

1. Connect to your [CDH5 edge or gateway node](https://docs-archive.cloudera.com/documentation/enterprise/6/6.3/topics/cdh_sg_gateway_setup.html) and gather the required binaries and configuration files, then download them to your local machine.

2. Upload the gathered files into a Domino project to allow access by the Domino environment builder.

3. Create a new Domino environment that uses the uploaded files to enable connections to your cluster.

4. Enable YARN integration for the Domino projects that you want to use with the CDH5 cluster.

Domino supports the following types of connections to a CDH5 cluster:

* [FS shell](https://docs.cloudera.com/HDPDocuments/HDP3/HDP-3.1.4/bk_cloud-data-access/content/using-fs-shell.html)

* [spark2-shell](https://docs-archive.cloudera.com/documentation/spark2/2-3-x/topics/spark_running_apps.html)

* [spark2-submit](https://docs-archive.cloudera.com/documentation/spark2/2-3-x/topics/spark_running_apps.html)

* [PySpark](https://spark.apache.org/docs/latest/api/python/index.html)

* [YARN shell](https://hadoop.apache.org/docs/r3.1.1/hadoop-yarn/hadoop-yarn-site/YarnCommands.html)

## Gather the required binaries and configuration files

You will find most of the files for setting up your Domino environment on your [CDH5 edge or gateway node](https://docs-archive.cloudera.com/documentation/enterprise/6/6.3/topics/cdh_sg_gateway_setup.html). To get started, connect to the edge node via SSH, then follow the steps below.

1. Create a directory named `hadoop-binaries-configs` at `/tmp`.

   ```shell theme={null}
   mkdir /tmp/hadoop-binaries-configs
   ```

2. Create the following subdirectories inside `/tmp/hadoop-binaries-configs/`.

   ```shell theme={null}
   mkdir /tmp/hadoop-binaries-configs/configs

   mkdir /tmp/hadoop-binaries-configs/parcels
   ```

3. Optional: If your cluster uses Kerberos authentication, create the following subdirectory in `/tmp/hadoop-binaries/configs/`.

   ```shell theme={null}
   mkdir /tmp/hadoop-binaries-configs/kerberos
   ```

   Then, copy the `krb5.conf` Kerberos configuration file from `/etc/` to `/tmp/hadoop-binaries-configs/kerberos`.

   ```shell theme={null}
   cp /etc/krb5.conf /tmp/hadoop-binaries-configs/kerberos/
   ```

4. Copy the `CDH` and `SPARK2` directories from `/opt/cloudera/parcels/` to `/tmp/hadoop-binaries-configs/parcels/`. These directories will have a version number appended to their names, so complete the appropriate directory name in the commands shown below.

   ```shell theme={null}
   cp -R /opt/cloudera/parcels/CDH-<version>/ /tmp/hadoop-binaries-configs/parcels/
   cp -R /opt/cloudera/parcels/SPARK2-<version>/ /tmp/hadoop-binaries-configs/parcels/
   ```

5. Copy the `hadoop`, `hive`, `spark`, and `spark2` directories from `/etc/` to `/tmp/hadoop-binaries-configs/configs/`.

   ```shell theme={null}
   cp -R /etc/hadoop /tmp/hadoop-binaries-configs/configs/
   cp -R /etc/hive /tmp/hadoop-binaries-configs/configs/
   cp -R /etc/spark2 /tmp/hadoop-binaries-configs/configs/
   cp -R /etc/spark /tmp/hadoop-binaries-configs/configs/
   ```

6. On the edge node, run the following command to identify the version of Java running on the cluster.

   ```shell theme={null}
   java -version
   ```

   You should then [download a JDK .tar file from the Oracle downloads page](https://www.oracle.com/technetwork/java/javase/downloads/index.html) that matches that version. The filename will have a pattern like the following.

   `jdk-8u211-linux-x64.tar.gz`

   Keep this JDK handy on your local machine for use in a future step.

7. Compress the `/tmp/hadoop-binaries-configs/` directory to a gzip archive.

   ```shell theme={null}
   cd /tmp

   tar -zcf hadoop-binaries-configs.tar.gz hadoop-binaries-configs
   ```

   When finished, use `SCP` to download the archive to your local machine.

8. Next, you’ll need to extract the archive on your local machine, add a `java` subdirectory, then add the JDK .tar file you downloaded earlier to the `java` subdirectory.

   ```shell theme={null}
   tar xzf hadoop-binaries-configs.tar.gz

   mkdir hadoop-binaries-configs/java

   cp jdk-8u211-linux-x64.tar.gz hadoop-binaries-configs/java/
   ```

9. When finished, your `hadoop-binaries-configs` directory should have the following structure:

   ```console theme={null}
   hadoop-binaries-configs/
     ├── configs/
           ├── hadoop/
           ├── hive/
           ├── spark/
           └── spark2/
     ├── java/
           └── jdk-8u211-linux-x64.tar.gz
     ├── parcels
           ├── CDH-version/
           └── SPARK-version/
     └── kerberos/  # optional
           └── krb5.conf
   ```

10. If your directory contains all the required files, you can now compress it to a gzip archive again in preparation for uploading to Domino in the next step.

    ```shell theme={null}
    tar -zcf hadoop-binaries-configs.tar.gz hadoop-binaries-configs
    ```

## Upload the binaries and configuration files to Domino

Use the following procedure to upload the archive you created in the previous step to a public Domino project. This will make the file available to the Domino environment builder.

1. Log in to Domino, then create a new public project.

2. Open the **Code** page for the new project, then click to **browse for files** and select the archive you created in the previous section. Then click **Upload**.

3. After the archive has been uploaded, click the gear menu next to it on the Files page, then right click **Download** and click **Copy Link Address**. Save the copied URL in your notes, as you will need it in the next step.

   After you have recorded the download URL of the archive, you’re ready to build a Domino environment for connecting to your CDH5 cluster.

## Create a Domino environment for connecting to CDH5

1. Click **Environments** from the Domino main menu, then click **Create Environment**.

2. Give the environment an informative name, then choose a base environment that includes the version of Python that is installed on the nodes of your CDH5 cluster. Most Linux distributions ship with Python 2.7 by default, so you will see the [Domino analytics distribution for Python 2.7](/6.3/platform-capabilities/core-concepts/compute-environments/manage-compute-environments/2-domino-standard-environments) used as the base image in the following examples. Click **Create** when finished.

3. After creating the environment, click **Edit Definition**. Copy the following example into your Dockerfile instructions, then be sure to edit it wherever necessary with values specific to your deployment and cluster.

   In this Dockerfile, wherever you see a hyphenated instruction enclosed in angle brackets like `<paste-your-domino-download-url-here>`, be sure to replace it with the corresponding value you recorded in previous steps.

   You may also need to edit commands that follow to match downloaded filenames.

   ```dockerfile theme={null}
   USER root

   # Give user ubuntu ability to sudo as any user including root
   RUN echo "ubuntu ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers

   # Set up directories
   RUN mkdir -p /opt/cloudera/parcels &&
       mkdir /tmp/domino-hadoop-downloads &&
       mkdir /usr/java

   # Download the binaries and configs gzip you uploaded to Domino.
   # This downloaded gzip file should have the following
   # - CDH and Spark2 parcel directories in a 'parcels' sub-directory.
   # - java installation tar file in 'java' sub-directory
   # - krb5.conf in 'kerberos' sub-directory
   # - hadoop, hive, spark2 and spark config directories a 'configs' sub-directory
   RUN wget --no-check-certiticate <paste-your-domino-download-url-here> -O /tmp/domino-hadoop-downloads/hadoop-binaries-configs.tar.gz &&
       tar xzf /tmp/domino-hadoop-downloads/hadoop-binaries-configs.tar.gz -C /tmp/domino-hadoop-downloads/

   # Install kerberos client and update the kerberos configuration file
   RUN apt-get -y install krb5-user telnet &&
       cp /tmp/domino-hadoop-downloads/hadoop-binaries-configs/kerberos/krb5.conf /etc/krb5.conf

   # Install version of Java that matches hadoop cluster and update environment variables
   # Your JDK may have a different filename depending on your cluster's version of Java
   RUN tar xvf /tmp/domino-hadoop-downloads/hadoop-binaries-configs/java/jdk-8u162-linux-x64.tar -C /usr/java
   ENV JAVA_HOME=/usr/java/jdk1.8.0_162
   RUN echo "export JAVA_HOME=/usr/java/jdk1.8.0_162" >> /home/ubuntu/.domino-defaults &&
       echo "export PATH=$JAVA_HOME/bin:$PATH" >> /home/ubuntu/.domino-defaults

   # Install CDH hadoop-client binaries from cloudera ubuntu trusty repository.
   # This example shows client binaries for CDH version 5.15 here.
   # Update these commands with the CDH version that matches your cluster.
   RUN echo "deb [arch=amd64] http://archive.cloudera.com/cdh5/ubuntu/trusty/amd64/cdh trusty-cdh5.15.0 contrib" >> /etc/apt/sources.list.d/cloudera.list &&
       echo "deb-src http://archive.cloudera.com/cdh5/ubuntu/trusty/amd64/cdh trusty-cdh5.15.0 contrib" >> /etc/apt/sources.list.d/cloudera.list &&
       wget http://archive.cloudera.com/cdh5/ubuntu/trusty/amd64/cdh/archive.key -O /tmp/domino-hadoop-downloads/archive.key &&
       apt-key add /tmp/domino-hadoop-downloads/archive.key &&
       apt-get update &&
       apt-get -y -t trusty-cdh5.15.0 install zookeeper &&
       apt-get -y -t trusty-cdh5.15.0 install hadoop-client

   # Copy CDH and Spark2 parcels to correct directories and update symlinks
   # Note that the version strings attached to your directory names may be different than the below examples.
   RUN mv /tmp/domino-hadoop-downloads/hadoop-binaries-configs/parcels/CDH-5.15.0-1.cdh5.15.0.p0.21 /opt/cloudera/parcels/ &&
       mv /tmp/domino-hadoop-downloads/hadoop-binaries-configs/parcels/SPARK2-2.3.0.cloudera3-1.cdh5.13.3.p0.458809 /opt/cloudera/parcels/ &&
       ln -s /opt/cloudera/parcels/CDH-5.15.0-1.cdh5.15.0.p0.21 /opt/cloudera/parcels/CDH &&
       ln -s /opt/cloudera/parcels/SPARK2-2.3.0.cloudera3-1.cdh5.13.3.p0.458809 /opt/cloudera/parcels/SPARK2

   # Copy hadoop, hive and spark2 configurations
   RUN mv /etc/hadoop /tmp/domino-hadoop-downloads/hadoop-binaries-configs/configs/hadoop-etc-local.backup &&
       mv /tmp/domino-hadoop-downloads/hadoop-binaries-configs/configs/hadoop /etc/hadoop &&
       mv /tmp/domino-hadoop-downloads/hadoop-binaries-configs/configs/hive /etc/hive &&
       mv /tmp/domino-hadoop-downloads/hadoop-binaries-configs/configs/spark2 /etc/spark2 &&
       mv /tmp/domino-hadoop-downloads/hadoop-binaries-configs/configs/spark /etc/spark

   # Create alternatives for hadoop configurations. Update the extensions with the same strings as found in your edge node
   # Example: In the command 'update-alternatives --install /etc/hadoop/conf hadoop-conf /etc/hadoop/conf.cloudera.yarn 55'
   # make sure that /etc/hadoop/conf.cloudera.yarn is named the same as the corresponding file on your edge node.
   # Sometimes in the CDH5 edgenode, that is named something like /etc/hadoop/conf.cloudera.yarn_
   RUN update-alternatives --install /etc/hadoop/conf hadoop-conf /etc/hadoop/conf.cloudera.yarn 55 &&
       update-alternatives --install /etc/hive/conf hive-conf /etc/hive/conf.cloudera.hive 55 &&
       update-alternatives --install /etc/spark2/conf spark2-conf /etc/spark2/conf.cloudera.spark2_on_yarn 55 &&
       update-alternatives --install /etc/spark/conf spark-conf /etc/spark/conf.cloudera.spark_on_yarn 55

   # These instructions are for Spark2
   # Creating alternatives for Spark2 binaries, also create symlink for pyspark pointing to pyspark2
   RUN update-alternatives --install /usr/bin/spark2-shell spark2-shell /opt/cloudera/parcels/SPARK2/bin/spark2-shell 55 &&
       update-alternatives --install /usr/bin/spark2-submit spark2-submit /opt/cloudera/parcels/SPARK2/bin/spark2-submit 55 &&
       update-alternatives --install /usr/bin/pyspark2 pyspark2 /opt/cloudera/parcels/SPARK2/bin/pyspark2 55 &&
       ln -s /usr/bin/pyspark2 /usr/bin/pyspark

   # Update SPARK and HADOOP environment variables. Make sure py4j file name is correct per your edgenode
   ENV SPARK_HOME=/opt/cloudera/parcels/SPARK2/lib/spark2
   RUN echo "export HADOOP_HOME=/opt/cloudera/parcels/CDH/lib/hadoop" >> /home/ubuntu/.domino-defaults &&
       echo "export HADOOP_CONF_DIR=/etc/hadoop/conf" >> /home/ubuntu/.domino-defaults &&
       echo "export YARN_CONF_DIR=/etc/hadoop/conf" >> /home/ubuntu/.domino-defaults &&
       echo "export SPARK_HOME=/opt/cloudera/parcels/SPARK2/lib/spark2" >> /home/ubuntu/.domino-defaults &&
       echo "export SPARK_CONF_DIR=/etc/spark2/conf" >> /home/ubuntu/.domino-defaults &&
       echo "export PYTHONPATH=$SPARK_HOME/python:$SPARK_HOME/python/lib/py4j-0.10.7-src.zip" >> /home/ubuntu/.domino-defaults

   # Change spark-defaults.conf file permission
   RUN mv /etc/spark2/conf/spark-defaults.conf /etc/spark2/ &&
       chmod 777 /etc/spark2/conf.cloudera.spark2_on_yarn

   # Copy hive-site.xml to /etc/spark2/conf to access hive tables from Spark2.
   RUN cp /etc/spark2/conf/yarn-conf/hive-site.xml /etc/spark2/conf/

   USER ubuntu
   ```

4. Scroll down to the **Pre Run Script** field and add the following lines:

   ```shell theme={null}
   cat /etc/spark2/spark-defaults.conf >> /etc/spark2/conf/spark-defaults.conf
   sed -i.bak '/spark.ui.port=0/d' /etc/spark2/conf/spark-defaults.conf
   ```

5. Scroll down and click **Advanced** to expand additional fields. Add the following line to the **Post Setup Script** field:

   ```shell theme={null}
   echo "export YARN_CONF_DIR=/etc/hadoop/conf" >> /home/ubuntu/.bashrc
   ```

6. Click **Build** when finished editing the Dockerfile instructions. If the build completes successfully, you are ready to try using the environment.

## Configure a Domino project for use with a CDH5 cluster

This procedure assumes that an environment with the necessary client software has been created according to the instructions above. Ask your Domino admin for access to such an environment.

1. Open the Domino project you want to use with your CDH5 cluster, then click **Settings** from the project menu.

2. On the Integrations tab, click to select **YARN** integration from the Apache Spark panel, then click **Save**. You do not need to edit any of the fields in this section.

3. If your cluster uses Kerberos authentication, you can [configure credentials at the user level or project level ](/6.3/platform-capabilities/features/compute-clusters-hpc/spark/hadoop-and-spark/kerberos-authentication). Do so before attempting to use the environment. Note that if you followed the instructions above on creating your environment, your Kerberos configuration file has already been added to it.

4. On the **Hardware & Environment** tab, change the project default environment to the one with the cluster’s binaries and configurations files installed.

You are now ready to start Runs from this project that interact with your CDH5 cluster.
