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

peacewong pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-linkis-website.git


The following commit(s) were added to refs/heads/dev by this push:
     new 1a06397  add Source Code Directory Structure md
     new d47cfb9  Merge pull request #47 from casionone/dev
1a06397 is described below

commit 1a06397d7e637cc4032ddc8d05489c08c59ce25d
Author: casionone <[email protected]>
AuthorDate: Sun Dec 19 20:50:34 2021 +0800

    add Source Code Directory Structure md
---
 .../computation_governance_services/overview.md    |  2 +-
 .../sourcecode_hierarchical_structure.md           | 65 ++++++++++++++++++++
 docs/deployment/web_install.md                     |  2 +-
 docusaurus.config.js                               |  2 +-
 .../sourcecode_hierarchical_structure.md           | 69 ++++++++++++++++++++++
 .../current/deployment/web_install.md              |  2 +-
 .../sourcecode_hierarchical_structure.md           | 63 ++++++++++++++++++++
 .../computation_governance_services/overview.md    |  2 +-
 .../sourcecode_hierarchical_structure.md           | 59 ++++++++++++++++++
 9 files changed, 261 insertions(+), 5 deletions(-)

diff --git a/docs/architecture/computation_governance_services/overview.md 
b/docs/architecture/computation_governance_services/overview.md
index 0a3e16e..1338bf9 100644
--- a/docs/architecture/computation_governance_services/overview.md
+++ b/docs/architecture/computation_governance_services/overview.md
@@ -20,7 +20,7 @@ sidebar_position: 0
 
 The new architecture of Linkis1.0 computing governance service can solve these 
problems well.  
 ## Architecture Diagram  
-![linkis Computation 
Gov](/Images-zh/Architecture/linkis-computation-gov-01.png)  
+![linkis Computation Gov](/Images/Linkis_1.0_architecture.png)  
 **Operation process optimization:** Linkis1.0 will optimize the overall 
execution process of the job, from submission —\> preparation —\>
 Perform three stages to fully upgrade Linkis's Job execution architecture, as 
shown in the following figure:  
 ![](/Images-zh/Architecture/linkis-computation-gov-02.png)  
