YARN-8761. Service AM support for decommissioning component instances.

Contributed by Billie Rinaldi

(cherry picked from commit 4c465f5535)
This commit is contained in:
Eric Yang 2018-11-12 19:53:10 -05:00 committed by Billie Rinaldi
parent 6229469574
commit 3d552b24ba
22 changed files with 548 additions and 32 deletions

View File

@ -746,4 +746,32 @@ public class ApiServiceClient extends AppAdminClient {
} }
return result; return result;
} }
@Override
public int actionDecommissionInstances(String appName, List<String>
componentInstances) throws IOException, YarnException {
int result = EXIT_SUCCESS;
try {
Service service = new Service();
service.setName(appName);
for (String instance : componentInstances) {
String componentName = ServiceApiUtil.parseComponentName(instance);
Component component = service.getComponent(componentName);
if (component == null) {
component = new Component();
component.setName(componentName);
service.addComponent(component);
}
component.addDecommissionedInstance(instance);
}
String buffer = jsonSerDeser.toJson(service);
ClientResponse response = getApiClient(getServicePath(appName))
.put(ClientResponse.class, buffer);
result = processResponse(response);
} catch (Exception e) {
LOG.error("Fail to decommission instance: ", e);
result = EXIT_EXCEPTION_THROWN;
}
return result;
}
} }

View File

@ -469,6 +469,12 @@ public class ApiServer {
&& updateServiceData.getLifetime() > 0) { && updateServiceData.getLifetime() > 0) {
return updateLifetime(appName, updateServiceData, ugi); return updateLifetime(appName, updateServiceData, ugi);
} }
for (Component c : updateServiceData.getComponents()) {
if (c.getDecommissionedInstances().size() > 0) {
return decommissionInstances(updateServiceData, ugi);
}
}
} catch (UndeclaredThrowableException e) { } catch (UndeclaredThrowableException e) {
return formatResponse(Status.BAD_REQUEST, return formatResponse(Status.BAD_REQUEST,
e.getCause().getMessage()); e.getCause().getMessage());
@ -824,6 +830,40 @@ public class ApiServer {
}); });
} }
private Response decommissionInstances(Service service, UserGroupInformation
ugi) throws IOException, InterruptedException {
String appName = service.getName();
Response response = Response.status(Status.BAD_REQUEST).build();
List<String> instances = new ArrayList<>();
for (Component c : service.getComponents()) {
instances.addAll(c.getDecommissionedInstances());
}
Integer result = ugi.doAs(new PrivilegedExceptionAction<Integer>() {
@Override
public Integer run() throws YarnException, IOException {
int result = 0;
ServiceClient sc = new ServiceClient();
sc.init(YARN_CONFIG);
sc.start();
result = sc
.actionDecommissionInstances(appName, instances);
sc.close();
return Integer.valueOf(result);
}
});
if (result == EXIT_SUCCESS) {
String message = "Service " + appName + " has successfully " +
"decommissioned instances.";
LOG.info(message);
ServiceStatus status = new ServiceStatus();
status.setDiagnostics(message);
status.setState(ServiceState.ACCEPTED);
response = formatResponse(Status.ACCEPTED, status);
}
return response;
}
private Service getServiceFromClient(UserGroupInformation ugi, private Service getServiceFromClient(UserGroupInformation ugi,
String serviceName) throws IOException, InterruptedException { String serviceName) throws IOException, InterruptedException {

View File

@ -410,6 +410,11 @@ definitions:
type: integer type: integer
format: int64 format: int64
description: Number of containers for this component (optional). If not specified, the service level global number_of_containers takes effect. description: Number of containers for this component (optional). If not specified, the service level global number_of_containers takes effect.
decommissioned_instances:
type: array
items:
type: string
description: List of decommissioned component instances.
containers: containers:
type: array type: array
description: Containers of a started component. Specifying a value for this attribute for the POST payload raises a validation error. This blob is available only in the GET response of a started service. description: Containers of a started component. Specifying a value for this attribute for the POST payload raises a validation error. This blob is available only in the GET response of a started service.

View File

@ -23,6 +23,8 @@ import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto;
@ -65,4 +67,8 @@ public interface ClientAMProtocol {
CancelUpgradeResponseProto cancelUpgrade( CancelUpgradeResponseProto cancelUpgrade(
CancelUpgradeRequestProto request) throws IOException, YarnException; CancelUpgradeRequestProto request) throws IOException, YarnException;
DecommissionCompInstancesResponseProto decommissionCompInstances(
DecommissionCompInstancesRequestProto request) throws IOException,
YarnException;
} }

View File

@ -35,6 +35,8 @@ import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.ComponentCountProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.ComponentCountProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto;
@ -60,6 +62,7 @@ import java.io.IOException;
import java.net.InetSocketAddress; import java.net.InetSocketAddress;
import java.util.List; import java.util.List;
import static org.apache.hadoop.yarn.service.component.ComponentEventType.DECOMMISSION_INSTANCE;
import static org.apache.hadoop.yarn.service.component.ComponentEventType.FLEX; import static org.apache.hadoop.yarn.service.component.ComponentEventType.FLEX;
public class ClientAMService extends AbstractService public class ClientAMService extends AbstractService
@ -220,4 +223,21 @@ public class ClientAMService extends AbstractService
context.scheduler.getDispatcher().getEventHandler().handle(event); context.scheduler.getDispatcher().getEventHandler().handle(event);
return CancelUpgradeResponseProto.newBuilder().build(); return CancelUpgradeResponseProto.newBuilder().build();
} }
@Override
public DecommissionCompInstancesResponseProto decommissionCompInstances(
DecommissionCompInstancesRequestProto request)
throws IOException, YarnException {
if (!request.getCompInstancesList().isEmpty()) {
for (String instance : request.getCompInstancesList()) {
String componentName = ServiceApiUtil.parseComponentName(instance);
ComponentEvent event = new ComponentEvent(componentName,
DECOMMISSION_INSTANCE).setInstanceName(instance);
context.scheduler.getDispatcher().getEventHandler().handle(event);
LOG.info("Decommissioning component {} instance {}", componentName,
instance);
}
}
return DecommissionCompInstancesResponseProto.newBuilder().build();
}
} }

