You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2020/03/16 03:31:04 UTC

[flink] 02/02: [FLINK-16541][doc] Fix document of table.exec.shuffle-mode

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

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

commit b5ef72f0a86f552e832fb1f97a4f2c110fcf5b07
Author: TsReaper <ts...@gmail.com>
AuthorDate: Mon Mar 16 10:37:18 2020 +0800

    [FLINK-16541][doc] Fix document of table.exec.shuffle-mode
    
    
    This closed #11386
---
 docs/_includes/generated/execution_config_configuration.html          | 4 ++--
 .../org/apache/flink/table/api/config/ExecutionConfigOptions.java     | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/_includes/generated/execution_config_configuration.html b/docs/_includes/generated/execution_config_configuration.html
index 8004322..6dcc484 100644
--- a/docs/_includes/generated/execution_config_configuration.html
+++ b/docs/_includes/generated/execution_config_configuration.html
@@ -56,9 +56,9 @@ By default no operator is disabled.</td>
             <td><h5>table.exec.shuffle-mode</h5><br> <span class="label label-primary">Batch</span></td>
             <td style="word-wrap: break-word;">"batch"</td>
             <td>String</td>
-            <td>Sets exec shuffle mode. Only batch or pipeline can be set.
+            <td>Sets exec shuffle mode. Only batch or pipelined can be set.
 batch: the job will run stage by stage. 
-pipeline: the job will run in streaming mode, but it may cause resource deadlock that receiver waits for resource to start when the sender holds resource to wait to send data to the receiver.</td>
+pipelined: the job will run in streaming mode, but it may cause resource deadlock that receiver waits for resource to start when the sender holds resource to wait to send data to the receiver.</td>
         </tr>
         <tr>
             <td><h5>table.exec.sort.async-merge-enabled</h5><br> <span class="label label-primary">Batch</span></td>
diff --git a/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/config/ExecutionConfigOptions.java b/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/config/ExecutionConfigOptions.java
index e9f595f..054b81d 100644
--- a/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/config/ExecutionConfigOptions.java
+++ b/flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/config/ExecutionConfigOptions.java
@@ -217,8 +217,8 @@ public class ExecutionConfigOptions {
 	public static final ConfigOption<String> TABLE_EXEC_SHUFFLE_MODE =
 		key("table.exec.shuffle-mode")
 			.defaultValue("batch")
-			.withDescription("Sets exec shuffle mode. Only batch or pipeline can be set.\n" +
+			.withDescription("Sets exec shuffle mode. Only batch or pipelined can be set.\n" +
 				"batch: the job will run stage by stage. \n" +
-				"pipeline: the job will run in streaming mode, but it may cause resource deadlock that receiver waits for resource to start when " +
+				"pipelined: the job will run in streaming mode, but it may cause resource deadlock that receiver waits for resource to start when " +
 				"the sender holds resource to wait to send data to the receiver.");
 }