Interface JobVertex.InitializeOnMasterContext
-
- All Known Implementing Classes:
SimpleInitializeOnMasterContext
- Enclosing class:
- JobVertex
public static interface JobVertex.InitializeOnMasterContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClassLoadergetClassLoader()The class loader for user defined code.intgetExecutionParallelism()The actual parallelism this vertex will be run with.
-
-
-
Method Detail
-
getClassLoader
ClassLoader getClassLoader()
The class loader for user defined code.
-
getExecutionParallelism
int getExecutionParallelism()
The actual parallelism this vertex will be run with. In contrast, theJobVertex.getParallelism()is the original parallelism set when creating theJobGraphand might be updated e.g. by theAdaptiveScheduler.
-
-