View File

@ -79,6 +79,10 @@ public class Component implements Serializable {
@XmlElement(name = "number_of_containers") @XmlElement(name = "number_of_containers")
private Long numberOfContainers = null; private Long numberOfContainers = null;
@JsonProperty("decommissioned_instances")
@XmlElement(name = "decommissioned_instances")
private List<String> decommissionedInstances = new ArrayList<>();
@JsonProperty("run_privileged_container") @JsonProperty("run_privileged_container")
@XmlElement(name = "run_privileged_container") @XmlElement(name = "run_privileged_container")
private Boolean runPrivilegedContainer = false; private Boolean runPrivilegedContainer = false;
@ -295,6 +299,28 @@ public class Component implements Serializable {
this.numberOfContainers = numberOfContainers; this.numberOfContainers = numberOfContainers;
} }
/**
* A list of decommissioned component instances.
**/
public Component decommissionedInstances(List<String>
decommissionedInstances) {
this.decommissionedInstances = decommissionedInstances;
return this;
}
@ApiModelProperty(example = "null", value = "A list of decommissioned component instances.")
public List<String> getDecommissionedInstances() {
return decommissionedInstances;
}
public void setDecommissionedInstances(List<String> decommissionedInstances) {
this.decommissionedInstances = decommissionedInstances;
}
public void addDecommissionedInstance(String componentInstanceName) {
this.decommissionedInstances.add(componentInstanceName);
}
@ApiModelProperty(example = "null", value = "Containers of a started component. Specifying a value for this attribute for the POST payload raises a validation error. This blob is available only in the GET response of a started service.") @ApiModelProperty(example = "null", value = "Containers of a started component. Specifying a value for this attribute for the POST payload raises a validation error. This blob is available only in the GET response of a started service.")
public List<Container> getContainers() { public List<Container> getContainers() {
return containers; return containers;

View File

@ -58,6 +58,7 @@ import org.apache.hadoop.yarn.ipc.YarnRPC;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.ComponentCountProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.ComponentCountProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesResponseProto;
@ -389,6 +390,61 @@ public class ServiceClient extends AppAdminClient implements SliderExitCodes,
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }
@Override
public int actionDecommissionInstances(String appName,
List<String> componentInstances) throws IOException, YarnException {
checkAppExistOnHdfs(appName);
Service persistedService = ServiceApiUtil.loadService(fs, appName);
if (StringUtils.isEmpty(persistedService.getId())) {
throw new YarnException(
persistedService.getName() + " appId is null, may be not submitted " +
"to YARN yet");
}
cachedAppInfo.put(persistedService.getName(), new AppInfo(
ApplicationId.fromString(persistedService.getId()), persistedService
.getKerberosPrincipal().getPrincipalName()));
for (String instance : componentInstances) {
String componentName = ServiceApiUtil.parseComponentName(
ServiceApiUtil.parseAndValidateComponentInstanceName(instance,
appName, getConfig()));
Component component = persistedService.getComponent(componentName);
if (component == null) {
throw new IllegalArgumentException(instance + " does not exist !");
}
if (!component.getDecommissionedInstances().contains(instance)) {
component.addDecommissionedInstance(instance);
component.setNumberOfContainers(Math.max(0, component
.getNumberOfContainers() - 1));
}
}
ServiceApiUtil.writeAppDefinition(fs, persistedService);
ApplicationReport appReport =
yarnClient.getApplicationReport(ApplicationId.fromString(
persistedService.getId()));
if (appReport.getYarnApplicationState() != RUNNING) {
String message =
persistedService.getName() + " is at " + appReport
.getYarnApplicationState() + " state, decommission can only be " +
"invoked when service is running";
LOG.error(message);
throw new YarnException(message);
}
if (StringUtils.isEmpty(appReport.getHost())) {
throw new YarnException(persistedService.getName() + " AM hostname is " +
"empty");
}
ClientAMProtocol proxy =
createAMProxy(persistedService.getName(), appReport);
DecommissionCompInstancesRequestProto.Builder requestBuilder =
DecommissionCompInstancesRequestProto.newBuilder();
requestBuilder.addAllCompInstances(componentInstances);
proxy.decommissionCompInstances(requestBuilder.build());
return EXIT_SUCCESS;
}
@Override @Override
public int actionCleanUp(String appName, String userName) throws public int actionCleanUp(String appName, String userName) throws
IOException, YarnException { IOException, YarnException {
@ -592,9 +648,7 @@ public class ServiceClient extends AppAdminClient implements SliderExitCodes,
throw new YarnException("Components " + componentCounts.keySet() throw new YarnException("Components " + componentCounts.keySet()
+ " do not exist in app definition."); + " do not exist in app definition.");
} }
jsonSerDeser ServiceApiUtil.writeAppDefinition(fs, persistedService);
.save(fs.getFileSystem(), ServiceApiUtil.getServiceJsonPath(fs, serviceName),
persistedService, true);
ApplicationId appId = getAppId(serviceName); ApplicationId appId = getAppId(serviceName);
if (appId == null) { if (appId == null) {

View File

@ -57,6 +57,7 @@ import org.apache.hadoop.yarn.service.monitor.probe.MonitorUtils;
import org.apache.hadoop.yarn.service.monitor.probe.Probe; import org.apache.hadoop.yarn.service.monitor.probe.Probe;
import org.apache.hadoop.yarn.service.containerlaunch.ContainerLaunchService; import org.apache.hadoop.yarn.service.containerlaunch.ContainerLaunchService;
import org.apache.hadoop.yarn.service.provider.ProviderUtils; import org.apache.hadoop.yarn.service.provider.ProviderUtils;
import org.apache.hadoop.yarn.service.utils.ServiceApiUtil;
import org.apache.hadoop.yarn.service.utils.ServiceUtils; import org.apache.hadoop.yarn.service.utils.ServiceUtils;
import org.apache.hadoop.yarn.state.InvalidStateTransitionException; import org.apache.hadoop.yarn.state.InvalidStateTransitionException;
import org.apache.hadoop.yarn.state.MultipleArcTransition; import org.apache.hadoop.yarn.state.MultipleArcTransition;
@ -142,6 +143,9 @@ public class Component implements EventHandler<ComponentEvent> {
// container recovered on AM restart // container recovered on AM restart
.addTransition(INIT, INIT, CONTAINER_RECOVERED, .addTransition(INIT, INIT, CONTAINER_RECOVERED,
new ContainerRecoveredTransition()) new ContainerRecoveredTransition())
// instance decommissioned
.addTransition(INIT, INIT, DECOMMISSION_INSTANCE,
new DecommissionInstanceTransition())
// container recovered in AM heartbeat // container recovered in AM heartbeat
.addTransition(FLEXING, FLEXING, CONTAINER_RECOVERED, .addTransition(FLEXING, FLEXING, CONTAINER_RECOVERED,
@ -161,6 +165,9 @@ public class Component implements EventHandler<ComponentEvent> {
new FlexComponentTransition()) new FlexComponentTransition())
.addTransition(FLEXING, EnumSet.of(UPGRADING, FLEXING, STABLE), .addTransition(FLEXING, EnumSet.of(UPGRADING, FLEXING, STABLE),
CHECK_STABLE, new CheckStableTransition()) CHECK_STABLE, new CheckStableTransition())
// instance decommissioned
.addTransition(FLEXING, FLEXING, DECOMMISSION_INSTANCE,
new DecommissionInstanceTransition())
// container failed while stable // container failed while stable
.addTransition(STABLE, FLEXING, CONTAINER_COMPLETED, .addTransition(STABLE, FLEXING, CONTAINER_COMPLETED,
@ -173,6 +180,10 @@ public class Component implements EventHandler<ComponentEvent> {
// For flex down, go to STABLE state // For flex down, go to STABLE state
.addTransition(STABLE, EnumSet.of(STABLE, FLEXING), .addTransition(STABLE, EnumSet.of(STABLE, FLEXING),
FLEX, new FlexComponentTransition()) FLEX, new FlexComponentTransition())
// instance decommissioned
.addTransition(STABLE, STABLE, DECOMMISSION_INSTANCE,
new DecommissionInstanceTransition())
// upgrade component
.addTransition(STABLE, UPGRADING, UPGRADE, .addTransition(STABLE, UPGRADING, UPGRADE,
new NeedsUpgradeTransition()) new NeedsUpgradeTransition())
.addTransition(STABLE, CANCEL_UPGRADING, CANCEL_UPGRADE, .addTransition(STABLE, CANCEL_UPGRADING, CANCEL_UPGRADE,
@ -187,6 +198,9 @@ public class Component implements EventHandler<ComponentEvent> {
CHECK_STABLE, new CheckStableTransition()) CHECK_STABLE, new CheckStableTransition())
.addTransition(UPGRADING, UPGRADING, CONTAINER_COMPLETED, .addTransition(UPGRADING, UPGRADING, CONTAINER_COMPLETED,
new CompletedAfterUpgradeTransition()) new CompletedAfterUpgradeTransition())
// instance decommissioned
.addTransition(UPGRADING, UPGRADING, DECOMMISSION_INSTANCE,
new DecommissionInstanceTransition())
.addTransition(CANCEL_UPGRADING, EnumSet.of(CANCEL_UPGRADING, FLEXING, .addTransition(CANCEL_UPGRADING, EnumSet.of(CANCEL_UPGRADING, FLEXING,
STABLE), CHECK_STABLE, new CheckStableTransition()) STABLE), CHECK_STABLE, new CheckStableTransition())
@ -194,7 +208,9 @@ public class Component implements EventHandler<ComponentEvent> {
CONTAINER_COMPLETED, new CompletedAfterUpgradeTransition()) CONTAINER_COMPLETED, new CompletedAfterUpgradeTransition())
.addTransition(CANCEL_UPGRADING, FLEXING, CONTAINER_ALLOCATED, .addTransition(CANCEL_UPGRADING, FLEXING, CONTAINER_ALLOCATED,
new ContainerAllocatedTransition()) new ContainerAllocatedTransition())
// instance decommissioned
.addTransition(CANCEL_UPGRADING, CANCEL_UPGRADING,
DECOMMISSION_INSTANCE, new DecommissionInstanceTransition())
.installTopology(); .installTopology();
public Component( public Component(
@ -241,6 +257,11 @@ public class Component implements EventHandler<ComponentEvent> {
ComponentInstanceId id = ComponentInstanceId id =
new ComponentInstanceId(instanceIdCounter.getAndIncrement(), new ComponentInstanceId(instanceIdCounter.getAndIncrement(),
componentSpec.getName()); componentSpec.getName());
while (componentSpec.getDecommissionedInstances().contains(id
.getCompInstanceName())) {
id = new ComponentInstanceId(instanceIdCounter.getAndIncrement(),
componentSpec.getName());
}
ComponentInstance instance = new ComponentInstance(this, id); ComponentInstance instance = new ComponentInstance(this, id);
compInstances.put(instance.getCompInstanceName(), instance); compInstances.put(instance.getCompInstanceName(), instance);
pendingInstances.add(instance); pendingInstances.add(instance);
@ -377,6 +398,38 @@ public class Component implements EventHandler<ComponentEvent> {
} }
} }
private static class DecommissionInstanceTransition extends BaseTransition {
@Override
public void transition(Component component, ComponentEvent event) {
String instanceName = event.getInstanceName();
String hostnameSuffix = component.getHostnameSuffix();
if (instanceName.endsWith(hostnameSuffix)) {
instanceName = instanceName.substring(0,
instanceName.length() - hostnameSuffix.length());
}
if (component.getComponentSpec().getDecommissionedInstances()
.contains(instanceName)) {
LOG.info("Instance {} already decommissioned", instanceName);
return;
}
component.getComponentSpec().addDecommissionedInstance(instanceName);
ComponentInstance instance = component.getComponentInstance(instanceName);
if (instance == null) {
LOG.info("Instance was null for decommissioned instance {}",
instanceName);
return;
}
// remove the instance
component.compInstances.remove(instance.getCompInstanceName());
component.pendingInstances.remove(instance);
component.scheduler.getServiceMetrics().containersDesired.decr();
component.componentMetrics.containersDesired.decr();
component.getComponentSpec().setNumberOfContainers(component
.getComponentSpec().getNumberOfContainers() - 1);
instance.destroy();
}
}
private static class ContainerAllocatedTransition extends BaseTransition { private static class ContainerAllocatedTransition extends BaseTransition {
@Override @Override
public void transition(Component component, ComponentEvent event) { public void transition(Component component, ComponentEvent event) {
@ -807,10 +860,8 @@ public class Component implements EventHandler<ComponentEvent> {
private void setDesiredContainers(int n) { private void setDesiredContainers(int n) {
int delta = n - scheduler.getServiceMetrics().containersDesired.value(); int delta = n - scheduler.getServiceMetrics().containersDesired.value();
if (delta > 0) { if (delta != 0) {
scheduler.getServiceMetrics().containersDesired.incr(delta); scheduler.getServiceMetrics().containersDesired.incr(delta);
} else {
scheduler.getServiceMetrics().containersDesired.decr(delta);
} }
componentMetrics.containersDesired.set(n); componentMetrics.containersDesired.set(n);
} }
@ -1202,4 +1253,9 @@ public class Component implements EventHandler<ComponentEvent> {
RestartPolicyEnum restartPolicyEnum = getComponentSpec().getRestartPolicy(); RestartPolicyEnum restartPolicyEnum = getComponentSpec().getRestartPolicy();
return getRestartPolicyHandler(restartPolicyEnum); return getRestartPolicyHandler(restartPolicyEnum);
} }
public String getHostnameSuffix() {
return ServiceApiUtil.getHostnameSuffix(context.service.getName(),
scheduler.getConfig());
}
} }

View File

@ -31,6 +31,7 @@ public class ComponentEvent extends AbstractEvent<ComponentEventType> {
private final ComponentEventType type; private final ComponentEventType type;
private Container container; private Container container;
private ComponentInstance instance; private ComponentInstance instance;
private String instanceName;
private ContainerStatus status; private ContainerStatus status;
private ContainerId containerId; private ContainerId containerId;
private org.apache.hadoop.yarn.service.api.records.Component targetSpec; private org.apache.hadoop.yarn.service.api.records.Component targetSpec;
@ -86,6 +87,15 @@ public class ComponentEvent extends AbstractEvent<ComponentEventType> {
return this; return this;
} }
public String getInstanceName() {
return instanceName;
}
public ComponentEvent setInstanceName(String instanceName) {
this.instanceName = instanceName;
return this;
}
public ContainerStatus getStatus() { public ContainerStatus getStatus() {
return status; return status;
} }

View File

@ -26,5 +26,6 @@ public enum ComponentEventType {
CONTAINER_COMPLETED, CONTAINER_COMPLETED,
CANCEL_UPGRADE, CANCEL_UPGRADE,
UPGRADE, UPGRADE,
CHECK_STABLE CHECK_STABLE,
DECOMMISSION_INSTANCE
} }

View File

@ -21,9 +21,7 @@ package org.apache.hadoop.yarn.service.component.instance;
import com.google.common.annotations.VisibleForTesting; import com.google.common.annotations.VisibleForTesting;
import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path; import org.apache.hadoop.fs.Path;
import org.apache.hadoop.registry.client.api.RegistryConstants;
import org.apache.hadoop.registry.client.binding.RegistryPathUtils; import org.apache.hadoop.registry.client.binding.RegistryPathUtils;
import org.apache.hadoop.registry.client.binding.RegistryUtils;
import org.apache.hadoop.registry.client.types.ServiceRecord; import org.apache.hadoop.registry.client.types.ServiceRecord;
import org.apache.hadoop.registry.client.types.yarn.PersistencePolicies; import org.apache.hadoop.registry.client.types.yarn.PersistencePolicies;
import org.apache.hadoop.util.StringUtils; import org.apache.hadoop.util.StringUtils;
@ -984,21 +982,7 @@ public class ComponentInstance implements EventHandler<ComponentInstanceEvent>,
} }
public String getHostname() { public String getHostname() {
String domain = getComponent().getScheduler().getConfig() return getCompInstanceName() + getComponent().getHostnameSuffix();
.get(RegistryConstants.KEY_DNS_DOMAIN);
String hostname;
if (domain == null || domain.isEmpty()) {
hostname = MessageFormat
.format("{0}.{1}.{2}", getCompInstanceName(),
getComponent().getContext().service.getName(),
RegistryUtils.currentUser());
} else {
hostname = MessageFormat
.format("{0}.{1}.{2}.{3}", getCompInstanceName(),
getComponent().getContext().service.getName(),
RegistryUtils.currentUser(), domain);
}
return hostname;
} }
@Override @Override

View File

@ -34,6 +34,8 @@ import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto;
@ -154,4 +156,16 @@ public class ClientAMProtocolPBClientImpl
} }
return null; return null;
} }
@Override
public DecommissionCompInstancesResponseProto decommissionCompInstances(
DecommissionCompInstancesRequestProto request)
throws IOException, YarnException {
try {
return proxy.decommissionCompInstances(null, request);
} catch (ServiceException e) {
RPCUtil.unwrapAndThrowException(e);
}
return null;
}
} }

View File

@ -25,6 +25,8 @@ import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CancelUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.CompInstancesUpgradeResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.DecommissionCompInstancesResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsRequestProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.FlexComponentsResponseProto;
import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto; import org.apache.hadoop.yarn.proto.ClientAMProtocol.GetCompInstancesRequestProto;
@ -129,4 +131,15 @@ public class ClientAMProtocolPBServiceImpl implements ClientAMProtocolPB {
throw new ServiceException(e); throw new ServiceException(e);
} }
} }
@Override
public DecommissionCompInstancesResponseProto decommissionCompInstances(
RpcController controller, DecommissionCompInstancesRequestProto
request) throws ServiceException {
try {
return real.decommissionCompInstances(request);
} catch (IOException | YarnException e) {
throw new ServiceException(e);
}
}
} }

