This is an automated email from the ASF dual-hosted git repository.
healchow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong-website.git
The following commit(s) were added to refs/heads/master by this push:
new 8ec2130 [INLONG-1934] update the image of the hive example after the
bid changed (#220)
8ec2130 is described below
commit 8ec21301f032890c31392a97a971a67b7d92f735
Author: dockerzhang <[email protected]>
AuthorDate: Wed Dec 8 21:02:57 2021 +0800
[INLONG-1934] update the image of the hive example after the bid changed
(#220)
Co-authored-by: dockerzhang <[email protected]>
---
docs/deployment/docker.md | 17 ++++++-
docs/introduction.md | 2 +-
docs/modules/manager/quick_start.md | 48 +++++-------------
.../website/{quick_start.md => overview.md} | 25 +++-------
docs/modules/website/quick_start.md | 55 ++++-----------------
docs/quick_start/hive_example.md | 10 ++--
docs/quick_start/img/create-group.png | Bin 0 -> 18583 bytes
docs/quick_start/img/create-stream.png | Bin 0 -> 12642 bytes
docs/quick_start/img/data-information.png | Bin 0 -> 14760 bytes
docs/quick_start/img/hive-config.png | Bin 0 -> 25378 bytes
.../current/deployment/docker.md | 7 +++
.../current/introduction.md | 2 +-
.../current/modules/agent/overview.md | 4 +-
.../current/modules/manager/quick_start.md | 44 +++++------------
.../current/modules/website/overview.md | 25 +++-------
.../current/modules/website/quick_start.md | 20 ++++++++
.../current/quick_start/hive_example.md | 10 ++--
.../current/quick_start/img/create-group.png | Bin 0 -> 17756 bytes
.../current/quick_start/img/create-stream.png | Bin 0 -> 10641 bytes
.../current/quick_start/img/data-information.png | Bin 0 -> 13968 bytes
.../current/quick_start/img/hive-config.png | Bin 0 -> 21599 bytes
static/img/create-business.png | Bin 208586 -> 0 bytes
static/img/create-stream.png | Bin 164403 -> 0 bytes
static/img/data-information.png | Bin 121093 -> 0 bytes
static/img/hive-config.png | Bin 191801 -> 0 bytes
25 files changed, 107 insertions(+), 162 deletions(-)
diff --git a/docs/deployment/docker.md b/docs/deployment/docker.md
index 41d3732..f0559ba 100644
--- a/docs/deployment/docker.md
+++ b/docs/deployment/docker.md
@@ -6,22 +6,35 @@ sidebar_position: 2
Deploy all InLong module by Docker Compose, it's only available for
development.
Requirements:
+
- [Docker](https://docs.docker.com/engine/install/) 19.03.1+
- Docker Compose 1.29.2+
## Deploy
+
+Manually copy SQL files from `inlong-manager/manager-web/sql` to the
`docker/compose/sql` directory.
+
+```shell
+cp inlong-manager/manager-web/sql/apache_inlong_manager.sql
docker/docker-compose/sql
```
+
+Then, start all components.
+
+```shell
docker-compose up -d
```
## Use InLong
+
After all containers run successfully, you can access `http://localhost` with
default account:
-```
+
+```shell
User: admin
Password: inlong
```
## Destroy
-```
+
+```shell
docker-compose down
```
diff --git a/docs/introduction.md b/docs/introduction.md
index 8698a90..077616a 100644
--- a/docs/introduction.md
+++ b/docs/introduction.md
@@ -43,7 +43,7 @@ Apache InLong uses TDBank internally used by Tencent as the
prototype, and reli
## Modules
Apache InLong serves the entire life cycle from data collection to landing,
and provides different processing modules according to different stages of
data, including the next modules:
-- **inlong-agent**, data collection agent, supports reading regular logs from
specified directories or files and reporting data one by one. In the future,
DB collection and HTTP reporting capabilities will also be expanded.
+- **inlong-agent**, data collection agent, supports reading regular logs from
specified directories or files and reporting data one by one. In the future,
DB collection capabilities will also be expanded.
- **inlong-dataproxy**, a Proxy component based on Flume-ng, supports data
transmission blocking, placing retransmission, and has the ability to forward
received data to different MQ (message queues).
- **inlong-tubemq**, Tencent's self-developed message queuing service,
focuses on high-performance storage and transmission of massive data in big
data scenarios and has a relatively good core advantage in mass practice and
low cost.
- **inlong-sort**, after consuming data from different MQ services, perform
ETL processing, and then aggregate and write the data into Apache Hive,
ClickHouse, Hbase, IceBerg, etc.
diff --git a/docs/modules/manager/quick_start.md
b/docs/modules/manager/quick_start.md
index 9da7a03..fb5247d 100644
--- a/docs/modules/manager/quick_start.md
+++ b/docs/modules/manager/quick_start.md
@@ -2,38 +2,22 @@
title: Deployment
---
-## 1 Environmental preparation
-- Install and start MySQL 5.7+, copy the `doc/sql/apache_inlong_manager.sql`
file in the inlong-manager module to the
- server where the MySQL database is located (for example, copy to `/data/`
directory), load this file through the
- following command to complete the initialization of the table structure and
basic data:
+## Environmental preparation
+- Install and start MySQL 5.7+
+- initialize database
+ there is `sql/apache_inlong_manager.sql` in `inlong-manager-web` directory,
load this file through the
+ following command to complete the initialization of the table structure and
basic data
```shell
- # Log in to the MySQL server by username and password:
- mysql -u xxx -p xxx
- ...
- # Create database
- CREATE DATABASE IF NOT EXISTS apache_inlong_manager;
- USE apache_inlong_manager;
- # Load the above SQL file through the source command:
- mysql> source /data/apache_inlong_manager.sql;
+ # initialize database:
+ mysql -uDB_USER -pDB_PASSWD < sql/apache_inlong_manager.sql
```
-- Refer to [Compile and deploy
TubeMQ](https://inlong.apache.org/zh-cn/docs/modules/tubemq/quick_start.html)
to install
- and start the Tube cluster;
-
-- Refer
- to [Compile and deploy TubeMQ
Manager](https://inlong.apache.org/zh-cn/docs/modules/tubemq/tubemq-manager/quick_start.html)
- , install and start TubeManager.
-
-## 2 Deploy and start manager-web
+## Deploy and start manager-web
**manager-web is a background service that interacts with the front-end page.**
-### 2.1 Prepare installation files
-
-All installation files at `inlong-manager-web` directory.
-
-### 2.2 Modify configuration
+### Modify configuration
Go to the decompressed `inlong-manager-web` directory and modify the
`conf/application.properties` file:
@@ -51,8 +35,8 @@ The dev configuration is specified above, then modify the
`conf/application-dev.
```properties
spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/apache_inlong_manager?useSSL=false&allowPublicKeyRetrieval=true&characterEncoding=UTF-8&nullCatalogMeansCurrent=true&serverTimezone=GMT%2b8
- spring.datasource.username=xxxxxx
- spring.datasource.password=xxxxxx
+ spring.datasource.username=DB_USER
+ spring.datasource.password=DB_PASSWD
```
2) Modify the connection information of the Tube and ZooKeeper clusters, among
which `cluster.zk.root` suggests using
@@ -74,17 +58,11 @@ The dev configuration is specified above, then modify the
`conf/application-dev.
sort.appName=inlong_app
```
-### 2.3 Start the service
+### Start the service
Enter the decompressed directory, execute `sh bin/startup.sh` to start the
service, and check the
log `tailf log/manager-web.log`. If a log similar to the following appears,
the service has started successfully:
```shell
Started InLongWebApplication in 6.795 seconds (JVM running for 7.565)
-```
-
-## 3 Service access verification
-
-Verify the manager-web service:
-
-Visit address:
<http://[manager_web_ip]:[manager_web_port]/api/inlong/manager/doc.html#/home>
+```
\ No newline at end of file
diff --git a/docs/modules/website/quick_start.md
b/docs/modules/website/overview.md
similarity index 77%
copy from docs/modules/website/quick_start.md
copy to docs/modules/website/overview.md
index 63e0c20..9db3e71 100644
--- a/docs/modules/website/quick_start.md
+++ b/docs/modules/website/overview.md
@@ -1,21 +1,11 @@
---
-title: Deployment
+title: Overview
+sidebar_position: 1
---
-## 1 About WebSite
-This is a website console for us to use the [Apache InLong
incubator](https://github.com/apache/incubator-inlong).
+This is a website console for us to use the [Apache
InLong](https://github.com/apache/incubator-inlong).
-## 2 Build
-```
-mvn package -DskipTests -Pdocker -pl inlong-website
-```
-
-## 3 Run
-```
-docker run -d --name website -e MANAGER_API_ADDRESS=127.0.0.1:8083 -p 80:80
inlong/website
-```
-
-## 4 Guide For Developer
+## Guide For Developer
You should check that `nodejs >= 12.0` is installed.
In the project, you can run some built-in commands:
@@ -33,14 +23,14 @@ The start of the web server depends on the back-end server
`manger api` interfac
You should start the backend server first, and then set the variable `target`
in `/inlong-website/src/setupProxy.js` to the address of the api service.
-### 4.1 Test
+### Test
Run `npm test` or `yarn test`
Start the test runner in interactive observation mode.
For more information, see the section on [Running
Tests](https://create-react-app.dev/docs/running-tests/).
-### 4.2 Build
+### Build
First, make sure that the project has run `npm install` or `yarn install` to
install `node_modules`.
@@ -52,4 +42,5 @@ Better page performance can be obtained in the constructed
production mode.
After the build, the code is compressed, and the file name includes the hash
value.
Your application is ready to be deployed!
-For details, see the section on
[deployment](https://create-react-app.dev/docs/deployment/).
\ No newline at end of file
+For details, see the section on
[deployment](https://create-react-app.dev/docs/deployment/).
+
diff --git a/docs/modules/website/quick_start.md
b/docs/modules/website/quick_start.md
index 63e0c20..fdc0269 100644
--- a/docs/modules/website/quick_start.md
+++ b/docs/modules/website/quick_start.md
@@ -1,55 +1,20 @@
---
title: Deployment
+sidebar_position: 2
---
-## 1 About WebSite
-This is a website console for us to use the [Apache InLong
incubator](https://github.com/apache/incubator-inlong).
-
-## 2 Build
+## Prepare Docker Image
+pull image from central hub:
+```
+docker pull inlong/website:latest
+```
+or build image from source:
```
mvn package -DskipTests -Pdocker -pl inlong-website
```
-## 3 Run
+## Run
```
+# MANAGER_API_ADDRESS must be replaced by inlong-manager-web address
docker run -d --name website -e MANAGER_API_ADDRESS=127.0.0.1:8083 -p 80:80
inlong/website
-```
-
-## 4 Guide For Developer
-You should check that `nodejs >= 12.0` is installed.
-
-In the project, you can run some built-in commands:
-
-If `node_modules` is not installed, you should first run `npm install` or
`yarn install`.
-
-Use `npm run dev` or `yarn dev` to run the application in development mode.
-
-If the server runs successfully, the browser will open
[http://localhost:8080](http://localhost:8080) to view in the browser.
-
-If you edit, the page will reload.
-You will also see any lint errors in the console.
-
-The start of the web server depends on the back-end server `manger api`
interface.
-
-You should start the backend server first, and then set the variable `target`
in `/inlong-website/src/setupProxy.js` to the address of the api service.
-
-### 4.1 Test
-
-Run `npm test` or `yarn test`
-
-Start the test runner in interactive observation mode.
-For more information, see the section on [Running
Tests](https://create-react-app.dev/docs/running-tests/).
-
-### 4.2 Build
-
-First, make sure that the project has run `npm install` or `yarn install` to
install `node_modules`.
-
-Run `npm run build` or `yarn build`.
-
-Build the application for production into the build folder.
-Better page performance can be obtained in the constructed production mode.
-
-After the build, the code is compressed, and the file name includes the hash
value.
-Your application is ready to be deployed!
-
-For details, see the section on
[deployment](https://create-react-app.dev/docs/deployment/).
\ No newline at end of file
+```
\ No newline at end of file
diff --git a/docs/quick_start/hive_example.md b/docs/quick_start/hive_example.md
index 63eeea8..b75cfca 100644
--- a/docs/quick_start/hive_example.md
+++ b/docs/quick_start/hive_example.md
@@ -16,23 +16,23 @@ Before we begin, we need to install InLong. Here we provide
two ways:
2. Install InLong binary according to the [instructions
here](deployment/bare_metal.md).
## 3 Create a data access
-After deployment, we first enter the "Data Access" interface, click "Create an
Access" in the upper right corner to create a new date access, and fill in the
business information as shown in the figure below.
+After deployment, we first enter the "Data Access" interface, click "Create an
Access" in the upper right corner to create a new date access, and fill in the
data streams group information as shown in the figure below.
-<img src="/img/create-business.png" align="center" alt="Create Business"/>
+<img src="img/create-group.png" align="center" alt="Create Group"/>
Then we click the next button, and fill in the stream information as shown in
the figure below.
-<img src="/img/create-stream.png" align="center" alt="Create Stream"/>
+<img src="img/create-stream.png" align="center" alt="Create Stream"/>
Note that the message source is "File", and we don't need to create a message
source manually.
Then we fill in the following information in the "data information" column
below.
-<img src="/img/data-information.png" align="center" alt="Data Information"/>
+<img src="img/data-information.png" align="center" alt="Data Information"/>
Then we select Hive in the data flow and click "Add" to add Hive configuration
-<img src="/img/hive-config.png" align="center" alt="Hive Config"/>
+<img src="img/hive-config.png" align="center" alt="Hive Config"/>
Note that the target table does not need to be created in advance, as InLong
Manager will automatically create the table for us after the access is
approved. Also, please use connection test to ensure that InLong Manager can
connect to your Hive.
diff --git a/docs/quick_start/img/create-group.png
b/docs/quick_start/img/create-group.png
new file mode 100644
index 0000000..e358edf
Binary files /dev/null and b/docs/quick_start/img/create-group.png differ
diff --git a/docs/quick_start/img/create-stream.png
b/docs/quick_start/img/create-stream.png
new file mode 100644
index 0000000..8649b77
Binary files /dev/null and b/docs/quick_start/img/create-stream.png differ
diff --git a/docs/quick_start/img/data-information.png
b/docs/quick_start/img/data-information.png
new file mode 100644
index 0000000..e5704bb
Binary files /dev/null and b/docs/quick_start/img/data-information.png differ
diff --git a/docs/quick_start/img/hive-config.png
b/docs/quick_start/img/hive-config.png
new file mode 100644
index 0000000..f7ecefe
Binary files /dev/null and b/docs/quick_start/img/hive-config.png differ
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/docker.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/docker.md
index 3f43a22..4f8af90 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/docker.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/docker.md
@@ -10,6 +10,13 @@ sidebar_position: 2
- Docker Compose 1.29.2+
## 部署
+
+手动拷贝`inlong-manager/manager-web/sql`目录到`docker/compose/sql`目录.
+```shell
+cp inlong-manager/manager-web/sql/apache_inlong_manager.sql
docker/docker-compose/sql
+```
+
+然后启动所有组件:
```
docker-compose up -d
```
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
index b344235..16a958f 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/introduction.md
@@ -37,7 +37,7 @@ Apache InLong 以腾讯内部使用的 TDBank 为原型,依托万亿级别的
## 模块
Apache InLong 服务于数据采集到落地的整个生命周期,按数据的不同阶段提供不同的处理模块,主要包括:
-- **inlong-agent**,数据采集 Agent,支持从指定目录或文件读取常规日志、逐条上报。后续也将扩展 DB 采集、HTTP 上报等能力。
+- **inlong-agent**,数据采集 Agent,支持从指定目录或文件读取常规日志、逐条上报。后续也将扩展 DB 采集等能力。
- **inlong-dataproxy**,一个基于 Flume-ng 的 Proxy 组件,支持数据发送阻塞和落盘重发,拥有将接收到的数据转发到不同
MQ(消息队列)的能力。
- **inlong-tubemq**,腾讯自研的消息队列服务,专注于大数据场景下海量数据的高性能存储和传输,在海量实践和低成本方面有着良好的核心优势。
- **inlong-sort**,对从不同的 MQ 消费到的数据进行 ETL 处理,然后汇聚并写入
Hive、ClickHouse、Hbase、Iceberg 等存储系统。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/agent/overview.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/agent/overview.md
index c9a1136..ec0fc14 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/agent/overview.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/agent/overview.md
@@ -66,8 +66,8 @@ Agent指标分为以下几项, 各项的属性分别为:
### PluginMetric
| 属性名称 | 说明 |
| ---- | ---- |
-| readNum | 当前正在运行的job总数 |
-| sendNum | 当前失败的job总数 |
+| readNum | 读取的条数 |
+| sendNum | 发送的条数 |
| sendFailedNum | 发送失败条数 |
| readFailedNum | 读取失败条数 |
| readSuccessNum | 读取成功条数 |
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
index 3238471..54cbce2 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/manager/quick_start.md
@@ -2,35 +2,21 @@
title: 安装部署
---
-## 1 环境准备
-- 安装并启动 MySQL 5.7+,把 inlong-manager 模块中的 `doc/sql/apache_inlong_manager.sql`
文件拷贝到 MySQL 数据库所在的服务器
-(比如拷贝到 `/data/` 目录下),通过下述命令加载此文件,完成表结构及基础数据的初始化:
+## 环境准备
+- 安装并启动 MySQL 5.7+
+- 初始化数据库
+ `inlong-manager-web` 目录下有
`sql/apache_inlong_manager.sql`文件,通过下述命令加载此文件,完成表结构及基础数据的初始化:
```shell
- # 通过用户名和密码,登录 MySQL 服务器:
- mysql -u xxx -p xxx
- ...
- # 创建数据库
- CREATE DATABASE IF NOT EXISTS apache_inlong_manager;
- USE apache_inlong_manager;
- # 通过 source 命令加载上述 SQL 文件:
- mysql> source /data/apache_inlong_manager.sql;
+ # 通过用户名和密码,创建DB和表:
+ mysql -uDB_USER -pDB_PASSWD < sql/apache_inlong_manager.sql
```
-
-- 参照
[安装部署TubeMQ](https://inlong.apache.org/zh-cn/docs/modules/tubemq/quick_start.html),安装并启动
Tube 集群;
-
-- 参照 [安装部署TubeMQ
Manager](https://inlong.apache.org/zh-cn/docs/modules/tubemq/tubemq-manager/quick_start.html),安装并启动
- TubeManager。
-## 2 部署、启动 manager-web
+## 部署、启动 manager-web
**manager-web 是与前端页面交互的后台服务。**
-### 2.1 准备安装文件
-
-安装文件在 `inlong-manager-web` 目录下。
-
-### 2.2 修改配置
+### 修改配置
前往 `inlong-manager-web` 目录,修改 `conf/application.properties` 文件:
@@ -48,8 +34,8 @@ spring.profiles.active=dev
```properties
spring.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/apache_inlong_manager?useSSL=false&allowPublicKeyRetrieval=true&characterEncoding=UTF-8&nullCatalogMeansCurrent=true&serverTimezone=GMT%2b8
- spring.datasource.username=xxxxxx
- spring.datasource.password=xxxxxx
+ spring.datasource.username=DB_USER
+ spring.datasource.password=DB_PASSWD
```
2) 修改 Tube 和 ZooKeeper 集群的连接信息,其中 `cluster.zk.root` 建议使用默认值:
@@ -70,16 +56,10 @@ spring.profiles.active=dev
sort.appName=inlong_app
```
-### 2.3 启动服务
+### 启动服务
进入解压后的目录,执行 `sh bin/startup.sh` 启动服务,查看日志 `tailf
log/manager-web.log`,若出现类似下面的日志,说明服务启动成功:
```shell
Started InLongWebApplication in 6.795 seconds (JVM running for 7.565)
-```
-
-## 3 服务访问验证
-
-在浏览器中访问如下地址,验证 manager-web 服务:
-
-地址:<http://[manager_web_ip]:[manager_web_port]/api/inlong/manager/doc.html#/home>
+```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/overview.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/overview.md
index fc0eb53..bc8f1ce 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/overview.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/overview.md
@@ -1,21 +1,11 @@
---
-title: 安装部署
+title: 概览
+sidebar_position: 1
---
-## 1 关于 WebSite
-WebSite[Apache InLong
incubator](https://github.com/apache/incubator-inlong)的管控端。
+WebSite 是 [Apache InLong](https://github.com/apache/incubator-inlong)的管控端。
-## 2 编译
-```
-mvn package -DskipTests -Pdocker -pl inlong-website
-```
-
-## 3 运行
-```
-docker run -d --name website -e MANAGER_API_ADDRESS=127.0.0.1:8083 -p 80:80
inlong/website
-```
-
-## 4 开发指引
+## 开发指引
确认 `nodejs >= 12.0` 已经安装。
@@ -34,14 +24,14 @@ web服务器的启动依赖于后端服务 `manger api` 接口。
您应该先启动后端服务器,然后将 `/inlong-website/src/setupProxy.js` 中的变量`target` 设置为api服务的地址。
-### 4.1 测试
+### 测试
运行 `npm test` 或 `yarn test`
在交互式观察模式下启动测试运行器。
有关更多信息,请参阅有关 [运行测试](https://create-react-app.dev/docs/running-tests/) 的部分。
-### 4.2 构建
+### 构建
首先保证项目已运行过 `npm install` 或 `yarn install` 安装了 `node_modules`。
@@ -53,4 +43,5 @@ web服务器的启动依赖于后端服务 `manger api` 接口。
构建后代码被压缩,文件名包括哈希值。
您的应用程序已准备好部署!
-有关详细信息,请参阅有关 [deployment](https://create-react-app.dev/docs/deployment/) 的部分。
\ No newline at end of file
+有关详细信息,请参阅有关 [deployment](https://create-react-app.dev/docs/deployment/) 的部分。
+
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/quick_start.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/quick_start.md
new file mode 100644
index 0000000..40e7000
--- /dev/null
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/modules/website/quick_start.md
@@ -0,0 +1,20 @@
+---
+title: 安装部署
+sidebar_position: 2
+---
+
+## 准备镜像
+从仓库拉起最新镜像:
+```
+docker pull inlong/website:latest
+```
+或者从源码编译镜像:
+```
+mvn package -DskipTests -Pdocker -pl inlong-website
+```
+
+## 运行
+```
+# MANAGER_API_ADDRESS 环境变量 使用inlong-manager-web 部署地址替换
+docker run -d --name website -e MANAGER_API_ADDRESS=127.0.0.1:8083 -p 80:80
inlong/website
+```
\ No newline at end of file
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/hive_example.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/hive_example.md
index 147ec6f..572634b 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/hive_example.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/hive_example.md
@@ -18,23 +18,23 @@ Hive 是运行的必备组件。如果您的机器上没有 Hive,这里推荐
## 3 新建接入
-部署完毕后,首先我们进入 “数据接入” 界面,点击右上角的 “新建接入”,新建一条接入,按下图所示填入业务信息
+部署完毕后,首先我们进入 “数据接入” 界面,点击右上角的 “新建接入”,新建一条接入,按下图所示填入数据流 Group 信息
-<img src="../../img/create-business.png" align="center" alt="Create Business"/>
+<img src="img/create-group.png" align="center" alt="Create Group"/>
然后点击下一步,按下图所示填入数据流信息
-<img src="../../img/create-stream.png" align="center" alt="Create Stream"/>
+<img src="img/create-stream.png" align="center" alt="Create Stream"/>
注意其中消息来源选择“文件”,暂时不用新建数据源。
然后我们在下面的“数据信息”一栏中填入以下信息
-<img src="../../img/data-information.png" align="center" alt="Data
Information"/>
+<img src="img/data-information.png" align="center" alt="Data Information"/>
然后在数据流向中选择 Hive,并点击 “添加”,添加 Hive 配置
-<img src="../../img/hive-config.png" align="center" alt="Hive Config"/>
+<img src="img/hive-config.png" align="center" alt="Hive Config"/>
注意这里目标表无需提前创建,InLong Manager 会在接入通过之后自动为我们创建表。另外,请使用 “连接测试” 保证 InLong Manager
可以连接到你的 Hive。
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/create-group.png
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/create-group.png
new file mode 100644
index 0000000..d3218b8
Binary files /dev/null and
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/create-group.png
differ
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/create-stream.png
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/create-stream.png
new file mode 100644
index 0000000..fbd67be
Binary files /dev/null and
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/create-stream.png
differ
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/data-information.png
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/data-information.png
new file mode 100644
index 0000000..14eafe6
Binary files /dev/null and
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/data-information.png
differ
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/hive-config.png
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/hive-config.png
new file mode 100644
index 0000000..df236b3
Binary files /dev/null and
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/quick_start/img/hive-config.png
differ
diff --git a/static/img/create-business.png b/static/img/create-business.png
deleted file mode 100644
index 28b0798..0000000
Binary files a/static/img/create-business.png and /dev/null differ
diff --git a/static/img/create-stream.png b/static/img/create-stream.png
deleted file mode 100644
index 0ea0e38..0000000
Binary files a/static/img/create-stream.png and /dev/null differ
diff --git a/static/img/data-information.png b/static/img/data-information.png
deleted file mode 100644
index dbbd8c1..0000000
Binary files a/static/img/data-information.png and /dev/null differ
diff --git a/static/img/hive-config.png b/static/img/hive-config.png
deleted file mode 100644
index b857755..0000000
Binary files a/static/img/hive-config.png and /dev/null differ