diff --git a/docs/deployment/sourcecode_hierarchical_structure.md 
b/docs/deployment/sourcecode_hierarchical_structure.md
new file mode 100644
index 0000000..771bc09
--- /dev/null
+++ b/docs/deployment/sourcecode_hierarchical_structure.md
@@ -0,0 +1,65 @@
+---
+title:  Source Code Directory Structure
+sidebar_position: 5
+---
+
+# Source Code Directory Structure
+
+> Linkis source code hierarchical directory structure description, if you want 
to learn more about Linkis modules, please check [Linkis related architecture 
design](architecture/overview.md)
+
+```html
+|-- assembly-combined-package //Compile the module of the entire project
+|        |-- assembly-combined
+|        |-- bin
+|        |-- config
+|        |-- src
+|-- linkis-commons //Core abstraction, which contains all common modules
+|        |-- linkis-common //Common module, built-in many common tools
+|        |-- linkis-hadoop-common
+|        |-- linkis-httpclient //Java SDK top-level interface
+|        |-- linkis-message-scheduler
+|        |-- linkis-module
+|        |-- linkis-mybatis //SpringCloud's Mybatis module
+|        |-- linkis-protocol
+|        |-- linkis-rpc //RPC module, complex two-way communication based on 
Feign
+|        |-- linkis-scheduler //General scheduling module
+|        |-- linkis-storage
+|        |
+|-- linkis-computation-governance //computing governance service
+|        |-- linkis-client //Java SDK, users can directly access Linkis 
through Client
+|        |-- linkis-computation-governance-common
+|        |-- linkis-engineconn
+|        |-- linkis-engineconn-manager
+|        |-- linkis-entrance //General low-level entrance module
+|        |-- linkis-entrance-client
+|        |-- linkis-jdbc-driver
+|        |-- linkis-manager
+|
+|-- linkis-engineconn-plugins
+|        |-- engineconn-plugins
+|        |-- linkis-engineconn-plugin-framework
+|
+|-- linkis-extensions
+|        |-- linkis-io-file-client
+|-- linkis-orchestrator
+|        |-- linkis-code-orchestrator
+|        |-- linkis-computation-orchestrator
+|        |-- linkis-orchestrator-core
+|        |-- plugin
+|-- linkis-public-enhancements //Public enhancement services
+|        |-- linkis-bml // Material library
+|        |-- linkis-context-service //Unified context
+|        |-- linkis-datasource //Data source service
+|        |-- linkis-publicservice //Public Service
+|-- linkis-spring-cloud-services //Microservice governance
+|        |-- linkis-service-discovery
+|        |-- linkis-service-gateway //Gateway
+|-- db //Database information
+|-- license-doc //license details
+|        |-- license //The license of the background project
+|         - ui-license //License of linkis management desk
+|-- tool //Tool script
+|        |-- check.sh
+|        |-- dependencies
+|
+|-- web //Management desk code of linkis
\ No newline at end of file
diff --git a/docs/deployment/web_install.md b/docs/deployment/web_install.md
index e09c4a6..a9b5d92 100644
--- a/docs/deployment/web_install.md
+++ b/docs/deployment/web_install.md
@@ -1,6 +1,6 @@
 ---
 title: Linkis Console Deployment
-sidebar_position: 4
+sidebar_position: 6
 ---
 
 Linkis 1.0 provides a Linkis Console, which provides functions such as 
displaying Linis's global history, modifying user parameters, managing ECM and 
microservices, etc. Before deploying the front-end management console, you need 
to deploy the Linkis back-end. Linkis deployment manual See: [Linkis Deployment 
Manual](deployment/quick_deploy.md)
diff --git a/docusaurus.config.js b/docusaurus.config.js
index 28fc238..f6bd422 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -139,7 +139,7 @@ const darkCodeTheme = 
require('prism-react-renderer/themes/dracula');
               },
               {
                 label: "Events",
-                to: "https://www.apache.org/events/";,
+                to: "https://www.apache.org/events/current-event";,
               },
               {
                 label: "Security",
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/sourcecode_hierarchical_structure.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/sourcecode_hierarchical_structure.md
new file mode 100644
index 0000000..8774cf0
--- /dev/null
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/sourcecode_hierarchical_structure.md
@@ -0,0 +1,69 @@
+---
+title: 源码目录结构
+sidebar_position: 5
+---
+
+# Linkis源码目录结构
+
+> 
Linkis代码层级目录结构说明,如果您想详细了解Linkis各个模块,请查看[Linkis的相关架构设计](architecture/overview.md)
+
+
+```html
+
+|-- assembly-combined-package //编译整个项目的模块
+|        |-- assembly-combined
+|        |-- bin
+|        |-- config
+|        |-- src
+|-- linkis-commons  //核心抽象,里面放有所有的公用模块
+|        |-- linkis-common  //通用模块,内置很多通用工具类
+|        |-- linkis-hadoop-common
+|        |-- linkis-httpclient  //Java SDK顶层接口
+|        |-- linkis-message-scheduler
+|        |-- linkis-module
+|        |-- linkis-mybatis  //SpringCloud的Mybatis模块
+|        |-- linkis-protocol
+|        |-- linkis-rpc      //RPC模块,基于Feign实现的复杂双向通信
+|        |-- linkis-scheduler //通用调度模块
+|        |-- linkis-storage
+|        |
+|-- linkis-computation-governance //计算治理服务
+|        |-- linkis-client  //Java SDK,用户通过Client可直接访问Linkis
+|        |-- linkis-computation-governance-common
+|        |-- linkis-engineconn
+|        |-- linkis-engineconn-manager
+|        |-- linkis-entrance //通用底层entrance模块
+|        |-- linkis-entrance-client
+|        |-- linkis-jdbc-driver
+|        |-- linkis-manager
+|    
+|-- linkis-engineconn-plugins
+|        |-- engineconn-plugins
+|        |-- linkis-engineconn-plugin-framework
+|    
+|-- linkis-extensions
+|        |-- linkis-io-file-client
+|-- linkis-orchestrator
+|        |-- linkis-code-orchestrator
+|        |-- linkis-computation-orchestrator
+|        |-- linkis-orchestrator-core
+|        |-- plugin  
+|-- linkis-public-enhancements //公共增强服务
+|        |-- linkis-bml  // 物料库
+|        |-- linkis-context-service //统一上下文
+|        |-- linkis-datasource   //数据源服务
+|        |-- linkis-publicservice  //公共服务
+|-- linkis-spring-cloud-services //微服务治理
+|        |-- linkis-service-discovery
+|        |-- linkis-service-gateway //网关Gateway
+|-- db  //数据库信息
+|-- license-doc //license的详细信息
+|        |-- license //后台项目的license
+|         -- ui-license //linkis管理台的license
+|-- tool //工具脚本
+|        |-- check.sh
+|        |-- dependencies
+|
+|-- web  //linkis的管理台代码
+
+```
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/web_install.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/web_install.md
index 578e642..899df00 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/web_install.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/web_install.md
@@ -1,6 +1,6 @@
 ---
 title: 前端管理台部署
-sidebar_position: 4
+sidebar_position: 6
 ---
 
 
Linkis在1.0提供了单独的前端管理台功能,提供了展示Linis的全局历史、修改用户参数、管理ECM和微服务等功能,部署前端管理台前需要先将Linkis后端进行部署,Linkis的部署手册见:[Linkis部署手册](deployment/quick_deploy.md)
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/sourcecode_hierarchical_structure.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/sourcecode_hierarchical_structure.md
new file mode 100644
index 0000000..83741ee
--- /dev/null
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.0.2/deployment/sourcecode_hierarchical_structure.md
@@ -0,0 +1,63 @@
+---
+title: 源码目录结构
+sidebar_position: 5
+---
+
+# Linkis源码目录结构
+
+> 
Linkis代码层级目录结构说明,如果您想详细了解Linkis各个模块,请查看[Linkis的相关架构设计](architecture/overview.md)
+
+
+```html
+
+|-- assembly-combined-package //编译整个项目的模块
+|        |-- assembly-combined
+|        |-- bin
+|        |-- config
+|        |-- src
+|-- linkis-commons  //核心抽象,里面放有所有的公用模块
+|        |-- linkis-common  //通用模块,内置很多通用工具类
+|        |-- linkis-hadoop-common
+|        |-- linkis-httpclient  //Java SDK顶层接口
+|        |-- linkis-message-scheduler
+|        |-- linkis-module
+|        |-- linkis-mybatis  //SpringCloud的Mybatis模块
+|        |-- linkis-protocol
+|        |-- linkis-rpc      //RPC模块,基于Feign实现的复杂双向通信
+|        |-- linkis-scheduler //通用调度模块
+|        |-- linkis-storage
+|        |
+|-- linkis-computation-governance //计算治理服务
+|        |-- linkis-client  //Java SDK,用户通过Client可直接访问Linkis
+|        |-- linkis-computation-governance-common
+|        |-- linkis-engineconn
+|        |-- linkis-engineconn-manager
+|        |-- linkis-entrance //通用底层entrance模块
+|        |-- linkis-entrance-client
+|        |-- linkis-jdbc-driver
+|        |-- linkis-manager
+|    
+|-- linkis-engineconn-plugins
+|        |-- engineconn-plugins
+|        |-- linkis-engineconn-plugin-framework
+|    
+|-- linkis-extensions
+|        |-- linkis-io-file-client
+|-- linkis-orchestrator
+|        |-- linkis-code-orchestrator
+|        |-- linkis-computation-orchestrator
+|        |-- linkis-orchestrator-core
+|        |-- plugin  
+|-- linkis-public-enhancements //公共增强服务
+|        |-- linkis-bml  // 物料库
+|        |-- linkis-context-service //统一上下文
+|        |-- linkis-datasource   //数据源服务
+|        |-- linkis-publicservice  //公共服务
+|-- linkis-spring-cloud-services //微服务治理
+|        |-- linkis-service-discovery
+|        |-- linkis-service-gateway //网关Gateway
+|-- db  //数据库信息
+|
+|-- web  //linkis的管理台代码
+
+```
\ No newline at end of file
diff --git 
a/versioned_docs/version-1.0.2/architecture/computation_governance_services/overview.md
 
b/versioned_docs/version-1.0.2/architecture/computation_governance_services/overview.md
index a7ec4ed..9a1c1dd 100644
--- 
a/versioned_docs/version-1.0.2/architecture/computation_governance_services/overview.md
+++ 
b/versioned_docs/version-1.0.2/architecture/computation_governance_services/overview.md
@@ -20,7 +20,7 @@ sidebar_position: 0
 
 The new architecture of Linkis1.0 computing governance service can solve these 
problems well.  
 ## Architecture Diagram  
-![linkis Computation 
Gov](/Images-zh/Architecture/linkis-computation-gov-01.png)  
+![linkis Computation Gov](/Images/Linkis_1.0_architecture.png)  
 **Operation process optimization:** Linkis1.0 will optimize the overall 
execution process of the job, from submission —\> preparation —\>
 Perform three stages to fully upgrade Linkis's Job execution architecture, as 
shown in the following figure:  
 ![](/Images-zh/Architecture/linkis-computation-gov-02.png)  
diff --git 
a/versioned_docs/version-1.0.2/deployment/sourcecode_hierarchical_structure.md 
b/versioned_docs/version-1.0.2/deployment/sourcecode_hierarchical_structure.md
new file mode 100644
index 0000000..2af94ee
--- /dev/null
+++ 
b/versioned_docs/version-1.0.2/deployment/sourcecode_hierarchical_structure.md
@@ -0,0 +1,59 @@
+---
+title:  Source Code Directory Structure
+sidebar_position: 5
+---
+
+# Source Code Directory Structure
+
+> Linkis source code hierarchical directory structure description, if you want 
to learn more about Linkis modules, please check [Linkis related architecture 
design](architecture/overview.md)
+
+```html
+|-- assembly-combined-package //Compile the module of the entire project
+|        |-- assembly-combined
+|        |-- bin
+|        |-- config
+|        |-- src
+|-- linkis-commons //Core abstraction, which contains all common modules
+|        |-- linkis-common //Common module, built-in many common tools
+|        |-- linkis-hadoop-common
+|        |-- linkis-httpclient //Java SDK top-level interface
+|        |-- linkis-message-scheduler
+|        |-- linkis-module
+|        |-- linkis-mybatis //SpringCloud's Mybatis module
+|        |-- linkis-protocol
+|        |-- linkis-rpc //RPC module, complex two-way communication based on 
Feign
+|        |-- linkis-scheduler //General scheduling module
+|        |-- linkis-storage
+|        |
+|-- linkis-computation-governance //computing governance service
+|        |-- linkis-client //Java SDK, users can directly access Linkis 
through Client
+|        |-- linkis-computation-governance-common
+|        |-- linkis-engineconn
+|        |-- linkis-engineconn-manager
+|        |-- linkis-entrance //General low-level entrance module
+|        |-- linkis-entrance-client
+|        |-- linkis-jdbc-driver
+|        |-- linkis-manager
+|
+|-- linkis-engineconn-plugins
+|        |-- engineconn-plugins
+|        |-- linkis-engineconn-plugin-framework
+|
+|-- linkis-extensions
+|        |-- linkis-io-file-client
+|-- linkis-orchestrator
+|        |-- linkis-code-orchestrator
+|        |-- linkis-computation-orchestrator
+|        |-- linkis-orchestrator-core
+|        |-- plugin
+|-- linkis-public-enhancements //Public enhancement services
+|        |-- linkis-bml // Material library
+|        |-- linkis-context-service //Unified context
+|        |-- linkis-datasource //Data source service
+|        |-- linkis-publicservice //Public Service
+|-- linkis-spring-cloud-services //Microservice governance
+|        |-- linkis-service-discovery
+|        |-- linkis-service-gateway //Gateway
+|-- db //Database information
+|
+|-- web //Management desk code of linkis
\ No newline at end of file

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to