Class ContaineredTaskManagerParameters
java.lang.Object
org.apache.flink.runtime.clusterframework.ContaineredTaskManagerParameters
- All Implemented Interfaces:
Serializable
This class describes the basic parameters for launching a TaskManager process.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionContaineredTaskManagerParameters(TaskExecutorProcessSpec taskExecutorProcessSpec, HashMap<String, String> taskManagerEnv) -
Method Summary
Modifier and TypeMethodDescriptioncreate(org.apache.flink.configuration.Configuration config, TaskExecutorProcessSpec taskExecutorProcessSpec) Computes the parameters to be used to start a TaskManager Java process.toString()
-
Constructor Details
-
ContaineredTaskManagerParameters
public ContaineredTaskManagerParameters(TaskExecutorProcessSpec taskExecutorProcessSpec, HashMap<String, String> taskManagerEnv)
-
-
Method Details
-
getTaskExecutorProcessSpec
-
taskManagerEnv
-
toString
-
create
public static ContaineredTaskManagerParameters create(org.apache.flink.configuration.Configuration config, TaskExecutorProcessSpec taskExecutorProcessSpec) Computes the parameters to be used to start a TaskManager Java process.- Parameters:
config- The Flink configuration.taskExecutorProcessSpec- The resource specifics of the task executor.- Returns:
- The parameters to start the TaskManager processes with.
-