blob: 34d4ad193e1ca23682dcf721c63fb909b7f951a9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill.yarn.core;
import java.io.IOException;
import java.io.PrintStream;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.yarn.api.records.ApplicationSubmissionContext;
import org.apache.hadoop.yarn.api.records.ContainerLaunchContext;
import org.apache.hadoop.yarn.api.records.Priority;
import org.apache.hadoop.yarn.api.records.Resource;
import org.apache.hadoop.yarn.client.api.YarnClientApplication;
import org.apache.hadoop.yarn.conf.YarnConfiguration;
import org.apache.hadoop.yarn.util.Records;
/**
* Abstract description of a remote process launch that describes the many
* details needed to launch a process on a remote node. The YARN launch
* specification is a mess to work with; this class provides a simpler facade to
* gather the information, then turns around and builds the required YARN
* object.
* <p>
* Based on <a href="https://github.com/hortonworks/simple-yarn-app">Simple YARN
* App</a>.
*/
public class AppSpec extends LaunchSpec {
static final private Log LOG = LogFactory.getLog(LaunchSpec.class);
/**
* The memory required in the allocated container, in MB.
*/
public int memoryMb;
/**
* The number of YARN "vcores" (roughly equivalent to CPUs) to allocate to the
* process.
*/
public int vCores = 1;
/**
* The number of disk resources (that is, disk channels) used by the process.
* Available only on some YARN distributions. Fractional values allowed.
*/
public double disks;
/**
* The name of the application given to YARN. Appears in the YARN admin UI.
*/
public String appName;
/**
* The YARN queue in which to place the application launch request.
*/
public String queueName = "default";
public int priority = 1;
/**
* Whether to run the AM in unmanaged mode. Leave this false for production
* code.
*/
public boolean unmanaged;
/**
* Optional node label expression for the launch. Selects the nodes on which
* the task can run.
*/
public String nodeLabelExpr;
/**
* Given this generic description of an application, create the detailed YARN
* application submission context required to launch the application.
*
* @param conf
* the YARN configuration obtained by reading the Hadoop
* configuration files
* @param app
* the YARN definition of the client application to be populated from
* this generic description
* @return the completed application launch context for the given application
* @throws IOException
* if localized resources are not found in the distributed file
* system (such as HDFS)
*/
public ApplicationSubmissionContext createAppLaunchContext(
YarnConfiguration conf, YarnClientApplication app) throws IOException {
ContainerLaunchContext amContainer = createLaunchContext(conf);
// Finally, set-up ApplicationSubmissionContext for the application
ApplicationSubmissionContext appContext = app
.getApplicationSubmissionContext();
appContext.setApplicationName(appName); // application name
appContext.setAMContainerSpec(amContainer);
appContext.setResource(getCapability());
appContext.setQueue(queueName); // queue
appContext.setPriority(Priority.newInstance(priority));
if (!DoYUtil.isBlank(nodeLabelExpr)) {
LOG.info(
"Requesting to run the AM using node expression: " + nodeLabelExpr);
appContext.setNodeLabelExpression(nodeLabelExpr);
}
appContext.setUnmanagedAM(unmanaged);
// Only try the AM once. It will fail if things are misconfigured. Retrying
// is unlikely
// to fix the configuration problem.
appContext.setMaxAppAttempts(1);
// TODO: Security tokens
return appContext;
}
public Resource getCapability() {
// Set up resource type requirements for ApplicationMaster
Resource capability = Records.newRecord(Resource.class);
capability.setMemory(memoryMb);
capability.setVirtualCores(vCores);
DoYUtil.callSetDiskIfExists(capability, disks);
return capability;
}
@Override
public void dump(PrintStream out) {
out.print("Memory (MB): ");
out.println(memoryMb);
out.print("Vcores: ");
out.println(vCores);
out.print("Disks: ");
out.println(disks);
out.print("Application Name: ");
out.println(appName);
out.print("Queue: ");
out.println(queueName);
out.print("Priority: ");
out.println(priority);
super.dump(out);
}
}