View File

@ -55,6 +55,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import java.io.IOException; import java.io.IOException;
import java.text.MessageFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;
import java.util.HashSet; import java.util.HashSet;
@ -547,6 +548,13 @@ public class ServiceApiUtil {
return appJson; return appJson;
} }
public static Path writeAppDefinition(SliderFileSystem fs, Service service)
throws IOException {
Path appJson = getServiceJsonPath(fs, service.getName());
jsonSerDeser.save(fs.getFileSystem(), appJson, service, true);
return appJson;
}
public static List<Container> getLiveContainers(Service service, public static List<Container> getLiveContainers(Service service,
List<String> componentInstances) List<String> componentInstances)
throws YarnException { throws YarnException {
@ -656,9 +664,53 @@ public class ServiceApiUtil {
return containerNeedUpgrade; return containerNeedUpgrade;
} }
private static String parseComponentName(String componentInstanceName) public static String getHostnameSuffix(String serviceName, org.apache
.hadoop.conf.Configuration conf) {
String domain = conf.get(RegistryConstants.KEY_DNS_DOMAIN);
String hostnameSuffix;
if (domain == null || domain.isEmpty()) {
hostnameSuffix = MessageFormat
.format(".{0}.{1}", serviceName, RegistryUtils.currentUser());
} else {
hostnameSuffix = MessageFormat
.format(".{0}.{1}.{2}", serviceName,
RegistryUtils.currentUser(), domain);
}
return hostnameSuffix;
}
public static String parseAndValidateComponentInstanceName(String
instanceOrHostname, String serviceName, org.apache.hadoop.conf
.Configuration conf) throws IllegalArgumentException {
int idx = instanceOrHostname.indexOf('.');
String hostnameSuffix = getHostnameSuffix(serviceName, conf);
if (idx != -1) {
if (!instanceOrHostname.endsWith(hostnameSuffix)) {
throw new IllegalArgumentException("Specified hostname " +
instanceOrHostname + " does not have the expected format " +
"componentInstanceName" +
hostnameSuffix);
}
instanceOrHostname = instanceOrHostname.substring(0, instanceOrHostname
.length() - hostnameSuffix.length());
}
idx = instanceOrHostname.indexOf('.');
if (idx != -1) {
throw new IllegalArgumentException("Specified hostname " +
instanceOrHostname + " does not have the expected format " +
"componentInstanceName" +
hostnameSuffix);
}
return instanceOrHostname;
}
public static String parseComponentName(String componentInstanceName)
throws YarnException { throws YarnException {
int idx = componentInstanceName.lastIndexOf('-'); int idx = componentInstanceName.indexOf('.');
if (idx != -1) {
componentInstanceName = componentInstanceName.substring(0, idx);
}
idx = componentInstanceName.lastIndexOf('-');
if (idx == -1) { if (idx == -1) {
throw new YarnException("Invalid component instance (" + throw new YarnException("Invalid component instance (" +
componentInstanceName + ") name."); componentInstanceName + ") name.");

View File

@ -36,6 +36,8 @@ service ClientAMProtocolService {
(CompInstancesUpgradeResponseProto); (CompInstancesUpgradeResponseProto);
rpc getCompInstances(GetCompInstancesRequestProto) returns rpc getCompInstances(GetCompInstancesRequestProto) returns
(GetCompInstancesResponseProto); (GetCompInstancesResponseProto);
rpc decommissionCompInstances(DecommissionCompInstancesRequestProto)
returns (DecommissionCompInstancesResponseProto);
} }
message FlexComponentsRequestProto { message FlexComponentsRequestProto {
@ -103,3 +105,10 @@ message GetCompInstancesRequestProto {
message GetCompInstancesResponseProto { message GetCompInstancesResponseProto {
optional string compInstances = 1; optional string compInstances = 1;
} }
message DecommissionCompInstancesRequestProto {
repeated string compInstances = 1;
}
message DecommissionCompInstancesResponseProto {
}

View File

@ -246,7 +246,7 @@ public class ServiceTestUtils {
if (yarnCluster == null) { if (yarnCluster == null) {
yarnCluster = yarnCluster =
new MiniYARNCluster(TestYarnNativeServices.class.getSimpleName(), 1, new MiniYARNCluster(this.getClass().getSimpleName(), 1,
numNodeManager, 1, 1); numNodeManager, 1, 1);
yarnCluster.init(conf); yarnCluster.init(conf);
yarnCluster.start(); yarnCluster.start();

View File

@ -0,0 +1,147 @@
/**
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.hadoop.yarn.service.component;
import org.apache.commons.io.FileUtils;
import org.apache.hadoop.registry.client.binding.RegistryUtils;
import org.apache.hadoop.test.GenericTestUtils;
import org.apache.hadoop.yarn.exceptions.YarnException;
import org.apache.hadoop.yarn.service.ServiceTestUtils;
import org.apache.hadoop.yarn.service.api.records.Component;
import org.apache.hadoop.yarn.service.api.records.Container;
import org.apache.hadoop.yarn.service.api.records.Service;
import org.apache.hadoop.yarn.service.api.records.ServiceState;
import org.apache.hadoop.yarn.service.client.ServiceClient;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import java.io.IOException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.TimeoutException;
/**
* Test decommissioning component instances.
*/
public class TestComponentDecommissionInstances extends ServiceTestUtils {
private static final Logger LOG =
LoggerFactory.getLogger(TestComponentDecommissionInstances.class);
private static final String APP_NAME = "test-decommission";
private static final String COMPA = "compa";
@Rule
public TemporaryFolder tmpFolder = new TemporaryFolder();
@Before
public void setup() throws Exception {
File tmpYarnDir = new File("target", "tmp");
FileUtils.deleteQuietly(tmpYarnDir);
}
@After
public void tearDown() throws IOException {
shutdown();
}
@Test
public void testDecommissionInstances() throws Exception {
setupInternal(3);
ServiceClient client = createClient(getConf());
Service exampleApp = new Service();
exampleApp.setName(APP_NAME);
exampleApp.setVersion("v1");
Component comp = createComponent(COMPA, 6L, "sleep 1000");
exampleApp.addComponent(comp);
client.actionCreate(exampleApp);
waitForServiceToBeStable(client, exampleApp);
checkInstances(client, COMPA + "-0", COMPA + "-1", COMPA + "-2",
COMPA + "-3", COMPA + "-4", COMPA + "-5");
client.actionDecommissionInstances(APP_NAME, Arrays.asList(COMPA + "-1",
COMPA + "-5"));
waitForNumInstances(client, 4);
checkInstances(client, COMPA + "-0", COMPA + "-2", COMPA + "-3",
COMPA + "-4");
// Stop and start service
client.actionStop(APP_NAME);
waitForServiceToBeInState(client, exampleApp, ServiceState.STOPPED);
client.actionStart(APP_NAME);
waitForServiceToBeStable(client, exampleApp);
checkInstances(client, COMPA + "-0", COMPA + "-2", COMPA + "-3",
COMPA + "-4");
Map<String, String> compCounts = new HashMap<>();
compCounts.put(COMPA, "5");
client.actionFlex(APP_NAME, compCounts);
waitForNumInstances(client, 5);
checkInstances(client, COMPA + "-0", COMPA + "-2", COMPA + "-3",
COMPA + "-4", COMPA + "-6");
client.actionDecommissionInstances(APP_NAME, Arrays.asList(COMPA + "-0."
+ APP_NAME + "." + RegistryUtils.currentUser()));
waitForNumInstances(client, 4);
checkInstances(client, COMPA + "-2", COMPA + "-3",
COMPA + "-4", COMPA + "-6");
}
private static void waitForNumInstances(ServiceClient client, int
expectedInstances) throws TimeoutException, InterruptedException {
GenericTestUtils.waitFor(() -> {
try {
Service retrievedApp = client.getStatus(APP_NAME);
return retrievedApp.getComponent(COMPA).getContainers().size() ==
expectedInstances && retrievedApp.getState() == ServiceState.STABLE;
} catch (Exception e) {
e.printStackTrace();
return false;
}
}, 2000, 200000);
}
private static void checkInstances(ServiceClient client, String... instances)
throws IOException, YarnException {
Service service = client.getStatus(APP_NAME);
Component component = service.getComponent(COMPA);
Assert.assertEquals("Service state should be STABLE", ServiceState.STABLE,
service.getState());
Assert.assertEquals(instances.length + " containers are expected to be " +
"running", instances.length, component.getContainers().size());
Set<String> existingInstances = new HashSet<>();
for (Container cont : component.getContainers()) {
existingInstances.add(cont.getComponentInstanceName());
}
Assert.assertEquals(instances.length + " instances are expected to be " +
"running", instances.length, existingInstances.size());
for (String instance : instances) {
Assert.assertTrue("Expected instance did not exist " + instance,
existingInstances.contains(instance));
}
}
}

View File

@ -99,6 +99,7 @@ public class ApplicationCLI extends YarnCLI {
public static final String DESTROY_CMD = "destroy"; public static final String DESTROY_CMD = "destroy";
public static final String FLEX_CMD = "flex"; public static final String FLEX_CMD = "flex";
public static final String COMPONENT = "component"; public static final String COMPONENT = "component";
public static final String DECOMMISSION = "decommission";
public static final String ENABLE_FAST_LAUNCH = "enableFastLaunch"; public static final String ENABLE_FAST_LAUNCH = "enableFastLaunch";
public static final String UPGRADE_CMD = "upgrade"; public static final String UPGRADE_CMD = "upgrade";
public static final String UPGRADE_EXPRESS = "express"; public static final String UPGRADE_EXPRESS = "express";
@ -239,6 +240,10 @@ public class ApplicationCLI extends YarnCLI {
"yarn-service. If ID is provided, the appType will be looked up. " + "yarn-service. If ID is provided, the appType will be looked up. " +
"Supports -appTypes option to specify which client implementation " + "Supports -appTypes option to specify which client implementation " +
"to use."); "to use.");
opts.addOption(DECOMMISSION, true, "Decommissions component " +
"instances for an application / long-running service. Requires " +
"-instances option. Supports -appTypes option to specify which " +
"client implementation to use.");
opts.addOption(COMPONENT, true, "Works with -flex option to change " + opts.addOption(COMPONENT, true, "Works with -flex option to change " +
"the number of components/containers running for an application / " + "the number of components/containers running for an application / " +
"long-running service. Supports absolute or relative changes, such " + "long-running service. Supports absolute or relative changes, such " +
@ -258,9 +263,12 @@ public class ApplicationCLI extends YarnCLI {
"application specification file."); "application specification file.");
opts.addOption(COMPONENT_INSTS, true, "Works with -upgrade option to " + opts.addOption(COMPONENT_INSTS, true, "Works with -upgrade option to " +
"trigger the upgrade of specified component instances of the " + "trigger the upgrade of specified component instances of the " +
"application."); "application. Also works with -decommission option to decommission " +
"specified component instances. Multiple instances should be " +
"separated by commas.");
opts.addOption(COMPONENTS, true, "Works with -upgrade option to " + opts.addOption(COMPONENTS, true, "Works with -upgrade option to " +
"trigger the upgrade of specified components of the application."); "trigger the upgrade of specified components of the application. " +
"Multiple components should be separated by commas.");
opts.addOption(UPGRADE_FINALIZE, false, "Works with -upgrade option to " + opts.addOption(UPGRADE_FINALIZE, false, "Works with -upgrade option to " +
"finalize the upgrade."); "finalize the upgrade.");
opts.addOption(UPGRADE_AUTO_FINALIZE, false, "Works with -upgrade and " + opts.addOption(UPGRADE_AUTO_FINALIZE, false, "Works with -upgrade and " +
@ -290,6 +298,8 @@ public class ApplicationCLI extends YarnCLI {
opts.getOption(COMPONENTS).setArgName("Components"); opts.getOption(COMPONENTS).setArgName("Components");
opts.getOption(COMPONENTS).setValueSeparator(','); opts.getOption(COMPONENTS).setValueSeparator(',');
opts.getOption(COMPONENTS).setArgs(Option.UNLIMITED_VALUES); opts.getOption(COMPONENTS).setArgs(Option.UNLIMITED_VALUES);
opts.getOption(DECOMMISSION).setArgName("Application Name");
opts.getOption(DECOMMISSION).setArgs(1);
} else if (title != null && title.equalsIgnoreCase(APPLICATION_ATTEMPT)) { } else if (title != null && title.equalsIgnoreCase(APPLICATION_ATTEMPT)) {
opts.addOption(STATUS_CMD, true, opts.addOption(STATUS_CMD, true,
"Prints the status of the application attempt."); "Prints the status of the application attempt.");
@ -708,6 +718,18 @@ public class ApplicationCLI extends YarnCLI {
} }
return client.actionCancelUpgrade(appName); return client.actionCancelUpgrade(appName);
} }
} else if (cliParser.hasOption(DECOMMISSION)) {
if (!cliParser.hasOption(COMPONENT_INSTS) ||
hasAnyOtherCLIOptions(cliParser, opts, DECOMMISSION, COMPONENT_INSTS,
APP_TYPE_CMD)) {
printUsage(title, opts);
return exitCode;
}
String[] instances = cliParser.getOptionValues(COMPONENT_INSTS);
String[] appNameAndType = getAppNameAndType(cliParser, DECOMMISSION);
return AppAdminClient.createAppAdminClient(appNameAndType[1], getConf())
.actionDecommissionInstances(appNameAndType[0],
Arrays.asList(instances));
} else { } else {
syserr.println("Invalid Command Usage : "); syserr.println("Invalid Command Usage : ");
printUsage(title, opts); printUsage(title, opts);

View File

@ -2162,6 +2162,15 @@ public class TestYarnCLI {
pw.println(" -components <Components> Works with -upgrade option to"); pw.println(" -components <Components> Works with -upgrade option to");
pw.println(" trigger the upgrade of specified"); pw.println(" trigger the upgrade of specified");
pw.println(" components of the application."); pw.println(" components of the application.");
pw.println(" Multiple components should be");
pw.println(" separated by commas.");
pw.println(" -decommission <Application Name> Decommissions component");
pw.println(" instances for an application /");
pw.println(" long-running service. Requires");
pw.println(" -instances option. Supports");
pw.println(" -appTypes option to specify");
pw.println(" which client implementation to");
pw.println(" use.");
pw.println(" -destroy <Application Name> Destroys a saved application"); pw.println(" -destroy <Application Name> Destroys a saved application");
pw.println(" specification and removes all"); pw.println(" specification and removes all");
pw.println(" application data permanently."); pw.println(" application data permanently.");
@ -2203,7 +2212,11 @@ public class TestYarnCLI {
pw.println(" -instances <Component Instances> Works with -upgrade option to"); pw.println(" -instances <Component Instances> Works with -upgrade option to");
pw.println(" trigger the upgrade of specified"); pw.println(" trigger the upgrade of specified");
pw.println(" component instances of the"); pw.println(" component instances of the");
pw.println(" application."); pw.println(" application. Also works with");
pw.println(" -decommission option to");
pw.println(" decommission specified component");
pw.println(" instances. Multiple instances");
pw.println(" should be separated by commas.");
pw.println(" -kill <Application ID> Kills the application. Set of"); pw.println(" -kill <Application ID> Kills the application. Set of");
pw.println(" applications can be provided"); pw.println(" applications can be provided");
pw.println(" separated with space"); pw.println(" separated with space");

View File

@ -313,4 +313,16 @@ public abstract class AppAdminClient extends CompositeService {
@Unstable @Unstable
public abstract int actionCancelUpgrade(String appName) throws IOException, public abstract int actionCancelUpgrade(String appName) throws IOException,
YarnException; YarnException;
/**
* Decommission component instances of a long running service.
*
* @param appName the name of the application.
* @param componentInstances the name of the component instances.
*/
@Public
@Unstable
public abstract int actionDecommissionInstances(String appName,
List<String> componentInstances) throws IOException, YarnException;
} }

View File

@ -50,10 +50,13 @@ Usage: `yarn app [options] `
| -appTypes \<Types\> | Works with -list to filter applications based on input comma-separated list of application types. | | -appTypes \<Types\> | Works with -list to filter applications based on input comma-separated list of application types. |
| -changeQueue \<Queue Name\> | Moves application to a new queue. ApplicationId can be passed using 'appId' option. 'movetoqueue' command is deprecated, this new command 'changeQueue' performs same functionality. | | -changeQueue \<Queue Name\> | Moves application to a new queue. ApplicationId can be passed using 'appId' option. 'movetoqueue' command is deprecated, this new command 'changeQueue' performs same functionality. |
| -component \<Component Name\> \<Count\> | Works with -flex option to change the number of components/containers running for an application / long-running service. Supports absolute or relative changes, such as +1, 2, or -3. | | -component \<Component Name\> \<Count\> | Works with -flex option to change the number of components/containers running for an application / long-running service. Supports absolute or relative changes, such as +1, 2, or -3. |
| -components \<Components\> | Works with -upgrade option to trigger the upgrade of specified components of the application. Multiple components should be separated by commas. |
| -decommission \<Application Name\> | Decommissions component instances for an application / long-running service. Requires -instances option. Supports -appTypes option to specify which client implementation to use. |
| -destroy \<Application Name\> | Destroys a saved application specification and removes all application data permanently. Supports -appTypes option to specify which client implementation to use. | | -destroy \<Application Name\> | Destroys a saved application specification and removes all application data permanently. Supports -appTypes option to specify which client implementation to use. |
| -enableFastLaunch | Uploads AM dependencies to HDFS to make future launches faster. Supports -appTypes option to specify which client implementation to use. | | -enableFastLaunch | Uploads AM dependencies to HDFS to make future launches faster. Supports -appTypes option to specify which client implementation to use. |
| -flex \<Application Name or ID\> | Changes number of running containers for a component of an application / long-running service. Requires -component option. If name is provided, appType must be provided unless it is the default yarn-service. If ID is provided, the appType will be looked up. Supports -appTypes option to specify which client implementation to use. | | -flex \<Application Name or ID\> | Changes number of running containers for a component of an application / long-running service. Requires -component option. If name is provided, appType must be provided unless it is the default yarn-service. If ID is provided, the appType will be looked up. Supports -appTypes option to specify which client implementation to use. |
| -help | Displays help for all commands. | | -help | Displays help for all commands. |
| -instances \<Component Instances\> | Works with -upgrade option to trigger the upgrade of specified component instances of the application. Also works with -decommission option to decommission specified component instances. Multiple instances should be separated by commas. |
| -kill \<Application ID\> | Kills the application. Set of applications can be provided separated with space | | -kill \<Application ID\> | Kills the application. Set of applications can be provided separated with space |
| -launch \<Application Name\> \<File Name\> | Launches application from specification file (saves specification and starts application). Options -updateLifetime and -changeQueue can be specified to alter the values provided in the file. Supports -appTypes option to specify which client implementation to use. | | -launch \<Application Name\> \<File Name\> | Launches application from specification file (saves specification and starts application). Options -updateLifetime and -changeQueue can be specified to alter the values provided in the file. Supports -appTypes option to specify which client implementation to use. |
| -list | List applications. Supports optional use of -appTypes to filter applications based on application type, -appStates to filter applications based on application state and -appTags to filter applications based on application tag. | | -list | List applications. Supports optional use of -appTypes to filter applications based on application type, -appStates to filter applications based on application state and -appTags to filter applications based on application tag. |

View File

@ -231,6 +231,7 @@ One or more components of the service. If the service is HBase say, then the com
|launch_command|The custom launch command of this component (optional for DOCKER component, required otherwise). When specified at the component level, it overrides the value specified at the global level (if any). If docker image supports ENTRYPOINT, launch_command is delimited by comma(,) instead of space.|false|string|| |launch_command|The custom launch command of this component (optional for DOCKER component, required otherwise). When specified at the component level, it overrides the value specified at the global level (if any). If docker image supports ENTRYPOINT, launch_command is delimited by comma(,) instead of space.|false|string||
|resource|Resource of this component (optional). If not specified, the service level global resource takes effect.|false|Resource|| |resource|Resource of this component (optional). If not specified, the service level global resource takes effect.|false|Resource||
|number_of_containers|Number of containers for this component (optional). If not specified, the service level global number_of_containers takes effect.|false|integer (int64)|| |number_of_containers|Number of containers for this component (optional). If not specified, the service level global number_of_containers takes effect.|false|integer (int64)||
|decommissioned_instances|List of decommissioned component instances.|false|string array||
|containers|Containers of a started component. Specifying a value for this attribute for the POST payload raises a validation error. This blob is available only in the GET response of a started service.|false|Container array|| |containers|Containers of a started component. Specifying a value for this attribute for the POST payload raises a validation error. This blob is available only in the GET response of a started service.|false|Container array||
|run_privileged_container|Run all containers of this component in privileged mode (YARN-4262).|false|boolean|| |run_privileged_container|Run all containers of this component in privileged mode (YARN-4262).|false|boolean||
|placement_policy|Advanced scheduling and placement policies for all containers of this component.|false|PlacementPolicy|| |placement_policy|Advanced scheduling and placement policies for all containers of this component.|false|PlacementPolicy||