Skip to content

Commit

Permalink
[hotfix] Minor JobManager doc fix
Browse files Browse the repository at this point in the history
This closes apache#1430

It seems AbstractJobVertex class no longer exists but the doc's link still points to it.
  • Loading branch information
jaoki authored and StephanEwen committed Dec 6, 2015
1 parent 4003352 commit 526e5af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/internals/job_scheduling.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ During job execution, the JobManager keeps track of distributed tasks, decides w
and reacts to finished tasks or execution failures.

The JobManager receives the {% gh_link /flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/ "JobGraph" %},
which is a representation of the data flow consisting of operators ({% gh_link /flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/AbstractJobVertex.java "JobVertex" %})
which is a representation of the data flow consisting of operators ({% gh_link /flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/JobVertex.java "JobVertex" %})
and intermediate results ({% gh_link /flink-runtime/src/main/java/org/apache/flink/runtime/jobgraph/IntermediateDataSet.java "IntermediateDataSet" %}).
Each operator has properies, like the parallelism and the code that it executes.
In addition, the JobGraph has a set of attached libraries, that are neccessary to execute the code of the operators.
Expand Down

0 comments on commit 526e5af

Please sign in to comment.