This is the documentation for Cloudera Manager 5.0.x. Documentation for other versions is available at Cloudera Documentation.

The MapReduce Service

CDH supports two versions of the MapReduce computation framework: MRv1 and MRv2, which are implemented by the MapReduce (MRv1) and YARN (MRv2) services.

In a CDH 4 cluster, the MapReduce service is the default MapReduce computation framework.
  Important: You can create a YARN service in a CDH 4 cluster, but it is not considered production ready.
In a CDH 5 cluster, the YARN service is the default MapReduce computation framework.
  Important: In CDH 5 the MapReduce service has been deprecated. However, the MapReduce service is fully supported for backward compatibility through the CDH 5 life cycle.

Cloudera Manager provides a wizard to easily migrate MapReduce configurations to YARN. For further information on migrating from MapReduce to YARN, see Importing MapReduce Configurations to YARN and Migrating from MapReduce v1 (MRv1) to MapReduce v2 (MRv2, YARN).

Configuring Alternatives Priority

The alternatives priority property determines which service—MapReduce or YARN—is used by clients to run MapReduce jobs; the service with a higher value of the property is used. In CDH 4, the MapReduce service alternatives priority is set to 92 and the YARN service is set to 91. In CDH 5, the values are reversed; the MapReduce service alternatives priority is set to 91 and the YARN service is set to 92.

You configure the alternatives priority as follows:
  1. Go to the MapReduce or YARN service.
  2. Select Configuration > View and Edit.
  3. Expand the Gateway Default Group node.
  4. In the Alternatives Priority property, set the priority value.
  5. Click Save Changes.
  6. Redeploy the client configuration.

Configuring the MapReduce Scheduler

The MapReduce service is configured by default to use the FairScheduler. You can change scheduler type to FIFO or Capacity Scheduler. You can also modify the Fair Scheduler and Capacity Scheduler configuration. For more information about these schedulers, see Fair Scheduler or Capacity Scheduler.

Setting the Task Scheduler Type

  1. Go to the MapReduce service.
  2. Select Configuration > View and Edit.
  3. Expand the JobTracker Default Group category and click the Classes category.
  4. Click the Value field of the Task Scheduler row. Select the scheduler you want to use and then click Save Changes.
  5. Restart the JobTracker to have the new configuration take effect:
    1. Click the Instances tab.
    2. Click the jobtracker role.
    3. Select Actions for Selected > Restart.

Modifying the Configuration of the Fair and Capacity Schedulers

  1. Go to the MapReduce service.
  2. Select Configuration > View and Edit.
  3. Click the Jobs subcategory of the JobTracker Default Group category.
  4. Make your changes as appropriate and click Save Changes.
  5. Click the refresh icon to have the new configuration take effect.

Configuring the MapReduce Service to Save Job History

Normally job history is saved on the host on which the JobTracker is running. You can configure JobTracker to write information about every job that completes to a specified HDFS location. By default, the information is retained for 30 days.

Enabling Map Reduce Job History To Be Saved To HDFS

  1. Create a folder in HDFS to contain the history information. When creating the folder in HDFS, set the owner and group to mapred:hadoop with permission setting 775.
  2. Go to the MapReduce service.
  3. Select Configuration > View and Edit.
  4. Expand the JobTracker Default Group category and click the Paths subcategory.
  5. Set the Completed Job History Location property to the location that you created in step 1.
  6. Click Save Changes.
  7. Restart the MapReduce service.

Setting the Job History Retention Duration

  1. Go to the MapReduce service.
  2. Select Configuration > View and Edit.
  3. Expand the Service-Wide category and click the Advanced subcategory.
  4. In the MapReduce Service Configuration Advanced Configuration Snippet for mapred-site.xml, specify the mapreduce.jobhistory.max-age-ms property value in milliseconds. For example, to set the value to 60 days, add the following:
    <property>
    <name>mapreduce.jobhistory.max-age-ms</name>
    <value>5184000000</value>
    </property>
  5. Click Save Changes.
  6. Restart the MapReduce service.

JobTracker High Availability

You can use Cloudera Manager to configure CDH 4.3 or later for JobTracker High Availability (HA). Although it is possible to configure JobTracker HA with CDH 4.2, it is not recommended. Rolling restart, decommissioning of TaskTrackers, and rolling upgrade of MapReduce from CDH 4.2 to CDH 4.3 are not supported when JobTracker HA is enabled.

A JobTracker HA cluster is configured with an active and a standby JobTracker. Only one JobTracker can be active at any point in time.

Cloudera Manager supports automatic failover of the JobTracker. It does not provide a mechanism to manually force a failover through the Cloudera Manager user interface.

For more information, see Configuring High Availability for the JobTracker or Configuring High Availability for the JobTracker in the CDH High Availability Guide.

  Important: Enabling or disabling JobTracker HA will cause the previous monitoring history to become unavailable.

Enabling JobTracker High Availability

The Enable High Availability workflow leads you through adding a second (standby) JobTracker:
  1. Go to the MapReduce service.
  2. Select Actions > Enable High Availability. A screen showing the hosts that are eligible to run a standby JobTracker displays. The host where the current JobTracker is running is not available as a choice.
  3. Select the host where you want the Standby JobTracker to be installed, and click Continue.
  4. Enter a directory location on the local filesystem for each JobTracker host. These directories will be used to store job configuration data.
    • You may enter more than one directory, though it is not required. The paths do not need to be the same on both JobTracker hosts.
    • If the directories you specify do not exist, they will be created with the appropriate permissions. If they already exist, they must be empty and have the appropriate permissions.
    • If the directories are not empty, Cloudera Manager will not delete the contents.
  5. Optionally use the checkbox under Advanced Options to force initialize the ZooKeeper znode for auto-failover.
  6. Click Continue. Cloudera Manager executes a set of commands that stop the MapReduce service, add a standby JobTracker and Failover controller, initialize the JobTracker High Availability state in ZooKeeper, create the job status directory, restart MapReduce, and redeploy the relevant client configurations.

Disabling JobTracker High Availability

  1. Go to the MapReduce service.
  2. Select Actions > Disable High Availability. A screen showing the hosts running the JobTrackers displays.
  3. Select which JobTracker (host) you want to remain as the single JobTracker, and click Continue. Cloudera Manager executes a set of commands that stop the MapReduce service, remove the standby JobTracker and the Failover Controller, restart the MapReduce service, and redeploy client configurations.

Configuring Client Overrides

A configuration property qualified with (Client Override) is a server-side setting that ignores whatever value a client might try to set for that property. It performs the same role as its unqualified counterpart, and applies the configuration to the service with the setting <final>true</final>.

For example, if you set the Map task heap property to 1 GB in the job configuration code and the service's heap property qualified with (Client Override) is set to 500 MB, then 500 MB is applied despite what you've asked the job to use.

Page generated September 3, 2015.