This is an automated email from the ASF dual-hosted git repository.
wuchunfu pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new e170a50b97 [Doc] Fix document symbol escape error (#7611)
e170a50b97 is described below
commit e170a50b97f22d693e0da2a7a5aa08b6ff464d77
Author: Jast <[email protected]>
AuthorDate: Tue Sep 10 13:00:55 2024 +0800
[Doc] Fix document symbol escape error (#7611)
---
docs/en/seatunnel-engine/user-command.md | 10 +++++-----
docs/zh/seatunnel-engine/user-command.md | 10 +++++-----
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/docs/en/seatunnel-engine/user-command.md
b/docs/en/seatunnel-engine/user-command.md
index f619bfff25..2bf3fb2c8c 100644
--- a/docs/en/seatunnel-engine/user-command.md
+++ b/docs/en/seatunnel-engine/user-command.md
@@ -68,7 +68,7 @@ This command will output the list of all jobs in the current
cluster (including
## Viewing The Job Status
```shell
-sh bin/seatunnel.sh -j <jobId>
+sh bin/seatunnel.sh -j <jobId>
```
This command will output the status information of the specified job.
@@ -86,13 +86,13 @@ This command will output the monitoring information of
running jobs.
The --metrics parameter can get the monitoring information of a specified job.
```shell
-sh bin/seatunnel.sh --metrics <jobId>
+sh bin/seatunnel.sh --metrics <jobId>
```
## Pausing Jobs
```shell
-sh bin/seatunnel.sh -s <jobId>
+sh bin/seatunnel.sh -s <jobId>
```
This command will pause the specified job. Note that only jobs with
checkpoints enabled support pausing jobs (real-time synchronization jobs have
checkpoints enabled by default, and batch jobs do not have checkpoints enabled
by default and need to configure checkpoint.interval in `env` to enable
checkpoints).
@@ -102,7 +102,7 @@ Pausing a job is in the smallest unit of split. That is,
after pausing a job, it
## Resuming Jobs
```shell
-sh bin/seatunnel.sh -r <jobId> -c
$SEATUNNEL_HOME/config/v2.batch.config.template
+sh bin/seatunnel.sh -r <jobId> -c
$SEATUNNEL_HOME/config/v2.batch.config.template
```
This command will resume the specified job. Note that only jobs with
checkpoints enabled support resuming jobs (real-time synchronization jobs have
checkpoints enabled by default, and batch jobs do not have checkpoints enabled
by default and need to configure checkpoint.interval in `env` to enable
checkpoints).
@@ -114,7 +114,7 @@ Both failed jobs and jobs paused by seatunnel.sh -s
<jobId> can be resumed
## Canceling Jobs
```shell
-sh bin/seatunnel.sh -can <jobId>
+sh bin/seatunnel.sh -can <jobId>
```
This command will cancel the specified job. After canceling the job, the job
will be stopped and its status will become `CANCELED`.
diff --git a/docs/zh/seatunnel-engine/user-command.md
b/docs/zh/seatunnel-engine/user-command.md
index beedfeca14..5066e5615e 100644
--- a/docs/zh/seatunnel-engine/user-command.md
+++ b/docs/zh/seatunnel-engine/user-command.md
@@ -83,7 +83,7 @@ bin/seatunnel.sh --config
$SEATUNNEL_HOME/config/v2.batch.config.template
## 查看作业状态
```shell
-./bin/seatunnel.sh -j <jobId>
+./bin/seatunnel.sh -j <jobId>
```
该命令会输出指定作业的状态信息
@@ -101,13 +101,13 @@ bin/seatunnel.sh --config
$SEATUNNEL_HOME/config/v2.batch.config.template
--metrics 参数可以获取指定作业的监控信息
```shell
-./bin/seatunnel.sh --metrics <jobId>
+./bin/seatunnel.sh --metrics <jobId>
```
## 暂停作业
```shell
-./bin/seatunnel.sh -s <jobId>
+./bin/seatunnel.sh -s <jobId>
```
该命令会暂停指定作业,注意,只有开启了checkpoint的作业才支持暂停作业(实时同步作业默认开启checkpoint,批处理作业默认不开启checkpoint需要通过在
`env` 中配置checkpoint.interval来开启checkpoint)。
@@ -117,7 +117,7 @@ bin/seatunnel.sh --config
$SEATUNNEL_HOME/config/v2.batch.config.template
## 恢复作业
```shell
-./bin/seatunnel.sh -r <jobId> -c
$SEATUNNEL_HOME/config/v2.batch.config.template
+./bin/seatunnel.sh -r <jobId> -c
$SEATUNNEL_HOME/config/v2.batch.config.template
```
该命令会恢复指定作业,注意,只有开启了checkpoint的作业才支持恢复作业(实时同步作业默认开启checkpoint,批处理作业默认不开启checkpoint需要通过在
`env` 中配置checkpoint.interval来开启checkpoint)。
@@ -129,7 +129,7 @@ bin/seatunnel.sh --config
$SEATUNNEL_HOME/config/v2.batch.config.template
## 取消作业
```shell
-./bin/seatunnel.sh -can <jobId>
+./bin/seatunnel.sh -can <jobId>
```
该命令会取消指定作业,取消作业后,作业会被停止,作业的状态会变为`CANCELED`。