This is an automated email from the ASF dual-hosted git repository.
fanjia 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 5471908873 [doc]Modify Quick Start doc (#156)
5471908873 is described below
commit 5471908873c524959ee20a3c1c6538cb44c4854d
Author: s7monk <[email protected]>
AuthorDate: Fri Oct 21 17:07:14 2022 +0800
[doc]Modify Quick Start doc (#156)
* Modify Quick Start doc
---
versioned_docs/version-2.2.0-beta/start-v2/local.mdx | 20 +++++++++++++++++++-
versioned_docs/version-2.2.0-beta/start/local.mdx | 19 ++++++++++++++++++-
2 files changed, 37 insertions(+), 2 deletions(-)
diff --git a/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
b/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
index 66afe60aa6..26745d6794 100644
--- a/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
+++ b/versioned_docs/version-2.2.0-beta/start-v2/local.mdx
@@ -34,7 +34,7 @@ tar -xzvf "apache-seatunnel-incubating-${version}-bin.tar.gz"
<!-- TODO: We should add example module as quick start which is no need for
install Spark or Flink -->
## 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 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, 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).
```bash
sh bin/install_plugin.sh 2.2.0-beta
```
@@ -59,6 +59,24 @@ connector-console
You can find 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
+
+:::
+
+The connectors directory contains the following subdirectories, if they do not
exist, you need to create them manually
+
+```
+flink
+flink-sql
+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
+
+
## Step 4: Configure SeaTunnel Application
**Configure SeaTunnel**: Change the setting in `config/seatunnel-env.sh`, it
is base on the path your engine install at [prepare step two](#prepare).
diff --git a/versioned_docs/version-2.2.0-beta/start/local.mdx
b/versioned_docs/version-2.2.0-beta/start/local.mdx
index cd89ad6d1e..0f4001883a 100644
--- a/versioned_docs/version-2.2.0-beta/start/local.mdx
+++ b/versioned_docs/version-2.2.0-beta/start/local.mdx
@@ -34,7 +34,7 @@ tar -xzvf "apache-seatunnel-incubating-${version}-bin.tar.gz"
<!-- TODO: We should add example module as quick start which is no need for
install Spark or Flink -->
## 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 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, 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 corresponding subdirectory of the connectors directory, for example,
flink plugins should be placed in the flink [...]
```bash
sh bin/install_plugin.sh 2.2.0-beta
```
@@ -82,6 +82,23 @@ seatunnel-connector-flink-console
You can find 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
+
+:::
+
+The connectors directory contains the following subdirectories, if they do not
exist, you need to create them manually
+
+```
+flink
+flink-sql
+seatunnel
+spark
+```
+
+If you want to manually install the connector plugin of the flink engine, you
need to download the connector plugin of the flink engine you need, and then
put them in the flink directory. Similarly, if you want to manually install the
connector plugin of the spark engine, you need to download the connector plugin
of the spark engine you need, and then put them in the spark directory
+
## Step 4: Configure SeaTunnel Application
**Configure SeaTunnel**: Change the setting in `config/seatunnel-env.sh`, it
is base on the path your engine install at [prepare step two](#prepare).