[
https://issues.apache.org/jira/browse/FLINK-8475?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16362259#comment-16362259
]
ASF GitHub Bot commented on FLINK-8475:
---------------------------------------
Github user aljoscha commented on a diff in the pull request:
https://github.com/apache/flink/pull/5471#discussion_r167854639
--- Diff: docs/ops/config.md ---
@@ -268,59 +268,7 @@ These parameters configure the default HDFS used by
Flink. Setups that do not sp
### TaskManager
-The following parameters configure Flink's TaskManagers.
-
-
-- `taskmanager.hostname`: The hostname of the network interface that the
TaskManager binds to. By default, the TaskManager searches for network
interfaces that can connect to the JobManager and other TaskManagers. This
option can be used to define a hostname if that strategy fails for some reason.
Because different TaskManagers need different values for this option, it
usually is specified in an additional non-shared TaskManager-specific config
file.
-
-- `taskmanager.rpc.port`: The task manager's IPC port (DEFAULT: **0**,
which lets the OS choose a free port). Flink also accepts a list of ports
("50100,50101"), ranges ("50100-50200") or a combination of both. It is
recommended to set a range of ports to avoid collisions when multiple
TaskManagers are running on the same machine.
-
-- `taskmanager.data.port`: The task manager's port used for data exchange
operations (DEFAULT: **0**, which lets the OS choose a free port).
-
-- `taskmanager.data.ssl.enabled`: Enable SSL support for the taskmanager
data transport. This is applicable only when the global ssl flag
security.ssl.enabled is set to true (DEFAULT: **true**)
-
-- `taskmanager.heap.mb`: JVM heap size (in megabytes) for the
TaskManagers, which are the parallel workers of the system. In contrast to
Hadoop, Flink runs operators (e.g., join, aggregate) and user-defined functions
(e.g., Map, Reduce, CoGroup) inside the TaskManager (including
sorting/hashing/caching), so this value should be as large as possible
(DEFAULT: **512**). On YARN setups, this value is automatically configured to
the size of the TaskManager's YARN container, minus a certain tolerance value.
-
-- `taskmanager.numberOfTaskSlots`: The number of parallel operator or user
function instances that a single TaskManager can run (DEFAULT: **1**). If this
value is larger than 1, a single TaskManager takes multiple instances of a
function or operator. That way, the TaskManager can utilize multiple CPU cores,
but at the same time, the available memory is divided between the different
operator or function instances. This value is typically proportional to the
number of physical CPU cores that the TaskManager's machine has (e.g., equal to
the number of cores, or half the number of cores).
-
-- `taskmanager.tmp.dirs`: The directory for temporary files, or a list of
directories separated by the system's directory delimiter (for example ':'
(colon) on Linux/Unix). If multiple directories are specified, then the
temporary files will be distributed across the directories in a round robin
fashion. The I/O manager component will spawn one reading and one writing
thread per directory. A directory may be listed multiple times to have the I/O
manager use multiple threads for it (for example if it is physically stored on
a very fast disc or RAID) (DEFAULT: **The system's tmp dir**).
-
-- `taskmanager.network.memory.fraction`: Fraction of JVM memory to use for
network buffers. This determines how many streaming data exchange channels a
TaskManager can have at the same time and how well buffered the channels are.
If a job is rejected or you get a warning that the system has not enough
buffers available, increase this value or the min/max values below. Also note,
that `taskmanager.network.memory.min` and `taskmanager.network.memory.max` may
override this fraction. (DEFAULT: **0.1**)
-
-- `taskmanager.network.memory.min`: Minimum memory size for network
buffers in bytes (DEFAULT: **64 MB**). Previously, this was determined from
`taskmanager.network.numberOfBuffers` and `taskmanager.memory.segment-size`.
-
-- `taskmanager.network.memory.max`: Maximum memory size for network
buffers in bytes (DEFAULT: **1 GB**). Previously, this was determined from
`taskmanager.network.numberOfBuffers` and `taskmanager.memory.segment-size`.
-
-- `taskmanager.network.numberOfBuffers` (deprecated, replaced by the three
parameters above): The number of buffers available to the network stack. This
number determines how many streaming data exchange channels a TaskManager can
have at the same time and how well buffered the channels are. If a job is
rejected or you get a warning that the system has not enough buffers available,
increase this value (DEFAULT: **2048**). If set, it will be mapped to
`taskmanager.network.memory.min` and `taskmanager.network.memory.max` based on
`taskmanager.memory.segment-size`.
-
-- `taskmanager.memory.size`: The amount of memory (in megabytes) that the
task manager reserves on the JVM's heap space for sorting, hash tables, and
caching of intermediate results. If unspecified (-1), the memory manager will
take a fixed ratio of the heap memory available to the JVM, as specified by
`taskmanager.memory.fraction`. (DEFAULT: **-1**)
-
-- `taskmanager.memory.fraction`: The relative amount of memory (with
respect to `taskmanager.heap.mb`, after subtracting the amount of memory used
by network buffers) that the task manager reserves for sorting, hash tables,
and caching of intermediate results. For example, a value of `0.8` means that a
task manager reserves 80% of its memory (on-heap or off-heap depending on
`taskmanager.memory.off-heap`) for internal data buffers, leaving 20% of free
memory for the task manager's heap for objects created by user-defined
functions. (DEFAULT: 0.7) This parameter is only evaluated, if
`taskmanager.memory.size` is not set.
-
-- `taskmanager.debug.memory.startLogThread`: Causes the TaskManagers to
periodically log memory and Garbage collection statistics. The statistics
include current heap-, off-heap, and other memory pool utilization, as well as
the time spent on garbage collection, by heap memory pool.
-
-- `taskmanager.debug.memory.logIntervalMs`: The interval (in milliseconds)
in which the TaskManagers log the memory and garbage collection statistics.
Only has an effect, if `taskmanager.debug.memory.startLogThread` is set to true.
-
-- `taskmanager.maxRegistrationDuration`: Defines the maximum time it can
take for the TaskManager registration. If the duration is exceeded without a
successful registration, then the TaskManager terminates. The max registration
duration requires a time unit specifier (ms/s/min/h/d) (e.g. "10 min").
(DEFAULT: **Inf**)
-
-- `taskmanager.initial-registration-pause`: The initial registration pause
between two consecutive registration attempts. The pause is doubled for each
new registration attempt until it reaches the maximum registration pause. The
initial registration pause requires a time unit specifier (ms/s/min/h/d) (e.g.
"5 s"). (DEFAULT: **500 ms**)
-
-- `taskmanager.max-registration-pause`: The maximum registration pause
between two consecutive registration attempts. The max registration pause
requires a time unit specifier (ms/s/min/h/d) (e.g. "5 s"). (DEFAULT: **30 s**)
-
-- `taskmanager.refused-registration-pause`: The pause after a registration
has been refused by the job manager before retrying to connect. The refused
registration pause requires a time unit specifier (ms/s/min/h/d) (e.g. "5 s").
(DEFAULT: **10 s**)
-
-- `taskmanager.jvm-exit-on-oom`: Indicates that the TaskManager should
immediately terminate the JVM if the task thread throws an `OutOfMemoryError`
(DEFAULT: **false**).
-
-- `blob.fetch.retries`: The number of retries for the TaskManager to
download BLOBs (such as JAR files) from the JobManager (DEFAULT: **50**).
-
-- `blob.fetch.num-concurrent`: The number concurrent BLOB fetches (such as
JAR file downloads) that the JobManager serves (DEFAULT: **50**).
-
-- `blob.fetch.backlog`: The maximum number of queued BLOB fetches (such as
JAR file downloads) that the JobManager allows (DEFAULT: **1000**).
-
-- `task.cancellation-interval`: Time interval between two successive task
cancellation attempts in milliseconds (DEFAULT: **30000**).
--- End diff --
You know why the new option is `task.cancellation.interval`?
> Move remaining sections to generated tables
> -------------------------------------------
>
> Key: FLINK-8475
> URL: https://issues.apache.org/jira/browse/FLINK-8475
> Project: Flink
> Issue Type: Sub-task
> Components: Configuration
> Reporter: Chesnay Schepler
> Assignee: Chesnay Schepler
> Priority: Major
> Fix For: 1.5.0
>
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)