public abstract class AbstractHaServices extends Object implements HighAvailabilityServices
getLeaderPathForResourceManager(), getLeaderPathForDispatcher(), getLeaderPathForJobManager(org.apache.flink.api.common.JobID), getLeaderPathForRestServer(). The returned leader name is the ConfigMap name in Kubernetes and
child path in Zookeeper.
close() and closeAndCleanupAllData() should be implemented to destroy the
resources.
The abstract class is also responsible for determining which component service should be
reused. For example, jobResultStore is created once and could be reused many times.
| 限定符和类型 | 字段和说明 |
|---|---|
protected org.apache.flink.configuration.Configuration |
configuration
The runtime configuration.
|
protected Executor |
ioExecutor
The executor to run external IO operations on.
|
protected org.slf4j.Logger |
logger |
DEFAULT_JOB_ID, DEFAULT_LEADER_ID| 限定符 | 构造器和说明 |
|---|---|
protected |
AbstractHaServices(org.apache.flink.configuration.Configuration config,
Executor ioExecutor,
BlobStoreService blobStoreService,
JobResultStore jobResultStore) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
close()
Closes the high availability services, releasing all resources.
|
void |
closeAndCleanupAllData()
Closes the high availability services (releasing all resources) and deletes all data stored
by these services in external stores.
|
BlobStore |
createBlobStore()
Creates the BLOB store in which BLOBs are stored in a highly-available fashion.
|
protected abstract CheckpointRecoveryFactory |
createCheckpointRecoveryFactory()
Create the checkpoint recovery factory for the job manager.
|
protected abstract JobGraphStore |
createJobGraphStore()
Create the submitted job graph store for the job manager.
|
protected abstract LeaderElectionService |
createLeaderElectionService(String leaderName)
Create leader election service with specified leaderName.
|
protected abstract LeaderRetrievalService |
createLeaderRetrievalService(String leaderName)
Create leader retrieval service with specified leaderName.
|
CheckpointRecoveryFactory |
getCheckpointRecoveryFactory()
Gets the checkpoint recovery factory for the job manager.
|
LeaderElectionService |
getClusterRestEndpointLeaderElectionService()
Gets the leader election service for the cluster's rest endpoint.
|
LeaderRetrievalService |
getClusterRestEndpointLeaderRetriever()
Get the leader retriever for the cluster's rest endpoint.
|
LeaderElectionService |
getDispatcherLeaderElectionService()
Gets the leader election service for the cluster's dispatcher.
|
LeaderRetrievalService |
getDispatcherLeaderRetriever()
Gets the leader retriever for the dispatcher.
|
JobGraphStore |
getJobGraphStore()
Gets the submitted job graph store for the job manager.
|
LeaderElectionService |
getJobManagerLeaderElectionService(org.apache.flink.api.common.JobID jobID)
Gets the leader election service for the given job.
|
LeaderRetrievalService |
getJobManagerLeaderRetriever(org.apache.flink.api.common.JobID jobID)
Gets the leader retriever for the job JobMaster which is responsible for the given job.
|
LeaderRetrievalService |
getJobManagerLeaderRetriever(org.apache.flink.api.common.JobID jobID,
String defaultJobManagerAddress)
Gets the leader retriever for the job JobMaster which is responsible for the given job.
|
JobResultStore |
getJobResultStore()
Gets the store that holds information about the state of finished jobs.
|
protected abstract String |
getLeaderPathForDispatcher()
Get the leader path for Dispatcher.
|
protected abstract String |
getLeaderPathForJobManager(org.apache.flink.api.common.JobID jobID)
Get the leader path for specific JobManager.
|
protected abstract String |
getLeaderPathForResourceManager()
Get the leader path for ResourceManager.
|
protected abstract String |
getLeaderPathForRestServer()
Get the leader path for RestServer.
|
LeaderElectionService |
getResourceManagerLeaderElectionService()
Gets the leader election service for the cluster's resource manager.
|
LeaderRetrievalService |
getResourceManagerLeaderRetriever()
Gets the leader retriever for the cluster's resource manager.
|
CompletableFuture<Void> |
globalCleanupAsync(org.apache.flink.api.common.JobID jobID,
Executor executor)
globalCleanupAsync is expected to be called from the main thread. |
protected abstract void |
internalCleanup()
Clean up the meta data in the distributed system(e.g.
|
protected abstract void |
internalCleanupJobData(org.apache.flink.api.common.JobID jobID)
Clean up the meta data in the distributed system(e.g.
|
protected abstract void |
internalClose()
Closes the components which is used for external operations(e.g.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetWebMonitorLeaderElectionService, getWebMonitorLeaderRetrieverprotected final org.slf4j.Logger logger
protected final Executor ioExecutor
protected final org.apache.flink.configuration.Configuration configuration
protected AbstractHaServices(org.apache.flink.configuration.Configuration config,
Executor ioExecutor,
BlobStoreService blobStoreService,
JobResultStore jobResultStore)
public LeaderRetrievalService getResourceManagerLeaderRetriever()
HighAvailabilityServicespublic LeaderRetrievalService getDispatcherLeaderRetriever()
HighAvailabilityServicespublic LeaderRetrievalService getJobManagerLeaderRetriever(org.apache.flink.api.common.JobID jobID)
HighAvailabilityServicesgetJobManagerLeaderRetriever 在接口中 HighAvailabilityServicesjobID - The identifier of the job.public LeaderRetrievalService getJobManagerLeaderRetriever(org.apache.flink.api.common.JobID jobID, String defaultJobManagerAddress)
HighAvailabilityServicesgetJobManagerLeaderRetriever 在接口中 HighAvailabilityServicesjobID - The identifier of the job.defaultJobManagerAddress - JobManager address which will be returned by a static leader
retrieval service.public LeaderRetrievalService getClusterRestEndpointLeaderRetriever()
ClientHighAvailabilityServicesgetClusterRestEndpointLeaderRetriever 在接口中 ClientHighAvailabilityServicesgetClusterRestEndpointLeaderRetriever 在接口中 HighAvailabilityServicespublic LeaderElectionService getResourceManagerLeaderElectionService()
HighAvailabilityServicesgetResourceManagerLeaderElectionService 在接口中 HighAvailabilityServicespublic LeaderElectionService getDispatcherLeaderElectionService()
HighAvailabilityServicesgetDispatcherLeaderElectionService 在接口中 HighAvailabilityServicespublic LeaderElectionService getJobManagerLeaderElectionService(org.apache.flink.api.common.JobID jobID)
HighAvailabilityServicesgetJobManagerLeaderElectionService 在接口中 HighAvailabilityServicesjobID - The identifier of the job running the election.public LeaderElectionService getClusterRestEndpointLeaderElectionService()
HighAvailabilityServicesgetClusterRestEndpointLeaderElectionService 在接口中 HighAvailabilityServicespublic CheckpointRecoveryFactory getCheckpointRecoveryFactory() throws Exception
HighAvailabilityServicesgetCheckpointRecoveryFactory 在接口中 HighAvailabilityServicesExceptionpublic JobGraphStore getJobGraphStore() throws Exception
HighAvailabilityServicesgetJobGraphStore 在接口中 HighAvailabilityServicesException - if the submitted job graph store could not be createdpublic JobResultStore getJobResultStore() throws Exception
HighAvailabilityServicesgetJobResultStore 在接口中 HighAvailabilityServicesException - if job result store could not be createdpublic BlobStore createBlobStore()
HighAvailabilityServicescreateBlobStore 在接口中 HighAvailabilityServicespublic void close()
throws Exception
HighAvailabilityServicesThis method does not delete or clean up any data stored in external stores (file systems, ZooKeeper, etc). Another instance of the high availability services will be able to recover the job.
If an exception occurs during closing services, this method will attempt to continue closing other services and report exceptions only after all services have been attempted to be closed.
close 在接口中 AutoCloseableclose 在接口中 HighAvailabilityServicesException - Thrown, if an exception occurred while closing these services.public void closeAndCleanupAllData()
throws Exception
HighAvailabilityServicesAfter this method was called, the any job or session that was managed by these high availability services will be unrecoverable.
If an exception occurs during cleanup, this method will attempt to continue the cleanup and report exceptions only after all cleanup steps have been attempted.
closeAndCleanupAllData 在接口中 HighAvailabilityServicesException - Thrown, if an exception occurred while closing these services or cleaning
up data stored by them.public CompletableFuture<Void> globalCleanupAsync(org.apache.flink.api.common.JobID jobID, Executor executor)
GloballyCleanableResourceglobalCleanupAsync is expected to be called from the main thread. Heavy IO tasks
should be outsourced into the passed cleanupExecutor. Thread-safety must be ensured.globalCleanupAsync 在接口中 GloballyCleanableResourceglobalCleanupAsync 在接口中 HighAvailabilityServicesjobID - The JobID of the job for which the local data should be cleaned up.executor - The fallback executor for IO-heavy operations.protected abstract LeaderElectionService createLeaderElectionService(String leaderName)
leaderName - ConfigMap name in Kubernetes or child node path in Zookeeper.protected abstract LeaderRetrievalService createLeaderRetrievalService(String leaderName)
leaderName - ConfigMap name in Kubernetes or child node path in Zookeeper.protected abstract CheckpointRecoveryFactory createCheckpointRecoveryFactory() throws Exception
Exceptionprotected abstract JobGraphStore createJobGraphStore() throws Exception
Exception - if the submitted job graph store could not be createdprotected abstract void internalClose()
throws Exception
Exception - if the close operation failedprotected abstract void internalCleanup()
throws Exception
If an exception occurs during internal cleanup, we will continue the cleanup in closeAndCleanupAllData() and report exceptions only after all cleanup steps have been
attempted.
Exception - when do the cleanup operation on external storage.protected abstract void internalCleanupJobData(org.apache.flink.api.common.JobID jobID)
throws Exception
jobID - The identifier of the job to cleanup.Exception - when do the cleanup operation on external storage.protected abstract String getLeaderPathForResourceManager()
protected abstract String getLeaderPathForDispatcher()
protected abstract String getLeaderPathForJobManager(org.apache.flink.api.common.JobID jobID)
jobID - job idprotected abstract String getLeaderPathForRestServer()
Copyright © 2014–2022 The Apache Software Foundation. All rights reserved.