You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by xt...@apache.org on 2020/08/21 06:40:34 UTC

[flink] branch release-1.11 updated: [FLINK-18941][docs-zh] Correct typos in \docs\ops\memory\mem_setup_jobmanager.zh.md.

This is an automated email from the ASF dual-hosted git repository.

xtsong pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.11 by this push:
     new 2001a7c  [FLINK-18941][docs-zh] Correct typos in \docs\ops\memory\mem_setup_jobmanager.zh.md.
2001a7c is described below

commit 2001a7c99539120e729a0d4a057b3142c6df169a
Author: kecheng <xi...@outlook.com>
AuthorDate: Fri Aug 21 11:42:58 2020 +0800

    [FLINK-18941][docs-zh] Correct typos in \docs\ops\memory\mem_setup_jobmanager.zh.md.
    
    This closes #13211.
---
 docs/ops/memory/mem_setup_jobmanager.zh.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/ops/memory/mem_setup_jobmanager.zh.md b/docs/ops/memory/mem_setup_jobmanager.zh.md
index 455ac23..980d131 100644
--- a/docs/ops/memory/mem_setup_jobmanager.zh.md
+++ b/docs/ops/memory/mem_setup_jobmanager.zh.md
@@ -93,13 +93,13 @@ Flink 需要多少 *JVM 堆内存*,很大程度上取决于运行的作业数
 如果遇到 JobManager 进程抛出 “OutOfMemoryError: Direct buffer memory” 的异常,可以尝试调大这项配置。
 请参考[常见问题](mem_trouble.html#outofmemoryerror-direct-buffer-memory)。
 
-一下情况可能用到堆外内存:
+以下情况可能用到堆外内存:
 * Flink 框架依赖(例如 Akka 的网络通信)
 * 在作业提交时(例如一些特殊的批处理 Source)及 Checkpoint 完成的回调函数中执行的用户代码
 
 <span class="label label-info">提示</span>
 如果同时配置了 [Flink 总内存](mem_setup.html#configure-total-memory)和 [JVM 堆内存](#configure-jvm-heap),且没有配置*堆外内存*,那么*堆外内存*的大小将会是 [Flink 总内存](mem_setup.html#configure-total-memory)减去[JVM 堆内存](#configure-jvm-heap)。
-这种情况下,*对外内存*的默认大小将不会生效。
+这种情况下,*堆外内存*的默认大小将不会生效。
 
 <a name="local-execution" />