jobmanager.archive.fs.dir |
(none) |
String |
Dictionary for JobManager to store the archives of completed jobs. |
jobmanager.bind-host |
(none) |
String |
The local address of the network interface that the job manager binds to. If not configured, '0.0.0.0' will be used. |
jobmanager.execution.attempts-history-size |
16 |
Integer |
The maximum number of prior execution attempts kept in history. |
jobmanager.execution.failover-strategy |
"region" |
String |
This option specifies how the job computation recovers from task failures. Accepted values are:- 'full': Restarts all tasks to recover the job.
- 'region': Restarts all tasks that could be affected by the task failure. More details can be found here.
|
jobmanager.memory.enable-jvm-direct-memory-limit |
false |
Boolean |
Whether to enable the JVM direct memory limit of the JobManager process (-XX:MaxDirectMemorySize). The limit will be set to the value of 'jobmanager.memory.off-heap.size' option. |
jobmanager.memory.flink.size |
(none) |
MemorySize |
Total Flink Memory size for the JobManager. This includes all the memory that a JobManager consumes, except for JVM Metaspace and JVM Overhead. It consists of JVM Heap Memory and Off-heap Memory. See also 'jobmanager.memory.process.size' for total process memory size configuration. |
jobmanager.memory.heap.size |
(none) |
MemorySize |
JVM Heap Memory size for JobManager. The minimum recommended JVM Heap size is 128.000mb (134217728 bytes). |
jobmanager.memory.jvm-metaspace.size |
256 mb |
MemorySize |
JVM Metaspace Size for the JobManager. |
jobmanager.memory.jvm-overhead.fraction |
0.1 |
Float |
Fraction of Total Process Memory to be reserved for JVM Overhead. This is off-heap memory reserved for JVM overhead, such as thread stack space, compile cache, etc. This includes native memory but not direct memory, and will not be counted when Flink calculates JVM max direct memory size parameter. The size of JVM Overhead is derived to make up the configured fraction of the Total Process Memory. If the derived size is less or greater than the configured min or max size, the min or max size will be used. The exact size of JVM Overhead can be explicitly specified by setting the min and max size to the same value. |
jobmanager.memory.jvm-overhead.max |
1 gb |
MemorySize |
Max JVM Overhead size for the JobManager. This is off-heap memory reserved for JVM overhead, such as thread stack space, compile cache, etc. This includes native memory but not direct memory, and will not be counted when Flink calculates JVM max direct memory size parameter. The size of JVM Overhead is derived to make up the configured fraction of the Total Process Memory. If the derived size is less or greater than the configured min or max size, the min or max size will be used. The exact size of JVM Overhead can be explicitly specified by setting the min and max size to the same value. |
jobmanager.memory.jvm-overhead.min |
192 mb |
MemorySize |
Min JVM Overhead size for the JobManager. This is off-heap memory reserved for JVM overhead, such as thread stack space, compile cache, etc. This includes native memory but not direct memory, and will not be counted when Flink calculates JVM max direct memory size parameter. The size of JVM Overhead is derived to make up the configured fraction of the Total Process Memory. If the derived size is less or greater than the configured min or max size, the min or max size will be used. The exact size of JVM Overhead can be explicitly specified by setting the min and max size to the same value. |
jobmanager.memory.off-heap.size |
128 mb |
MemorySize |
Off-heap Memory size for JobManager. This option covers all off-heap memory usage including direct and native memory allocation. The JVM direct memory limit of the JobManager process (-XX:MaxDirectMemorySize) will be set to this value if the limit is enabled by 'jobmanager.memory.enable-jvm-direct-memory-limit'. |
jobmanager.memory.process.size |
(none) |
MemorySize |
Total Process Memory size for the JobManager. This includes all the memory that a JobManager JVM process consumes, consisting of Total Flink Memory, JVM Metaspace, and JVM Overhead. In containerized setups, this should be set to the container memory. See also 'jobmanager.memory.flink.size' for Total Flink Memory size configuration. |
jobmanager.retrieve-taskmanager-hostname |
true |
Boolean |
Flag indicating whether JobManager would retrieve canonical host name of TaskManager during registration. If the option is set to "false", TaskManager registration with JobManager could be faster, since no reverse DNS lookup is performed. However, local input split assignment (such as for HDFS files) may be impacted. |
jobmanager.rpc.address |
(none) |
String |
The config parameter defining the network address to connect to for communication with the job manager. This value is only interpreted in setups where a single JobManager with static name or address exists (simple standalone setups, or container setups with dynamic service name resolution). It is not used in many high-availability setups, when a leader-election service (like ZooKeeper) is used to elect and discover the JobManager leader from potentially multiple standby JobManagers. |
jobmanager.rpc.bind-port |
(none) |
Integer |
The local RPC port that the JobManager binds to. If not configured, the external port (configured by 'jobmanager.rpc.port') will be used. |
jobmanager.rpc.port |
6123 |
Integer |
The config parameter defining the network port to connect to for communication with the job manager. Like jobmanager.rpc.address, this value is only interpreted in setups where a single JobManager with static name/address and port exists (simple standalone setups, or container setups with dynamic service name resolution). This config option is not used in many high-availability setups, when a leader-election service (like ZooKeeper) is used to elect and discover the JobManager leader from potentially multiple standby JobManagers. |
jobstore.cache-size |
52428800 |
Long |
The job store cache size in bytes which is used to keep completed jobs in memory. |
jobstore.expiration-time |
3600 |
Long |
The time in seconds after which a completed job expires and is purged from the job store. |
jobstore.max-capacity |
2147483647 |
Integer |
The max number of completed jobs that can be kept in the job store. |
slot.idle.timeout |
50000 |
Long |
The timeout in milliseconds for a idle slot in Slot Pool. |
slot.request.timeout |
300000 |
Long |
The timeout in milliseconds for requesting a slot from Slot Pool. |