Class JobInformation
- java.lang.Object
-
- org.apache.flink.runtime.executiongraph.JobInformation
-
- All Implemented Interfaces:
Serializable
public class JobInformation extends Object implements Serializable
Container class for job information which is stored in theExecutionGraph
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobInformation(JobID jobId, JobType jobType, String jobName, SerializedValue<ExecutionConfig> serializedExecutionConfig, Configuration jobConfiguration, Collection<PermanentBlobKey> requiredJarFileBlobKeys, Collection<URL> requiredClasspathURLs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JobInformation
deepCopy()
boolean
equals(Object o)
UnmodifiableConfiguration
getJobConfiguration()
JobID
getJobId()
String
getJobName()
JobType
getJobType()
org.apache.flink.shaded.guava32.com.google.common.collect.ImmutableCollection<URL>
getRequiredClasspathURLs()
org.apache.flink.shaded.guava32.com.google.common.collect.ImmutableCollection<PermanentBlobKey>
getRequiredJarFileBlobKeys()
SerializedValue<ExecutionConfig>
getSerializedExecutionConfig()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
JobInformation
public JobInformation(JobID jobId, JobType jobType, String jobName, SerializedValue<ExecutionConfig> serializedExecutionConfig, Configuration jobConfiguration, Collection<PermanentBlobKey> requiredJarFileBlobKeys, Collection<URL> requiredClasspathURLs)
-
-
Method Detail
-
getJobId
public JobID getJobId()
-
getJobName
public String getJobName()
-
getJobType
public JobType getJobType()
-
getSerializedExecutionConfig
public SerializedValue<ExecutionConfig> getSerializedExecutionConfig()
-
getJobConfiguration
public UnmodifiableConfiguration getJobConfiguration()
-
getRequiredJarFileBlobKeys
public org.apache.flink.shaded.guava32.com.google.common.collect.ImmutableCollection<PermanentBlobKey> getRequiredJarFileBlobKeys()
-
getRequiredClasspathURLs
public org.apache.flink.shaded.guava32.com.google.common.collect.ImmutableCollection<URL> getRequiredClasspathURLs()
-
deepCopy
public JobInformation deepCopy()
-
-