Skip to content

Commit

Permalink
[FLINK-22963][doc] correct the description of taskmanager.memory.task…
Browse files Browse the repository at this point in the history
….heap.size.

This closes apache#16143
  • Loading branch information
CodeCooker17 authored and xintongsong committed Jun 15, 2021
1 parent ddfd5ca commit c2df238
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
<td><h5>taskmanager.memory.task.heap.size</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>MemorySize</td>
<td>Task Heap Memory size for TaskExecutors. This is the size of JVM heap memory reserved for tasks. If not specified, it will be derived as Total Flink Memory minus Framework Heap Memory, Task Off-Heap Memory, Managed Memory and Network Memory.</td>
<td>Task Heap Memory size for TaskExecutors. This is the size of JVM heap memory reserved for tasks. If not specified, it will be derived as Total Flink Memory minus Framework Heap Memory, Framework Off-Heap Memory, Task Off-Heap Memory, Managed Memory and Network Memory.</td>
</tr>
<tr>
<td><h5>taskmanager.memory.task.off-heap.size</h5></td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<td><h5>taskmanager.memory.task.heap.size</h5></td>
<td style="word-wrap: break-word;">(none)</td>
<td>MemorySize</td>
<td>Task Heap Memory size for TaskExecutors. This is the size of JVM heap memory reserved for tasks. If not specified, it will be derived as Total Flink Memory minus Framework Heap Memory, Task Off-Heap Memory, Managed Memory and Network Memory.</td>
<td>Task Heap Memory size for TaskExecutors. This is the size of JVM heap memory reserved for tasks. If not specified, it will be derived as Total Flink Memory minus Framework Heap Memory, Framework Off-Heap Memory, Task Off-Heap Memory, Managed Memory and Network Memory.</td>
</tr>
<tr>
<td><h5>taskmanager.memory.task.off-heap.size</h5></td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ public class TaskManagerOptions {
.withDescription(
"Task Heap Memory size for TaskExecutors. This is the size of JVM heap memory reserved for"
+ " tasks. If not specified, it will be derived as Total Flink Memory minus Framework Heap Memory,"
+ " Task Off-Heap Memory, Managed Memory and Network Memory.");
+ " Framework Off-Heap Memory, Task Off-Heap Memory, Managed Memory and Network Memory.");

/** Task Off-Heap Memory size for TaskExecutors. */
@Documentation.Section(Documentation.Sections.COMMON_MEMORY)
Expand Down

0 comments on commit c2df238

Please sign in to comment.