You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 27 Next »

The Myriad Scheduler can be configured to automatically download and run the Hadoop YARN binaries and get the Hadoop configuration from the resource manager. This means you won't have to install and configure Hadoop YARN on each machine. This information involves bundling Myriad and creating a tarball.

Assumptions

The following are assumptions about your environment:

  • You are using hadoop-2.7.1 downloaded from hadoop.apache.org. Specific vendor versions should work but may require additional steps.

The default location for $YARN_HOME is /opt/hadoop-2.7.1.

 

Building the Myriad Remote Distribution Bundle


Before building Myriad, configure the Resource Manager as you normally would. Building Myriad involves:

  1. Running ./gradlew build.
  2. Copying the Myriad Scheduler and files to your YARN classpath.
  3. Modifying the Myriad default configuration file (myriad-config-default.yml).
  4. Modifying the YARN XML file (yarn-site.xml).
  5. Creating the tarball.

 

Step 1: Build Myriad

From the project root, build Myriad with the following command:

./gradlew build

 

Step 2: Deploy Myriad Files

Copy the Myriad Scheduler and Executor jar files and the Myriad configuration, myriad-config-default.yml, file into your YARN classpath:

cp myriad-scheduler/build/libs/*.jar /opt/hadoop-2.7.1/share/hadoop/yarn/lib/
cp myriad-executor/build/libs/myriad-executor-0.0.1.jar /opt/hadoop-2.7.1/share/hadoop/yarn/lib/
cp myriad-scheduler/build/src/main/resources/myriad-config-default.yml /opt/hadoop-2.7.1/share/hadoop/yarn/lib/
 


Step 3: Configure the Myriad Defaults

Edit the $YARN_HOME/etc/hadoop/myriad-config-default.yml file to configure the default parameters. See the sample Myriad configuration file for more information. To enable remote binary distribution, you must set the following options:

frameworkSuperUser: admin              # Must be root or have passwordless sudo on all nodes!
frameworkUser: hduser                  # Should be the same user running the resource manager.
                                       # Must exist on all nodes and be in the 'hadoop' group
executor: 
  nodeManagerUri: hdfs://namenode:port/dist/hadoop-2.7.1.tar.gz 
yarnEnvironment: 
YARN_HOME: hadoop-2.7.1                # This should be relative if nodeManagerUri is set

 

Step 4: Configure YARN to use Myriad

Modify the $YARN_HOME/etc/hadoop/yarn-site.xml file as instructed in Sample: yarn-site.xml file.

Step 5: Create the Tarball

The tarball has all of the files needed for the Node Managers and  Resource Managers. The following shows how to create the tarball and place it in HDFS:

cd ~
sudo cp -rp /opt/hadoop-2.7.1 .
sudo rm ~/hadoop-2.7.1/etc/hadoop/yarn-site.xml
sudo tar -zcpf ~/hadoop-2.7.1.tar.gz hadoop-2.7.1
hadoop fs -put ~/hadoop-2.7.1.tar.gz /dist

 

Getting Started

You can now start the resource manager and attempt to flexup or flexdown the cluster. See the Administration section for information about managing Myriad. See the Myriad Cluster API for more information about scaling.

  • No labels