Skip to content

Commit

Permalink
[FLINK-16541][doc] Fix document of table.exec.shuffle-mode
Browse files Browse the repository at this point in the history
This closed apache#11386
  • Loading branch information
tsreaper committed Mar 16, 2020
1 parent 3d11907 commit 328193d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/_includes/generated/execution_config_configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
<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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
}

0 comments on commit 328193d

Please sign in to comment.