This is an automated email from the ASF dual-hosted git repository.
gaojun2048 pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git
The following commit(s) were added to refs/heads/main by this push:
new 3b5d67c7f2 [BUG][DOC] Fix some errors in quick start seatunnel engine
(#225)
3b5d67c7f2 is described below
commit 3b5d67c7f2769c417ab30c2bb3d2047ec3af0c78
Author: David <[email protected]>
AuthorDate: Wed Apr 12 10:52:11 2023 +0800
[BUG][DOC] Fix some errors in quick start seatunnel engine (#225)
Fix some errors in quick start seatunnel engine, if you download the
version 2.3.1, there is no v2.batch.conf.template file
---
.../version-2.3.1/start-v2/locally/quick-start-seatunnel-engine.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/versioned_docs/version-2.3.1/start-v2/locally/quick-start-seatunnel-engine.md
b/versioned_docs/version-2.3.1/start-v2/locally/quick-start-seatunnel-engine.md
index 48024f085e..3420b79a1d 100644
---
a/versioned_docs/version-2.3.1/start-v2/locally/quick-start-seatunnel-engine.md
+++
b/versioned_docs/version-2.3.1/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
@@ -47,7 +47,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
```