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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 89cdb0f0a9 [INLONG-7528][Doc] Add the Kafka support for audit 
standalone deployment (#706)
89cdb0f0a9 is described below

commit 89cdb0f0a90589fd6298ec757b268455400e5ec0
Author: Charles Zhang <[email protected]>
AuthorDate: Mon Mar 13 09:56:52 2023 +0800

    [INLONG-7528][Doc] Add the Kafka support for audit standalone deployment 
(#706)
---
 docs/deployment/standalone.md                         | 19 +++++++++++++++----
 .../current/deployment/standalone.md                  | 19 +++++++++++++++----
 2 files changed, 30 insertions(+), 8 deletions(-)

diff --git a/docs/deployment/standalone.md b/docs/deployment/standalone.md
index 313ee6feef..35aeee3dfe 100644
--- a/docs/deployment/standalone.md
+++ b/docs/deployment/standalone.md
@@ -11,7 +11,8 @@ sidebar_position: 1
 ## Prepare Message Queue
 InLong Support the following Message Queue services now, you can choose one of 
them.
 - [InLong TubeMQ](modules/tubemq/quick_start.md)
-- [Apache Pulsar 2.8.x](https://pulsar.apache.org/docs/en/2.8.1/standalone/)
+- [Apache Pulsar 
2.8.x](https://pulsar.apache.org/docs/2.8.x/getting-started-home/)
+- [Apache Kafka 2.x](https://kafka.apache.org/quickstart)
 
 ## Download the Binary Package
 You can get binary package from [Download 
Page](https://inlong.apache.org/download) ,or you can build the InLong refer to 
[How to Build](quick_start/how_to_build.md).
@@ -40,15 +41,25 @@ spring_datasource_hostname=
 spring_datasource_port=3306
 spring_datasource_username=root
 spring_datasource_password=inlong
-# Configure Pulsar Address if use Pulsar for Audit
-pulsar_service_url=
-pulsar_admin_url=
 # the REST server address for Flink
 flink_rest_address=
 # the REST server Port for Flink
 flink_rest_port=8081
 ```
 
+- Configure Pulsar Address if using Pulsar for Audit
+```shell
+mq_type=pulsar
+pulsar_service_url=
+pulsar_admin_url=
+```
+
+- Configure Kafka Address if using Kafka for Audit
+```shell
+mq_type=kafka
+bootstrap_server_url=
+```
+
 ## Start
 ```shell
 bin/inlong-daemon start standalone
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/standalone.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/standalone.md
index c2f2d82f32..6769a0c2f0 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/standalone.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/standalone.md
@@ -10,7 +10,8 @@ sidebar_position: 1
 ## 准备消息队列
 InLong 当前支持以下消息队列,根据使用情况**选择其一**即可。
 - [InLong TubeMQ](modules/tubemq/quick_start.md)
-- [Apache Pulsar 2.8.x](https://pulsar.apache.org/docs/en/2.8.1/standalone/)
+- [Apache Pulsar 
2.8.x](https://pulsar.apache.org/docs/2.8.x/getting-started-home/)
+- [Apache Kafka 2.x](https://kafka.apache.org/quickstart)
 
 ## 下载安装包
 可以从 [下载页面](https://inlong.apache.org/download) 获取二进制包,或参考 
[如何编译](quick_start/how_to_build.md) 编译需要的版本。
@@ -40,15 +41,25 @@ spring_datasource_hostname=
 spring_datasource_port=3306
 spring_datasource_username=root
 spring_datasource_password=inlong
-# 配置 Pulsar 集群地址,如果 Audit 使用 Pulsar
-pulsar_service_url=
-pulsar_admin_url=
 # Flink REST server 地址
 flink_rest_address=
 # Flink REST server 端口
 flink_rest_port=8081
 ```
 
+- 配置 Pulsar 集群地址,如果 Audit 使用 Pulsar
+```shell
+mq_type=pulsar
+pulsar_service_url=
+pulsar_admin_url=
+```
+
+- 配置 Kafka 集群地址,如果 Audit 使用 Kafka
+```shell
+mq_type=kafka
+bootstrap_server_url=
+```
+
 ## 启动
 ```shell
 bin/inlong-daemon start standalone

Reply via email to