Class VertexInputInfoStore
java.lang.Object
org.apache.flink.runtime.executiongraph.VertexInputInfoStore
A store contains all the
JobVertexInputInfos. Note that if a vertex has multiple job
edges connecting to the same intermediate result, their DistributionPattern must be the
same and therefore the JobVertexInputInfo will be the same.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionget(JobVertexID jobVertexId, IntermediateDataSetID resultId) Get aJobVertexInputInfo.voidput(JobVertexID jobVertexId, IntermediateDataSetID resultId, JobVertexInputInfo info) Put aJobVertexInputInfo.
-
Constructor Details
-
VertexInputInfoStore
public VertexInputInfoStore()
-
-
Method Details
-
put
Put aJobVertexInputInfo.- Parameters:
jobVertexId- the job vertex idresultId- the intermediate result idinfo- theJobVertexInputInfoto put
-
get
Get aJobVertexInputInfo.- Parameters:
jobVertexId- the job vertex idresultId- the intermediate result id- Returns:
- the
JobVertexInputInfoidentified by the job vertex id and intermediate result id
-