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

lidongdai 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 0741aa654c quick-start-seatunnel-engine.md (#4943)
0741aa654c is described below

commit 0741aa654c4642fccc41e6b4020e57a13a90559c
Author: davidfans <[email protected]>
AuthorDate: Sun Jun 18 22:30:24 2023 +0800

    quick-start-seatunnel-engine.md (#4943)
---
 docs/en/start-v2/locally/deployment.md               | 20 ++++++++++----------
 .../start-v2/locally/quick-start-seatunnel-engine.md |  4 ++--
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/docs/en/start-v2/locally/deployment.md 
b/docs/en/start-v2/locally/deployment.md
index 8d91d5bea7..6f82a9d848 100644
--- a/docs/en/start-v2/locally/deployment.md
+++ b/docs/en/start-v2/locally/deployment.md
@@ -22,7 +22,7 @@ package `seatunnel-<version>-bin.tar.gz`
 Or you can download it by terminal
 
 ```shell
-export version="2.3.0-beta"
+export version="2.3.2"
 wget 
"https://archive.apache.org/dist/seatunnel/${version}/apache-seatunnel-incubating-${version}-bin.tar.gz";
 tar -xzvf "apache-seatunnel-incubating-${version}-bin.tar.gz"
 ```
@@ -31,19 +31,19 @@ tar -xzvf 
"apache-seatunnel-incubating-${version}-bin.tar.gz"
 
 ## Step 3: Install connectors plugin
 
-Since 2.2.0-beta, the binary package does not provide connector dependencies 
by default, so when using it for the first time, we need to execute the 
following command to install the connector: (Of course, you can also manually 
download the connector from [Apache Maven 
Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/) to 
download, then manually move to the seatunnel subdirectory under the connectors 
directory).
+Since 2.2.0-beta, the binary package does not provide connector dependencies 
by default, so when using it for the first time, you need to execute the 
following command to install the connector: (Of course, you can also manually 
download the connector from [Apache Maven 
Repository](https://repo.maven.apache.org/maven2/org/apache/seatunnel/) to 
download, then manually move to the `connectors/seatunnel` directory).
 
 ```bash
-sh bin/install_plugin.sh 2.3.0-beta
+sh bin/install-plugin.sh 2.3.2
 ```
 
-If you need to specify the version of the connector, take 2.3.0-beta as an 
example, we need to execute
+If you need to specify the version of the connector, take 2.3.2 as an example, 
you need to execute
 
 ```bash
-sh bin/install_plugin.sh 2.3.0-beta
+sh bin/install-plugin.sh 2.3.2
 ```
 
-Usually we don't need all the connector plugins, so you can specify the 
plugins you need by configuring `config/plugin_config`, for example, you only 
need the `connector-console` plugin, then you can modify plugin.properties as
+Usually you don't need all the connector plugins, so you can specify the 
plugins you need by configuring `config/plugin_config`, for example, you only 
need the `connector-console` plugin, then you can modify plugin.properties as
 
 ```plugin_config
 --seatunnel-connectors--
@@ -51,7 +51,7 @@ connector-console
 --end--
 ```
 
-If we want our sample application to work properly, we need to add the 
following plugins
+If you'd like to make a sample application to work properly, you need to add 
the following plugins
 
 ```plugin_config
 --seatunnel-connectors--
@@ -60,11 +60,11 @@ connector-console
 --end--
 ```
 
-You can find all supported connectors and corresponding plugin_config 
configuration names under 
`${SEATUNNEL_HOME}/connectors/plugins-mapping.properties`.
+You can find out all supported connectors and corresponding plugin_config 
configuration names under 
`${SEATUNNEL_HOME}/connectors/plugins-mapping.properties`.
 
 :::tip
 
-If you want to install the connector plugin by manually downloading the 
connector, you need to pay special attention to the following
+If you'd like to install the connector plugin by manually downloading the 
connector, you need to pay special attention to the following
 
 The connectors directory contains the following subdirectories, if they do not 
exist, you need to create them manually
 
@@ -75,7 +75,7 @@ seatunnel
 spark
 ```
 
-If you want to install the V2 connector plugin manually, you only need to 
download the V2 connector plugin you need and put them in the seatunnel 
directory
+If you'd like to install the V2 connector plugin manually, you only need to 
download the V2 connector plugin you need and put them in the seatunnel 
directory
 
 :::
 
diff --git a/docs/en/start-v2/locally/quick-start-seatunnel-engine.md 
b/docs/en/start-v2/locally/quick-start-seatunnel-engine.md
index 5e43dbfdf9..db99889702 100644
--- a/docs/en/start-v2/locally/quick-start-seatunnel-engine.md
+++ b/docs/en/start-v2/locally/quick-start-seatunnel-engine.md
@@ -11,7 +11,7 @@ Before starting, make sure you have downloaded and deployed 
SeaTunnel as describ
 
 ## Step 2: Add Job Config File to define a job
 
-Edit `config/v2.batch.conf.template`, which determines the way and logic of 
data input, processing, and output after seatunnel is started.
+Edit `config/v2.batch.config.template`, which determines the way and logic of 
data input, processing, and output after seatunnel is started.
 The following is an example of the configuration file, which is the same as 
the example application mentioned above.
 
 ```hocon
@@ -60,7 +60,7 @@ You could start the application by the following commands
 
 ```shell
 cd "apache-seatunnel-incubating-${version}"
-./bin/seatunnel.sh --config ./config/v2.streaming.conf.template -e local
+./bin/seatunnel.sh --config ./config/v2.batch.config.template -e local
 
 ```
 

Reply via email to