public class KubernetesResourceManagerDriver extends AbstractResourceManagerDriver<KubernetesWorkerNode>
ResourceManagerDriver
for Kubernetes deployment.flinkClientConfig, flinkConfig, log
Constructor and Description |
---|
KubernetesResourceManagerDriver(Configuration flinkConfig,
FlinkKubeClient flinkKubeClient,
KubernetesResourceManagerDriverConfiguration configuration) |
Modifier and Type | Method and Description |
---|---|
void |
deregisterApplication(ApplicationStatus finalStatus,
String optionalDiagnostics)
The deployment specific code to deregister the application.
|
protected void |
initializeInternal()
Initialize the deployment specific components.
|
void |
releaseResource(KubernetesWorkerNode worker)
Release resource to the external resource manager.
|
CompletableFuture<KubernetesWorkerNode> |
requestResource(TaskExecutorProcessSpec taskExecutorProcessSpec)
Request resource from the external resource manager.
|
void |
terminate()
Terminate the deployment specific components.
|
getBlockedNodeRetriever, getIoExecutor, getMainThreadExecutor, getResourceEventHandler, initialize
public KubernetesResourceManagerDriver(Configuration flinkConfig, FlinkKubeClient flinkKubeClient, KubernetesResourceManagerDriverConfiguration configuration)
protected void initializeInternal() throws Exception
AbstractResourceManagerDriver
initializeInternal
in class AbstractResourceManagerDriver<KubernetesWorkerNode>
Exception
public void terminate() throws Exception
ResourceManagerDriver
Exception
public void deregisterApplication(ApplicationStatus finalStatus, @Nullable String optionalDiagnostics)
ResourceManagerDriver
This method also needs to make sure all pending containers that are not registered yet are returned.
finalStatus
- The application status to report.optionalDiagnostics
- A diagnostics message or null
.public CompletableFuture<KubernetesWorkerNode> requestResource(TaskExecutorProcessSpec taskExecutorProcessSpec)
ResourceManagerDriver
This method request a new resource from the external resource manager, and tries to launch a task manager inside the allocated resource, with respect to the provided taskExecutorProcessSpec. The returned future will be completed with a worker node in the deployment specific type, or exceptionally if the allocation has failed.
Note: The returned future could be cancelled by ResourceManager. This means ResourceManager don't need this resource anymore, Driver should try to cancel this request from the external resource manager.
Note: Completion of the returned future does not necessarily mean the success of resource
allocation and task manager launching. Allocation and launching failures can still happen
after the future completion. In such cases, ResourceEventHandler.onWorkerTerminated(org.apache.flink.runtime.clusterframework.types.ResourceID, java.lang.String)
will be called.
The future is guaranteed to be completed in the rpc main thread, before trying to launch
the task manager, thus before the task manager registration. It is also guaranteed that
ResourceEventHandler.onWorkerTerminated(org.apache.flink.runtime.clusterframework.types.ResourceID, java.lang.String)
will not be called on the requested worker,
until the returned future is completed successfully.
taskExecutorProcessSpec
- Resource specification of the requested worker.public void releaseResource(KubernetesWorkerNode worker)
ResourceManagerDriver
worker
- Worker node to be released, in the deployment specific type.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.