add glossary doc (#574)
* add glossary doc
diff --git a/community/microservice-division.md b/community/microservice-division.md
deleted file mode 100644
index 2092553..0000000
--- a/community/microservice-division.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-title: Division of Microservices
-sidebar_position: 11
----
-## Introduction to service
-
-Linkis is developed based on the microservice architecture, and its services can be divided into 3 types of service groups (groups): computing governance service group, public enhancement service group and microservice governance service group.
-- Computation Governance Services: The core service for processing tasks, supporting the 3 main stages of the computing task/request processing flow (submit->prepare->execute);
-- Public Enhancement Services: Provide basic support services, including context services, engine/udf material management services, historical tasks and other public services and data source management services;
-- Microservice Governance Services: Customized Spring Cloud Gateway, Eureka. Provides a base for microservices.
-
-The microservices included in each service group (group) are as follows:
-
-| Belonging to the microservice group (group) | Service name | Main functions |
-| ---- | ---- | ---- |
-| MGS | linkis-mg-eureka | Responsible for service registration and discovery, other upstream components will also reuse the linkis registry, such as dss|
-| MGS | linkis-mg-gateway | As the gateway entrance of Linkis, it is mainly responsible for request forwarding and user access authentication |
-| CGS | linkis-cg-entrance | The task submission entry is a service responsible for receiving, scheduling, forwarding execution requests, and life cycle management of computing tasks, and can return calculation results, logs, and progress to the caller |
-| CGS | linkis-cg-linkismanager| Provides AppManager (application management), ResourceManager (resource management), LabelManager (label management) capabilities |
-| CGS | linkis-cg-engineconnplugin| The engine connector plug-in provides the basic function support for freely extending the Linkis engine, and allows the introduction of new engines into the execution life cycle of computing middleware by implementing the established plug-in interfaces, enabling new engines to be implemented Rapid Deployment |
-| CGS | linkis-cg-engineconnmanager | The manager of EngineConn, which provides the life cycle management of the engine, and reports the load information and its own health status to the ResourceManager |
-| CGS | linkis-cg-engineconn| is the actual connection service with the underlying computing storage engine (Hive/Spark), and contains session information with the actual engine. For the underlying computing storage engine, it acts as a client |
-| PES | linkis-ps-publicservice|Provide functions such as unified configuration management, context service, BML material library, data source management, microservice management and historical task query for other microservice modules |
-| PES | linkis-ps-cs | Context service, solving a data application development process, data and information sharing across multiple services |
-| PES | linkis-ps-metadatamanager| Only provides metadata query service Provides the basic query function of database data metadata, provides http interface externally, and provides rpc service internally, which is convenient for the data source management module to call through rpc to conduct Data source connection test |
-| PES | linkis-ps-data-source-manager | Data source management service Perform basic management of data sources, and provide http interfaces such as adding, querying, modifying, and connection testing of external data sources. The rpc service is provided internally, which is convenient for the data element management module to call through rpc and query the necessary information needed to establish a connection to the database|
-
-
-## Basic terms explained
-| Introduction | Full name in English | Full name in Chinese |
-|--------- |------------------------- |--------------- -------|
-| CG/cg | Computation Governance | Computation Governance |
-| MG/mg | Microservice Governance | Microservice Governance |
-| PS/ps | Public Service | Public Service |
-| CS/cs | Context Service | Unified Context |
-| DSS/dss | DataSphere Studio | Data Application Integrated Development Framework |
-| EC/ec | EngineConn | Engine Connector |
-| ECM/ecm | EngineConnManager | Management of Engine Connectors |
-| ECP/ecp | EngineConnPlugin | Engine Connector Plugin |
-| RM/rm | ResourceManager | Resource manager for managing node resources |
-| PES/pes | Public Enhancement Services |
-| DMS/dms | Data Source Manager Service | Data Source Management Service |
-| MDS/mds | MetaData Manager Service | Metadata Management Service |
-| BML/bml | BigData Material library |
-| UJES | Unified Job Execute Service | Unified Job Execute Service |
-| DDL/ddl | Data Definition Language | Database Definition Language |
-| DML/dml | Data Manipulation Language | Data Manipulation Language |
\ No newline at end of file
diff --git a/docs/configuration.md b/docs/configuration.md
index d8362cf..d0a1e36 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1,4 +1,4 @@
---
-title: 建议配置
+title: Hardware Environment
sidebar_position: 0.1
---
\ No newline at end of file
diff --git a/docs/deployment/deploy-quick.md b/docs/deployment/deploy-quick.md
index 85e888e..408ced7 100644
--- a/docs/deployment/deploy-quick.md
+++ b/docs/deployment/deploy-quick.md
@@ -279,7 +279,7 @@
### 3.6 Check whether the service starts normally
Visit the eureka service page (http://eurekaip:20303),
The 1.x.x version will start 8 Linkis microservices by default, and the linkis-cg-engineconn service in the figure below will be started only for running tasks
-
+
```shell script
LINKIS-CG-ENGINECONNMANAGER Engine Management Services
diff --git a/docs/glossary.md b/docs/glossary.md
new file mode 100644
index 0000000..5b2110a
--- /dev/null
+++ b/docs/glossary.md
@@ -0,0 +1,103 @@
+---
+title: Glossary
+sidebar_position: 0.2
+---
+
+## 1. Glossary
+
+Linkis is developed based on the microservice architecture, and its services can be divided into 3 types of service groups (groups): computing governance service group, public enhancement service group and microservice governance service group.
+- Computation Governance Services: The core service for processing tasks, supporting the 4 main stages of the computing task/request processing flow (submit->prepare->execute->result);
+- Public Enhancement Services: Provide basic support services, including context services, engine/udf material management services, job history and other public services and data source management services;
+- Microservice Governance Services: Customized Spring Cloud Gateway, Eureka. Provides a base for microservices
+
+The following will introduce the key Glossary and services of these three groups of services:
+
+### 1.1 Key module nouns
+
+| Abbreviation | Name | Main Functions |
+|--------- |------------------------- |--------------- -------|
+| MG/mg | Microservice Governance | Microservice Governance |
+| CG/cg | Computation Governance | Computation Governance |
+| EC/ec | EngineConn | Engine Connector |
+| - | Engine | The underlying computing storage engine, such as spark, hive, shell |
+| ECM/ecm | EngineConnManager | Management of Engine Connectors |
+| ECP/ecp | EngineConnPlugin | Engine Connector Plugin |
+| RM/rm | ResourceManager | Resource manager for managing task resource and user resource usage and control |
+| AM/am | AppManager | Application Manager to manage EngineConn and ECM services |
+| LM/lm | LinkisManager | Linkis manager service, including: RM, AM, LabelManager and other modules |
+| PES/pes | Public Enhancement Services |
+| - | Orchestrator | Orchestrator, used for Linkis task orchestration, task multi-active, mixed calculation, AB and other policy support |
+| UJES | Unified Job Execute Service | Unified Job Execute Service |
+| DDL/ddl | Data Definition Language | Database Definition Language |
+| DML/dml | Data Manipulation Language | Data Manipulation Language |
+
+### 1.2 Mission key nouns
+
+- JobRequest: job request, corresponding to the job submitted by the Client to Linkis, including the execution content, user, label and other information of the job
+- RuntimeMap: task runtime parameters, task level take effect, such as data source information for placing multiple data sources
+- StartupMap: Engine connector startup parameters, used to start the EngineConn connected machine, the EngineConn process takes effect, such as setting spark.executor.memory=4G
+- UserCreator: Task creator information: contains user information User and Client submitted application information Creator, used for tenant isolation of tasks and resources
+- submitUser: task submit user
+- executeUser: the real execution user of the task
+- JobSource: Job source information, record the IP or script address of the job
+- errorCode: error code, task error code information
+- JobHistory: task history persistence module, providing historical information query of tasks
+- ResultSet: The result set, the result set corresponding to the task, is saved with the .dolphin file suffix by default
+- JobInfo: Job runtime information, such as logs, progress, resource information, etc.
+- Resource: resource information, each task consumes resources
+- RequestTask: The smallest execution unit of EngineConn, the task unit transmitted to EngineConn for execution
+
+
+
+## 2. Service Introduction
+
+This section mainly introduces the services of Linkis, what services will be available after Linkis is started, and the functions of the services.
+
+## 2.1 Service List
+
+After Linkis is started, the microservices included in each service group (group) are as follows:
+
+| Belonging to the microservice group (group) | Service name | Main functions |
+| ---- | ---- | ---- |
+| MGS | linkis-mg-eureka | Responsible for service registration and discovery, other upstream components will also reuse the linkis registry, such as dss|
+| MGS | linkis-mg-gateway | As the gateway entrance of Linkis, it is mainly responsible for request forwarding and user access authentication |
+| CGS | linkis-cg-entrance | The task submission entry is a service responsible for receiving, scheduling, forwarding execution requests, and life cycle management of computing tasks, and can return calculation results, logs, and progress to the caller |
+| CGS | linkis-cg-linkismanager| Provides AppManager (application management), ResourceManager (resource management), LabelManager (label management), Engine connector plug-in manager capabilities |
+| CGS | linkis-cg-engineconnmanager | Manager for EngineConn, providing lifecycle management of engines |
+| CGS | linkis-cg-engineconn| The engine connector service is the actual connection service with the underlying computing storage engine (Hive/Spark), including session information with the actual engine. For the underlying computing storage engine, it acts as a client and is triggered and started by tasks|
+| PES | linkis-ps-publicservice|Public Enhanced Service Group Module Service, which provides functions such as unified configuration management, context service, BML material library, data source management, microservice management, and historical task query for other microservice modules |
+
+All services seen by open source after startup are as follows:
+
+
+## 2.1 Detailed explanation of public enhanced services
+After version 1.3.1, the Public Enhanced Service Group (PES) merges related module services into one service linkis-ps-publicservice by default to provide related functions. Of course, if you want to deploy separately, it is also supported. You only need to package and deploy the services of the corresponding modules.
+The combined public enhanced service mainly includes the following functions:
+
+| Abbreviation | Service Name | Main Functions |
+|--------- |------------------------- |--------------- -------|
+| CS/cs | Context Service | Context Service, used to transfer result sets, variables, files, etc. between tasks |
+| UDF/udf | UDF | UDF management module, provides management functions for UDF and functions, supports sharing and version control |
+| variable | Variable | Global custom module, providing management functions for global custom variables |
+| script | Script-dev | Script file operation service, providing script editing and saving, script directory management functions |
+| jobHistory | JobHistory | Task history persistence module, providing historical information query of tasks |
+| BML/bml | BigData Material library |
+| - | Configuration | Configuration management, providing management and viewing of configuration parameters |
+| - | instance-label | Microservice management service, providing mapping management functions for microservices and routing labels |
+| - | error-code | Error code management, providing the function of managing through error codes |
+| DMS/dms | Data Source Manager Service | Data Source Management Service |
+| MDS/mds | MetaData Manager Service | Metadata Management Service |
+| - | linkis-metadata | Provides Hive metadata information viewing function, which will be merged into MDS later |
+| - | basedata-manager | Basic data management, used to manage Linkis' own basic metadata information |
+
+### 3 Module Introduction
+This section mainly introduces the major modules and functions of Linkis.
+
+- linkis-commons: The public modules of linkis, including public tool modules, RPC modules, microservice foundation and other modules
+- linkis-computation-governance: Computing governance module, including modules for computing governance multiple services: Entrance, LinkisManager, EngineConnManager, EngineConn, etc.
+- linkis-engineconn-plugins: Engine connector plugin module, contains all engine connector plugin implementations
+- linkis-extensions: The extension enhancement module of Linkis, not a necessary function module, now mainly includes the IO module for file proxy operation
+- linkis-orchestrator: Orchestration module for Linkis task orchestration, advanced strategy support such as task multi-active, mixed calculation, AB, etc.
+- linkis-public-enhancements: public enhancement module, which contains all public services for invoking linkis internal and upper-layer application components
+- linkis-spring-cloud-services: Spring cloud related service modules, including gateway, registry, etc.
+- linkis-web: front-end module
\ No newline at end of file
diff --git a/docs/microservice-division.md b/docs/microservice-division.md
deleted file mode 100644
index dd8913c..0000000
--- a/docs/microservice-division.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-title: 微服务划分
-sidebar_position: 0.2
----
-## 服务的简介
-
-Linkis 基于微服务架构开发,其服务可以分为3类服务群(组):计算治理服务组、公共增强服务组和微服务治理服务组。
-- 计算治理服务组(Computation Governance Services):处理任务的核心服务,支持计算任务/请求处理流程的3个主要阶段(提交->准备->执行);
-- 公共增强服务组(Public Enhancement Services):提供基础的支撑服务,包括上下文服务、引擎/udf物料的管理服务、历史任务等公共服务及数据源的管理服务等;
-- 微服务治理服务组(Microservice Governance Services):定制化的Spring Cloud Gateway、Eureka。提供微服务的基础底座。
-
-各个服务群(组)下包括的微服务如下:
-
-| 归属的微服务群(组) | 服务名 | 主要功能 |
-| ---- | ---- | ---- |
-| MGS | linkis-mg-eureka | 负责服务注册与发现,上游其他组件也会复用linkis的注册中心,如dss|
-| MGS | linkis-mg-gateway | 作为Linkis的网关入口,主要承担了请求转发、用户访问认证 |
-| CGS | linkis-cg-entrance | 任务提交入口是用来负责计算任务的接收、调度、转发执行请求、生命周期管理的服务,并且能把计算结果、日志、进度返回给调用方 |
-| CGS | linkis-cg-linkismanager|提供了AppManager(应用管理)、ResourceManager(资源管理)、LabelManager(标签管理)的能力 |
-| CGS | linkis-cg-engineconnplugin| 引擎连接器插件,提供自由扩展Linkis引擎的基础功能支持,允许以实现既定的插件化接口的方式引入新引擎到计算中间件的执行生命周期,能够实现新引擎的快速部署 |
-| CGS | linkis-cg-engineconnmanager | EngineConn的管理器,提供引擎的生命周期管理,同时向ResourceManager汇报负载信息和自身的健康状况 |
-| CGS | linkis-cg-engineconn| 是与底层计算存储引擎(Hive/Spark)的实际连接的服务,包含了与实际引擎的会话信息。对于底层计算存储引擎来说 它充当了一个客户端的角色 |
-| PES | linkis-ps-publicservice|为其他微服务模块提供统一配置管理、上下文服务、BML物料库、数据源管理、微服务管理和历史任务查询等功能 |
-| PES | linkis-ps-cs | 上下文服务,解决一个数据应用开发流程,跨多个服务间的数据和信息共享问题 |
-| PES | linkis-ps-metadatamanager| 只提供元数据查询服务 提供数据库的数据元数据的基本查询功能,对外提供了http接口,对内提供了rpc服务,方便数据源管理模块,通过rpc调用,进行数据源的连接测试 |
-| PES | linkis-ps-data-source-manager | 数据源管理服务 对数据源的进行基本的管理,对外提数据源的新增,查询,修改,连接测试等http接口。对内提供了rpc服务 ,方便数据元管理模块通过rpc调用,查询数据库建立连接需要的必要信息|
-
-
-## 基本名词解释
-| 简介 | 英文全称 | 中文全称 |
-|-------- |------------------------- |---------------------|
-| CG/cg | Computation Governance | 计算治理 |
-| MG/mg | Microservice Governance | 微服务治理 |
-| PS/ps | Public Service | 公共服务 |
-| CS/cs | Context Service | 统一上下文 |
-| DSS/dss | DataSphere Studio | 数据应用集成开发框架 |
-| EC/ec | EngineConn | 引擎连接器 |
-| ECM/ecm | EngineConnManager | 引擎连接器的管理 |
-| ECP/ecp | EngineConnPlugin | 引擎连接器插件 |
-| RM/rm | ResourceManager | 资源管理器,用于管理节点资源 |
-| PES/pes | Public Enhancement Services | 公共增强服务 |
-| DMS/dms | Data Source Manager Service | 数据源管理服务 |
-| MDS/mds | MetaData Manager Service | 元数据管理服务 |
-| BML/bml | BigData Material library | 大数据物料库 |
-| UJES | Unified Job Execute Service | 统一作业执行服务 |
-| DDL/ddl | Data Definition Language | 数据库定义语言 |
-| DML/dml | Data Manipulation Language | 数据操纵语言 |
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md
index 892bc57..fa96bea 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deploy-quick.md
@@ -279,7 +279,7 @@
### 3.6 检查服务是否正常启动
访问eureka服务页面(http://eurekaip:20303),
1.x.x版本默认会启动8个Linkis微服务,其中图下linkis-cg-engineconn服务为运行任务才会启动
-
+
```shell script
LINKIS-CG-ENGINECONNMANAGER 引擎管理服务
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/glossary.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/glossary.md
new file mode 100644
index 0000000..110e112
--- /dev/null
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/glossary.md
@@ -0,0 +1,105 @@
+---
+title: 名词解释和服务介绍
+sidebar_position: 0.2
+---
+
+## 1.名词解释
+
+Linkis 基于微服务架构开发,其服务可以分为3类服务群(组):计算治理服务组、公共增强服务组和微服务治理服务组。
+- 计算治理服务组(Computation Governance Services):处理任务的核心服务,支持计算任务/请求处理流程的4个主要阶段(提交->准备->执行->结果);
+- 公共增强服务组(Public Enhancement Services):提供基础的支撑服务,包括上下文服务、引擎/udf物料的管理服务、历史任务等公共服务及数据源的管理服务等;
+- 微服务治理服务组(Microservice Governance Services):定制化的Spring Cloud Gateway、Eureka。提供微服务的基础底座
+
+下面将对这三组服务的关键名词和服务进行介绍:
+
+### 1.1 关键模块名词
+
+首先我们了解下关键模块的名词
+
+| 简介 | 全称 | 主要功能 |
+|-------- |------------------------- |---------------------|
+| MG/mg | Microservice Governance | 微服务治理 |
+| CG/cg | Computation Governance | 计算治理 |
+| EC/ec | EngineConn | 引擎连接器 |
+| - | Engine | 底层计算存储引擎,如spark、hive、shell |
+| ECM/ecm | EngineConnManager | 引擎连接器的管理 |
+| ECP/ecp | EngineConnPlugin | 引擎连接器插件 |
+| RM/rm | ResourceManager | 资源管理器,用于管控任务资源和用户资源使用和控制 |
+| AM/am | AppManager | 应用管理器,用于管控EngineConn和ECM服务 |
+| LM/lm | LinkisManager | Linkis管理器服务,包含了:RM、AM、LabelManager等模块 |
+| PES/pes | Public Enhancement Services | 公共增强服务 |
+| - | Orchestrator | 编排器,用于Linkis任务编排,任务多活、混算、AB等策略支持 |
+| UJES | Unified Job Execute Service | 统一作业执行服务 |
+| DDL/ddl | Data Definition Language | 数据库定义语言 |
+| DML/dml | Data Manipulation Language | 数据操纵语言 |
+
+### 1.2 任务关键名词
+
+- JobRequest: 任务请求,对应Client提交给Linkis的任务,包含任务的执行内容、用户、标签等信息
+- RuntimeMap: 任务运行时参数,任务的运行时参数,任务级别生效,如放置多数据源的数据源信息
+- StartupMap: 引擎连接器启动参数,用于EngineConn连机器启动的参数,EngineConn进程生效,如设置spark.executor.memory=4G
+- UserCreator: 任务创建者信息:包含用户信息User和Client提交的应用信息Creator,用于任务和资源的租户隔离
+- submitUser: 任务提交用户
+- executeUser: 任务真实执行用户
+- JobSource: 任务来源信息,记录任务的IP或者脚本地址
+- errorCode: 错误码,任务错误码信息
+- JobHistory: 任务历史持久化模块,提供任务的历史信息查询
+- ResultSet: 结果集,任务对应的结果集,默认以.dolphin文件后缀进行保存
+- JobInfo: 任务运行时信息,如日志、进度、资源信息等
+- Resource: 资源信息,每个任务都会消耗资源
+- RequestTask: EngineConn的最小执行单元,传输给EngineConn执行的任务单元
+
+
+
+## 2. 服务介绍
+
+本节主要对Linkis的服务进行介绍,了解Linkis启动后会有哪些服务,以及服务的作用。
+
+## 2.1 服务列表
+
+Linkis启动后各个服务群(组)下包括的微服务如下:
+
+| 归属的微服务群(组) | 服务名 | 主要功能 |
+| ---- | ---- | ---- |
+| MGS | linkis-mg-eureka | 负责服务注册与发现,上游其他组件也会复用linkis的注册中心,如dss|
+| MGS | linkis-mg-gateway | 作为Linkis的网关入口,主要承担了请求转发、用户访问认证 |
+| CGS | linkis-cg-entrance | 任务提交入口是用来负责计算任务的接收、调度、转发执行请求、生命周期管理的服务,并且能把计算结果、日志、进度返回给调用方 |
+| CGS | linkis-cg-linkismanager|提供了AppManager(应用管理)、ResourceManager(资源管理)、LabelManager(标签管理)、引擎连接器插件管理的能力 |
+| CGS | linkis-cg-engineconnmanager | EngineConn的管理器,提供引擎的生命周期管理 |
+| CGS | linkis-cg-engineconn| 引擎连接器服务,是与底层计算存储引擎(Hive/Spark)的实际连接的服务,包含了与实际引擎的会话信息。对于底层计算存储引擎来说 它充当了一个客户端的角色,由任务触发启动|
+| PES | linkis-ps-publicservice|公共增强服务组模块服务,为其他微服务模块提供统一配置管理、上下文服务、BML物料库、数据源管理、微服务管理和历史任务查询等功能 |
+
+启动后开源看到的所有服务如下图:
+
+
+## 2.1 公共增强服务详解
+公共增强服务组(PES)在1.3.1版本后默认将相关模块服务合并为一个服务linkis-ps-publicservice提供相关功能,当然如果你希望分开部署也支持的。您只需要将对应模块的服务打包部署即可。
+合并后的公共增强服务,主要包含了以下功能:
+
+| 简介 | 全称 | 主要功能 |
+|-------- |------------------------- |---------------------|
+| CS/cs | Context Service | 上下文服务,用于任务间传递结果集、变量、文件等 |
+| UDF/udf | UDF | UDF管理模块,提供UDF和函数的管理功能,支持共享和版本控制 |
+| variable | Variable | 全局自定义模块,提供全局自定变量的管理功能 |
+| script | Script-dev | 脚本文件操作服务,提供脚本编辑保存、脚本目录管理功能 |
+| jobHistory | JobHistory | 任务历史持久化模块,提供任务的历史信息查询 |
+| BML/bml | BigData Material library | 大数据物料库 |
+| - | Configuration | 配置管理,提供配置参数的管理和查看的功能 |
+| - | instance-label | 微服务管理服务,提供微服务和路由标签的映射管理功能 |
+| - | error-code | 错误码管理,提供通过错误码管理的功能 |
+| DMS/dms | Data Source Manager Service | 数据源管理服务 |
+| MDS/mds | MetaData Manager Service | 元数据管理服务 |
+| - | linkis-metadata | 提供Hive元数据信息查看功能,后续将会合并到到MDS |
+| - | basedata-manager | 基础数据管理,用于管理Linkis自身的基础元数据信息 |
+
+### 3 模块介绍
+本节主要对Linkis的大模块和功能进行主要介绍
+
+- linkis-commons: linkis的公共模块,包含了公共的工具类模块、RPC模块、微服务基础等模块
+- linkis-computation-governance: 计算治理模块,包含了计算治理多个服务的模块:Entrance、LinkisManager、EngineConnManager、EngineConn等
+- linkis-engineconn-plugins: 引擎连接器插件模块,包含了所有的引擎连接器插件实现
+- linkis-extensions: Linkis的扩展增强模块,不是必要功能模块,现在主要包含了文件代理操作的IO模块
+- linkis-orchestrator: 编排模块,用于Linkis任务编排,任务多活、混算、AB等高级策略支持
+- linkis-public-enhancements: 公共增强模块,包含了所有的公共服务用于给到linkis内部和上层应用组件进行调用
+- linkis-spring-cloud-services: spring cloud相关的服务模块,包含了gateway、注册中心等
+- linkis-web: 前端模块
\ No newline at end of file
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/release.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/release.md
index bb690bd..2e90cb3 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/release.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/release.md
@@ -1,6 +1,6 @@
---
title: 版本总览
-sidebar_position: 0.1
+sidebar_position: 1
---
- [Linkis 容器化构建流程](/development/build-docker.md)
- [Linkis 容器化体验版 LDH 快速部署](/deployment/deploy-to-kubernetes.md)
diff --git a/static/Images/deployment/Linkis_combined_eureka.png b/static/Images/deployment/Linkis_combined_eureka.png
new file mode 100644
index 0000000..5bb8e2c
--- /dev/null
+++ b/static/Images/deployment/Linkis_combined_eureka.png
Binary files differ