Uses of Class
org.apache.hadoop.yarn.api.records.Container
Packages that use Container
Package
Description
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.
-
Uses of Container in org.apache.hadoop.yarn.api.protocolrecords
Methods in org.apache.hadoop.yarn.api.protocolrecords that return types with arguments of type ContainerModifier and TypeMethodDescriptionAllocateResponse.getAllocatedContainers()Get the list of newly allocatedContainerby theResourceManager.AllocateResponse.getContainersFromPreviousAttempts()Get the list of running containers as viewed byResourceManagerfrom previous application attempts which have not been reported to the Application Master yet.RegisterApplicationMasterResponse.getContainersFromPreviousAttempts()Get the list of running containers as viewed byResourceManagerfrom previous application attempts.Method parameters in org.apache.hadoop.yarn.api.protocolrecords with type arguments of type ContainerModifier and TypeMethodDescriptionRegisterApplicationMasterResponse.newInstance(Resource minCapability, Resource maxCapability, Map<ApplicationAccessType, String> acls, ByteBuffer key, List<Container> containersFromPreviousAttempt, String queue, List<NMToken> nmTokensFromPreviousAttempts) abstract voidSet the list of newly allocatedContainerby theResourceManager.abstract voidSet the list of running containers as viewed byResourceManagerfrom previous application attempts which have not been reported to the Application Master yet.abstract voidRegisterApplicationMasterResponse.setContainersFromPreviousAttempts(List<Container> containersFromPreviousAttempt) Set the list of running containers as viewed byResourceManagerfrom previous application attempts. -
Uses of Container in org.apache.hadoop.yarn.api.records
Methods in org.apache.hadoop.yarn.api.records that return ContainerModifier and TypeMethodDescriptionabstract ContainerUpdatedContainer.getContainer()Get theContainer.static ContainerContainer.newInstance(ContainerId containerId, NodeId nodeId, String nodeHttpAddress, Resource resource, Priority priority, Token containerToken) static ContainerContainer.newInstance(ContainerId containerId, NodeId nodeId, String nodeHttpAddress, Resource resource, Priority priority, Token containerToken, ExecutionType executionType) Methods in org.apache.hadoop.yarn.api.records with parameters of type ContainerModifier and TypeMethodDescriptionstatic UpdatedContainerUpdatedContainer.newInstance(ContainerUpdateType updateType, Container container) Static Factory method.abstract voidUpdatedContainer.setContainer(Container container) Set theContainer. -
Uses of Container in org.apache.hadoop.yarn.client.api
Methods in org.apache.hadoop.yarn.client.api with parameters of type ContainerModifier and TypeMethodDescriptionabstract voidNMClient.increaseContainerResource(Container container) Deprecated.voidAMRMClient.requestContainerResourceChange(Container container, Resource capability) Deprecated.abstract voidAMRMClient.requestContainerUpdate(Container container, UpdateContainerRequest updateContainerRequest) Request a container update before callingallocate.abstract Map<String,ByteBuffer> NMClient.startContainer(Container container, ContainerLaunchContext containerLaunchContext) Start an allocated container.abstract voidNMClient.updateContainerResource(Container container) Update the resources of a container. -
Uses of Container in org.apache.hadoop.yarn.client.api.async
Methods in org.apache.hadoop.yarn.client.api.async with parameters of type ContainerModifier and TypeMethodDescriptionabstract voidNMClientAsync.increaseContainerResourceAsync(Container container) Deprecated.voidAMRMClientAsync.requestContainerResourceChange(Container container, Resource capability) abstract voidAMRMClientAsync.requestContainerUpdate(Container container, UpdateContainerRequest updateContainerRequest) Request a container update before callingallocate.abstract voidNMClientAsync.startContainerAsync(Container container, ContainerLaunchContext containerLaunchContext) abstract voidNMClientAsync.updateContainerResourceAsync(Container container) Update the resources of a container.
AMRMClient.requestContainerUpdate(Container, UpdateContainerRequest)