| Package | Description |
|---|---|
| org.apache.flink.runtime.checkpoint | |
| org.apache.flink.runtime.client | |
| org.apache.flink.runtime.clusterframework |
This package contains the cluster resource management functionality.
|
| org.apache.flink.runtime.dispatcher | |
| org.apache.flink.runtime.executiongraph | |
| org.apache.flink.runtime.executiongraph.failover | |
| org.apache.flink.runtime.jobgraph | |
| org.apache.flink.runtime.jobmaster | |
| org.apache.flink.runtime.messages.webmonitor |
This package contains the actor messages that are sent between the
JobManager and components that are interested in the status of
the JobManager.
|
| org.apache.flink.runtime.minicluster | |
| org.apache.flink.runtime.rest.messages.job | |
| org.apache.flink.runtime.webmonitor |
| Modifier and Type | Method and Description |
|---|---|
boolean |
CompletedCheckpoint.discardOnShutdown(JobStatus jobStatus) |
void |
CheckpointCoordinatorDeActivator.jobStatusChanges(org.apache.flink.api.common.JobID jobId,
JobStatus newJobStatus,
long timestamp,
Throwable error) |
void |
ZooKeeperCompletedCheckpointStore.shutdown(JobStatus jobStatus) |
void |
ZooKeeperCheckpointIDCounter.shutdown(JobStatus jobStatus) |
void |
StandaloneCompletedCheckpointStore.shutdown(JobStatus jobStatus) |
void |
StandaloneCheckpointIDCounter.shutdown(JobStatus jobStatus) |
void |
CompletedCheckpointStore.shutdown(JobStatus jobStatus)
Shuts down the store.
|
void |
CheckpointIDCounter.shutdown(JobStatus jobStatus)
Shuts the
CheckpointIDCounter service. |
void |
CheckpointCoordinator.shutdown(JobStatus jobStatus)
Shuts down the checkpoint coordinator.
|
| Modifier and Type | Method and Description |
|---|---|
JobStatus |
JobStatusMessage.getJobState() |
| Constructor and Description |
|---|
JobStatusMessage(org.apache.flink.api.common.JobID jobId,
String jobName,
JobStatus jobState,
long startTime) |
| Modifier and Type | Method and Description |
|---|---|
static ApplicationStatus |
ApplicationStatus.fromJobStatus(JobStatus jobStatus)
Derives the ApplicationStatus that should be used for a job that resulted in the given
job status.
|
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<JobStatus> |
Dispatcher.requestJobStatus(org.apache.flink.api.common.JobID jobId,
org.apache.flink.api.common.time.Time timeout) |
| Modifier and Type | Method and Description |
|---|---|
JobStatus |
ExecutionGraph.getState() |
JobStatus |
ArchivedExecutionGraph.getState() |
JobStatus |
AccessExecutionGraph.getState()
Returns the current
JobStatus for this execution graph. |
JobStatus |
ExecutionGraph.waitUntilTerminal() |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<JobStatus> |
ExecutionGraph.getTerminationFuture()
Returns the termination future of this
ExecutionGraph. |
| Modifier and Type | Method and Description |
|---|---|
long |
ExecutionGraph.getStatusTimestamp(JobStatus status) |
long |
ArchivedExecutionGraph.getStatusTimestamp(JobStatus status) |
long |
AccessExecutionGraph.getStatusTimestamp(JobStatus status)
Returns the timestamp for the given
JobStatus. |
void |
StatusListenerMessenger.jobStatusChanges(org.apache.flink.api.common.JobID jobId,
JobStatus newJobStatus,
long timestamp,
Throwable error) |
void |
JobStatusListener.jobStatusChanges(org.apache.flink.api.common.JobID jobId,
JobStatus newJobStatus,
long timestamp,
Throwable error)
This method is called whenever the status of the job changes.
|
| Constructor and Description |
|---|
ArchivedExecutionGraph(org.apache.flink.api.common.JobID jobID,
String jobName,
Map<JobVertexID,ArchivedExecutionJobVertex> tasks,
List<ArchivedExecutionJobVertex> verticesInCreationOrder,
long[] stateTimestamps,
JobStatus state,
ErrorInfo failureCause,
String jsonPlan,
StringifiedAccumulatorResult[] archivedUserAccumulators,
Map<String,org.apache.flink.util.SerializedValue<org.apache.flink.util.OptionalFailure<Object>>> serializedUserAccumulators,
org.apache.flink.api.common.ArchivedExecutionConfig executionConfig,
boolean isStoppable,
CheckpointCoordinatorConfiguration jobCheckpointingConfiguration,
CheckpointStatsSnapshot checkpointStatsSnapshot) |
| Modifier and Type | Method and Description |
|---|---|
JobStatus |
FailoverRegion.getState() |
| Modifier and Type | Method and Description |
|---|---|
static JobStatus |
JobStatus.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus[] |
JobStatus.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<JobStatus> |
JobMasterGateway.requestJobStatus(org.apache.flink.api.common.time.Time timeout)
Requests the current job status.
|
CompletableFuture<JobStatus> |
JobMaster.requestJobStatus(org.apache.flink.api.common.time.Time timeout) |
| Modifier and Type | Method and Description |
|---|---|
JobStatus |
JobIdsWithStatusOverview.JobIdWithStatus.getJobStatus() |
JobStatus |
JobDetails.getStatus() |
| Modifier and Type | Method and Description |
|---|---|
static JobsOverview |
JobsOverview.create(Collection<JobStatus> allJobsStatus) |
| Constructor and Description |
|---|
JobDetails(org.apache.flink.api.common.JobID jobId,
String jobName,
long startTime,
long endTime,
long duration,
JobStatus status,
long lastUpdateTime,
int[] tasksPerState,
int numTasks) |
JobIdWithStatus(org.apache.flink.api.common.JobID jobId,
JobStatus jobStatus) |
| Modifier and Type | Method and Description |
|---|---|
CompletableFuture<JobStatus> |
MiniCluster.getJobStatus(org.apache.flink.api.common.JobID jobId) |
| Modifier and Type | Method and Description |
|---|---|
JobStatus |
JobDetailsInfo.getJobStatus() |
| Modifier and Type | Method and Description |
|---|---|
Map<JobStatus,Long> |
JobDetailsInfo.getTimestamps() |
| Constructor and Description |
|---|
JobDetailsInfo(org.apache.flink.api.common.JobID jobId,
String name,
boolean isStoppable,
JobStatus jobStatus,
long startTime,
long endTime,
long duration,
long now,
Map<JobStatus,Long> timestamps,
Collection<JobDetailsInfo.JobVertexDetailsInfo> jobVertexInfos,
Map<ExecutionState,Integer> jobVerticesPerState,
String jsonPlan) |
| Constructor and Description |
|---|
JobDetailsInfo(org.apache.flink.api.common.JobID jobId,
String name,
boolean isStoppable,
JobStatus jobStatus,
long startTime,
long endTime,
long duration,
long now,
Map<JobStatus,Long> timestamps,
Collection<JobDetailsInfo.JobVertexDetailsInfo> jobVertexInfos,
Map<ExecutionState,Integer> jobVerticesPerState,
String jsonPlan) |
| Modifier and Type | Method and Description |
|---|---|
default CompletableFuture<JobStatus> |
RestfulGateway.requestJobStatus(org.apache.flink.api.common.JobID jobId,
org.apache.flink.api.common.time.Time timeout)
Request the
JobStatus of the given job. |
Copyright © 2014–2019 The Apache Software Foundation. All rights reserved.