You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by li...@apache.org on 2023/04/11 11:09:38 UTC

[incubator-seatunnel-website] 01/01: [BUG][DOC] Fix some errors in quick start seatunnel engine

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

lidongdai pushed a commit to branch Fix-quick-start-seatunnel-engine
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git

commit a3af8520e0698a28c78d1fd647ed7c4fd5e6077b
Author: David <da...@gmail.com>
AuthorDate: Tue Apr 11 19:09:32 2023 +0800

    [BUG][DOC] Fix some errors in quick start seatunnel engine
    
    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
 
 ```