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

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


The following commit(s) were added to refs/heads/dev by this push:
     new 99f5e04b0e update download url and release flow (#693)
99f5e04b0e is described below

commit 99f5e04b0ea31f6c52b06a1855601c1ca8819652
Author: aiceflower <[email protected]>
AuthorDate: Thu Apr 13 10:46:28 2023 +0800

    update download url and release flow (#693)
    
    Co-authored-by: aiceflower <[email protected]>
---
 community/how-to-release.md                        | 117 ++++++++++++++-
 docs/feature/ec-fix-label.md                       |   2 +-
 download/main.md                                   |  20 +--
 download/release-notes-1.3.2.md                    |  86 +++++------
 .../current/how-to-release.md                      | 163 ++++++++++-----------
 .../current/main.md                                |  20 +--
 .../current/release-notes-1.3.2.md                 |  49 +++----
 .../current/feature/ec-fix-label.md                |   2 +-
 .../version-1.3.2/current/feature/ec-fix-label.md  |   2 +-
 .../version-1.3.2/feature/ec-fix-label.md          |   2 +-
 static/Images/community/update-release.png         | Bin 0 -> 77432 bytes
 .../version-1.3.2/feature/ec-fix-label.md          |   2 +-
 12 files changed, 273 insertions(+), 192 deletions(-)

diff --git a/community/how-to-release.md b/community/how-to-release.md
index 6c5758f605..336f180eb8 100644
--- a/community/how-to-release.md
+++ b/community/how-to-release.md
@@ -602,28 +602,121 @@ $ svn delete 
https://dist.apache.org/repos/dist/release/linkis/${last_release_ve
 > It usually takes 24 hours to wait for the repository to synchronize to other 
 > data sources
 
 
-### 6.4 Update download page
+### 6.4 New version document release and download page update
 
-<font color='red'>Chinese and English documents should be updated</font>
+**Document release**
 
-The official website download address of linkis should point to the official 
address of apache
+Create a new version, create a release version based on the current version
 
-After waiting and confirming that the new release version is synced to the 
Apache mirror (https://downloads.apache.org/linkis/), update the following page:
+### step1 archive ${publish_version} version document
+```shell
+npm install
+npm run docusaurus docs:version ${publish_version}
+```
+### step2 Copy the new Chinese version document
+```shell
+cd i18n/zh-CN/docusaurus-plugin-content-docs
+cp -r current version-${publish_version}
+cp -r current.json version-${publish_version}.json
+```
+### step3 modify version.label
+```shell
+# The current.json file is modified as follows
+"message": "Next(${publish_version})" --> "message": "Next(${next_version})"
+
+# version-${publish_version}.json file is modified as follows
+"message": "Next(${publish_version})", --> "message": "${publish_version}"
+```
 
-- https://linkis.apache.org/en-US/download/main
+### Modify configuration docusaurus.config.js
+```json
+ versions: {
+        current: {
+          path: '1.2.0',
+          label: 'Next(1.2.0)'
+        },
+        '1.1.1': {
+          path: 'latest',
+        },
+      }
+->
+  versions: {
+         current: {
+           path: '1.1.3',
+           label: 'Next(1.1.3)'
+         },
+         '1.2.0': {
+           path: 'latest',
+         },
+       }
+
+ items: [
+        //Increase
+        {label: '${publish_version}', to: '/docs/latest/about/introduction'},
+        //Revise
+        {label: '${current_version}', to: '/docs/latest/about/introduction'},
+        -->
+        {label: '${current_version}', to: 
'/docs/${current_version}/about/introduction'},
+        //Revise
+        {label: 'Next(${publish_version})', to: 
'/docs/${publish_version}/about/introduction'},
+        -->
+        {label: 'Next(${next_version})', to: 
'/docs/${next_version}/about/introduction'},
+        //Revise
+        existingPath.replace('/latest', '/${current_version}')
+        -->
+        existingPath.replace('/latest', '/${publish_version}')
+]
+```
+
+**Update download page**
+
+<font color='red'>Chinese and English documents must be updated</font>
+
+Linkis official website download address should point to the official address 
of apache
+
+After waiting and confirming that the new release version is synchronized to 
the Apache mirror (https://downloads.apache.org/linkis/), update the following 
page:
+- https://linkis.apache.org/zh-CN/download/main
 - https://linkis.apache.org/download/main
+- https://linkis.apache.org/zh-CN/download/release-notes-xxx (remove rc)
+- https://linkis.apache.org/download/release-notes-1.3.0 (remove rc)
 
 ### 6.5 GitHub version released
 
-1. Merge `${release_version}-RC` branch to `master` branch (if not merged)
-2. Tag the official version, and the RC version tag during the voting process 
can be removed
-3. On the [GitHub Releases](https://github.com/apache/linkis/releases) page, 
update the version number and version description, etc.
+:::caution Caution
+Once the git tag is created, it cannot be deleted (the branch can be deleted), 
so make sure that the previous steps are all right before creating the tag.
+:::
+
+
+**step1 Create a new github release**
+
+Go to the creation page https://github.com/apache/linkis/releases/new
+Create a tag named `1.1.2` based on the previous `release-1.1.2-rc1` branch,
+Fill in the title `Apache Linkis Release-1.1.2`, write the release notes 
`https://linkis.apache.org/download/release-notes-1.1.2` link of this version
+
+```shell script
+Release-1.1.2
+Release Notes: https://linkis.apache.org/download/release-notes-1.1.2
+
+```
+![image](https://user-images.githubusercontent.com/7869972/210697538-2568c05f-20a5-4487-94f9-9e053116ba0e.png)
+
+**step2 check**
+
+![image](https://user-images.githubusercontent.com/7869972/172566107-12475a5b-2fba-4dbe-9e96-f4a7a67aa4a9.png)
+
+**step3 Merge `${release_version}-RC` branch to `master` branch (if not 
merged)**
 
 
 ## 7 Email notification version is released
 
 > Please make sure that the Apache Staging repository has been published 
 > successfully, usually mail is published 24 hours after this step
 
+**Note:**
+
+1. Before sending the ANNOUNCE email. Publishers need to subscribe to 
[email protected].  See [How to Subscribe to Mailing 
Lists](/community/how-to-subscribe)
+
+2. You need to wait for some time (about one or two days) after the ANNOUNCE 
email is sent to the [Apache ANNOUNCE mailing 
list](https://lists.apache.org/[email protected])
+
 Send email to `[email protected]`, `[email protected]`
 ```html
 title:
@@ -651,6 +744,14 @@ Linkis Resources:
 
 ```
 
+## 8 Update release information
+
+The Apache Community Health Indicator counts the most recently available 
releases. Manual updates are currently required after new versions are released.
+
+update address: https://reporter.apache.org/addrelease.html?linkis
+
+![img](/Images/community/update-release.png)
+
 
 ## Appendix
 ### Appendix one release.sh
diff --git a/docs/feature/ec-fix-label.md b/docs/feature/ec-fix-label.md
index c6627cf3ff..240ac83e97 100644
--- a/docs/feature/ec-fix-label.md
+++ b/docs/feature/ec-fix-label.md
@@ -4,7 +4,7 @@ sidebar_position: 0.3
 ---
 
 ## 1. Requirement Background
-Now when Linksi tasks are submitted, they are created or reused based on the 
tags of EngineConn (hereinafter referred to as EC), and the ECs between 
multiple tasks are random. However, for the existence of multi-tasks that need 
to be able to meet the dependencies of the tasks, execution on the same EC 
cannot be well supported. Add a new EngineConnInstanceLabel to multi-tasks to 
fix the same EC for multiple tasks.
+Now when Linkis tasks are submitted, they are created or reused based on the 
tags of EngineConn (hereinafter referred to as EC), and the ECs between 
multiple tasks are random. However, for the existence of multi-tasks that need 
to be able to meet the dependencies of the tasks, execution on the same EC 
cannot be well supported. Add a new EngineConnInstanceLabel to multi-tasks to 
fix the same EC for multiple tasks.
 
 ## 2. Instructions for use
 1. The management console adds a specific label, and the adding path is as 
follows: login to the control panel -> ECM management -> click on an ECM 
instance name -> edit the EC to be fixed -> add a label of type 
FixdEngineConnLabel.
diff --git a/download/main.md b/download/main.md
index b63f36db15..9bef235afc 100644
--- a/download/main.md
+++ b/download/main.md
@@ -9,16 +9,16 @@ Use the links below to download the Apache Linkis Releases, 
the latest release i
 
 | Version                                      | Release Date | Source         
                                                                                
                                                                                
                                                                                
                                                                                
                         | Binary                                               
              [...]
 
|----------------------------------------------|--------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------
 [...]
-| 1.3.2                                        | 2023-04-03   | 
[[Source](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.sha512)]
 | 
[[Binary](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-bin.tar.gz)]
 [[Sign](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-bin.tar 
[...]
-| 1.3.1                                        | 2023-01-18   | 
[[Source](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.sha512)]
 | 
[[Binary](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-bin.tar.gz)]
 [[Sign](https://downloads.apache.org/linkis/r [...]
-| 1.3.0                                        | 2022-10-25   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.2.0                                        | 2022-09-05   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.1.3                                        | 2022-08-01   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.1.2                                        | 2022-07-04   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.1.1                                        | 2022-05-24   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.1.0                                        | 2022-04-15   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.0.3                                        | 2022-01-29   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/r [...]
-| 1.0.2<br/>(<font color='red'>Non-ASF</font>) | 2021-09-02   | 
[[Source](https://github.com/apache/linkis/archive/refs/tags/1.0.2.tar.gz)]     
                                                                                
                                                                                
                                                                                
                              | 
[[Binary](https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeDatasphere/ 
[...]
+| 1.3.2 | 2023-04-03   | 
[[Source](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-bin.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-b
 [...]
+| 1.3.1  | 2023-01-18   | 
[[Source](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-bin.tar.gz)]
 [[Sign](https://www.apache.org/dyn/closer.lua/l [...]
+| 1.3.0  | 2022-10-25   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-
 [...]
+| 1.2.0  | 2022-09-05   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-
 [...]
+| 1.1.3 | 2022-08-01   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-l
 [...]
+| 1.1.2 | 2022-07-04   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-l
 [...]
+| 1.1.1| 2022-05-24   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-li
 [...]
+| 1.1.0| 2022-04-15 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-link
 [...]
+| 1.0.3 | 2022-01-29   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-l
 [...]
+| 1.0.2<br/>(<font color='red'>Non-ASF</font>) | 2021-09-02   | 
[[Source](https://github.com/apache/linkis/archive/refs/tags/1.0.2.tar.gz)]| 
[[Binary](https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeDatasphere/Linkis/1.0.2/wedatasphere-linkis-1.0.2-combined-package-dist.tar.gz)]
 || [Release-Notes](release-notes-1.0.2.md) |
 
 ## Release Integrity
 You must [verify](https://www.apache.org/info/verification.html) the integrity 
of the downloaded files. We provide OpenPGP signatures for every release file.
diff --git a/download/release-notes-1.3.2.md b/download/release-notes-1.3.2.md
index fac46367af..708ca914f7 100644
--- a/download/release-notes-1.3.2.md
+++ b/download/release-notes-1.3.2.md
@@ -5,7 +5,7 @@ sidebar_position: 0.15
 
 Apache Linkis 1.3.2 includes all [Project 
Linkis-1.3.2](https://github.com/apache/linkis/projects/24)
 
-Linkis version 1.3.2 mainly adds the following functions. First, the Spark 
engine is enhanced to support the Spark task submission jar package function. 
Secondly, UDF loading is optimized to support loading UDF function through UDF 
ID. The OceanBase database is also integrated to support the use of the 
OceanBase database through the data source function. In addition, tags and 
Eureka have been enhanced to support multi-task fixed EC execution and Eureka 
reporting version metadata.
+Linkis 1.3.2 mainly adds the following functions: the Spark engine is enhanced 
to support the Spark task submission jar package function; The UDF loading is 
optimized to support loading UDF function through UDF ID. Integrated OceanBase 
database and supported the use of OceanBase database through data source 
function; In addition, tags and Eureka have been enhanced to support multi-task 
fixed EC execution and Eureka reporting version metadata.
 
 The main functions are as follows:
 
@@ -36,52 +36,46 @@ Abbreviations:
 
 ---
 
-## New Feature
+## new features
+- \[EC-Spark][LINKIS-3421](https://github.com/apache/linkis/issues/3421) Spark 
submits jar (engineConnMode is once)
+- \[EC-UDF][LINKIS-3427](https://github.com/apache/linkis/issues/3427) Load 
specific UDFs as needed
+- \[ECM][LINKIS-3392](https://github.com/apache/linkis/issues/3392) isolate 
new extended ECM
+- \[LM][LINKIS-3393](https://github.com/apache/linkis/issues/3393) Close all 
idle Engines whose status is "Unlock"
+- \[ENTRANCE][LINKIS-3496](https://github.com/apache/linkis/issues/3496) When 
creating a group to determine maxRunningJob, exclude Entrance whose status is 
offned
+- \[ENTRANCE][LINKIS-3807](https://github.com/apache/linkis/issues/3807) The 
linkis entry should support the creator's ip whitelist access restriction
+- \[COMMON][LINKIS-3497](https://github.com/apache/linkis/issues/3497) 
supports CommonVars hot loading function
 
-- \[EC-Spark][LINKIS-3435](https://github.com/apache/linkis/issues/3435)  add 
a new Executor (json ETL)
-- \[EC-Spark][LINKIS-3421](https://github.com/apache/linkis/issues/3421)  
spark submit jar (engineConnMode is once)
-- \[EC-UDF][LINKIS-3427](https://github.com/apache/linkis/issues/3427)  Load 
specific udfs as we needed
-- \[ECM][LINKIS-3392](https://github.com/apache/linkis/issues/3392)  New 
expanded ECMs should be isolated
-- \[LM][LINKIS-3393](https://github.com/apache/linkis/issues/3393)  Need a 
method to kill all idle engines with status 'Unlock'
-- \[ENTRANCE][LINKIS-3496](https://github.com/apache/linkis/issues/3496) When 
determining the maxRunningJob on creating a group, offlined entrance nodes 
should be excluded
-- \[ENTRANCE][LINKIS-3807](https://github.com/apache/linkis/issues/3807)  
linkis-entrance should support restriction of visit by ip whitelist of creator
-- \[COMMON][LINKIS-3497](https://github.com/apache/linkis/issues/3497)  
CommonVars should support hot-reload feature
+## Enhancement points
+- \[ORCHESTRATOR][LINKIS-3717](https://github.com/apache/linkis/issues/3717) 
performance optimization, delete synchronous waiting operation when marking 
cache
+- \[ECM][LINKIS-3760](https://github.com/apache/linkis/issues/3760) Added the 
ability to clean up all EngineConns on an EngineConnManager
+- \[LM][LINKIS-3719](https://github.com/apache/linkis/issues/3719) RM resource 
operation optimization, using bit segment lock
+- \[ENTRANCE][LINKIS-3391](https://github.com/apache/linkis/issues/3391) The 
historical task list supports searching by entrance instance
+- \[ENTRANCE][LINKIS-3389](https://github.com/apache/linkis/issues/3389) 
support userCreator tag and tenant tag management
+- \[LM][LINKIS-3390](https://github.com/apache/linkis/issues/3390) Optimize 
the retry message and remove the case where the number of resources is negative
+- \[DMS][LINKIS-2719](https://github.com/apache/linkis/issues/2719) Add HDFS 
datasource to datasource module
+- \[DMS][LINKIS-2718](https://github.com/apache/linkis/issues/2718) data 
source module supports Mongodb
+- \[COMMON][LINKIS-3896](https://github.com/apache/linkis/issues/3896) support 
setting run_today_h variable
+- \[EC][LINKIS-3899](https://github.com/apache/linkis/issues/3899) When EC 
exits, report the final exit status
+- \[ORCHESTRATOR][LINKIS-3900](https://github.com/apache/linkis/issues/3900) 
Optimize instance and executor cache synchronization locks in Orchestrator by 
using concurrent collections
+- \[EC-Shell][LINKIS-3902](https://github.com/apache/linkis/issues/3902) Shell 
EC engine supports concurrent execution of tasks
+- \[LM][LINKIS-3987](https://github.com/apache/linkis/issues/3987) The maximum 
resource of ECM, in addition to the configuration resource mode, add the actual 
resource mode of the machine
+- \[GATEWAY][LINKIS-3988](https://github.com/apache/linkis/issues/3988) 
Gateway log supports printing request IP and routing IP
+- \[EUREKA][LINKIS-3989](https://github.com/apache/linkis/issues/3989) Eureka 
metadata supports uploading version information
+- \[ENTRANCE][LINKIS-3990](https://github.com/apache/linkis/issues/3990) 
Entrance supports resetting running task state on startup
+- \[MDS][LINKIS-4012](https://github.com/apache/linkis/issues/4012) metadata 
module supports checking if partition exists interface
+- \[LM][LINKIS-4065](https://github.com/apache/linkis/issues/4065) 
LinkisManager supports displaying the percentage of hive resources in the yarn 
queue
+- \[ENTRANCE][LINKIS-4066](https://github.com/apache/linkis/issues/4066) 
Entrance supports viewing more tasks and EngineConns statistics
+- \[EC-JDBC][LINKIS-3521](https://github.com/apache/linkis/issues/3521) 
optimize JDBC EC connection cache key logic
+- \[WEB][LINKIS-3446](https://github.com/apache/linkis/issues/3446) Global 
historical result set - result set page sliding optimization
 
-## Enhancement
-
-- \[ORCHESTRATOR][LINKIS-3717](https://github.com/apache/linkis/issues/3717)  
Performance optimization, remove the synchronization wait operation of mark 
cache
-- \[ECM][LINKIS-3760](https://github.com/apache/linkis/issues/3760)  Add 
support for cleaning all EngineConns in one EngineConnManager
-- \[WEB][LINKIS-3759](https://github.com/apache/linkis/issues/3759)  Some page 
English internationalization support
-- \[WEB][LINKIS-3758](https://github.com/apache/linkis/issues/3758) Add 
support for searching history codes
-- \[LM][LINKIS-3719](https://github.com/apache/linkis/issues/3719)  RM 
resource operation optimization lock bit segment lock
-- \[ENTRANCE][LINKIS-3391](https://github.com/apache/linkis/issues/3391) 
Linkis job list should support search by entrance
-- \[ENTRANCE][LINKIS-3389](https://github.com/apache/linkis/issues/3389)  Add 
link management of userCreator label and tenant label
-- \[LM][LINKIS-3390](https://github.com/apache/linkis/issues/3390)  Retry 
message needs to be optimized
-- \[DMS][LINKIS-2719](https://github.com/apache/linkis/issues/2719)  Add hdfs 
data source to the data source module
-- \[DMS][LINKIS-2718](https://github.com/apache/linkis/issues/2718) Add 
mongodb data source to datasource module
-- \[COMMON][LINKIS-3896](https://github.com/apache/linkis/issues/3896) The 
run_today_h variable should need to support setting
-- \[EC][LINKIS-3899](https://github.com/apache/linkis/issues/3899)  Report the 
final exit status when EC exits
-- \[ORCHESTRATOR][LINKIS-3900](https://github.com/apache/linkis/issues/3900) 
Synchronization locks optimized for concurrent collections
-- \[EC-Shell][LINKIS-3902](https://github.com/apache/linkis/issues/3902)  
Shell EC supports concurrent execution
-- \[LM][LINKIS-3987](https://github.com/apache/linkis/issues/3987)  
MaxResource of ECM should consider the machine's really resources
-- \[GATEWAY][LINKIS-3988](https://github.com/apache/linkis/issues/3988)  
Gateway should print the ip of request in logs
-- \[EUREKA][LINKIS-3989](https://github.com/apache/linkis/issues/3989)  Eureka 
should support metadata like version
-- \[ENTRANCE][LINKIS-3990](https://github.com/apache/linkis/issues/3990)  
Entrance should reset the status of running tasks on startup
-- \[MDS][LINKIS-4012](https://github.com/apache/linkis/issues/4012)  Metadata 
module should provide a method to examine whether a partition exists
-- \[LM][LINKIS-4065](https://github.com/apache/linkis/issues/4065)  
linkismanager should provide percentage of hive resource in the yarn queue
-- \[ENTRANCE][LINKIS-4066](https://github.com/apache/linkis/issues/4066)  Need 
more statistics of task and EngineConns
-- \[EC-JDBC][LINKIS-3521](https://github.com/apache/linkis/issues/3521)  JDBC 
EC connection cache key logic suggested optimization
-- \[WEB][LINKIS-3446](https://github.com/apache/linkis/issues/3446)  Global 
History-Result Set - The result set supports left and right slider optimization
-
-## Bugs Fix
-- \[EC][LINKIS-3718](https://github.com/apache/linkis/issues/3718)  Once job 
client obtains EngineConn information, it should use ticketId as the unique key
-- \[WEB][LINKIS-3444](https://github.com/apache/linkis/issues/3444)  
UDF/Function Management-Enter any value in the name search box and press 
Enter,the embedded linkis header information will be displayed
-- \[WEB][LINKIS-3445](https://github.com/apache/linkis/issues/3445)  Resource 
Manager-When switch administrator view, some instances data were displayed as 
undefined
-- \[WEB][LINKIS-3443](https://github.com/apache/linkis/issues/3443)  kill the 
data service in the query, resubmit, and the result set returned by the new 
task is abnormal
-- \[GATEWAY][LINKIS-3898](https://github.com/apache/linkis/issues/3898) Token 
authorization should not save session data
-- \[PS][LINKIS-4050](https://github.com/apache/linkis/issues/4050)  context 
service clear wrong resource when initing the node
-- \[EC-Spark][LINKIS-4053](https://github.com/apache/linkis/issues/4053)  
Spark EC will not exit on OutOfMemory of metaspace
-- \[EC][LINKIS-4117](https://github.com/apache/linkis/issues/4117)  The idle 
exit of the concurrent engine cannot only judge the state
+## Bugs function
+- \[EC][LINKIS-3718](https://github.com/apache/linkis/issues/3718) client uses 
ticketId as unique credential
+- \[WEB][LINKIS-3444](https://github.com/apache/linkis/issues/3444) Fixed the 
problem of embedding multi-layer headers when searching for UDF/Function
+- \[WEB][LINKIS-3445](https://github.com/apache/linkis/issues/3445) Fix 
Explorer, when switching administrator view, some instance data is displayed as 
undefined
+- \[GATEWAY][LINKIS-3898](https://github.com/apache/linkis/issues/3898) Fix 
the OOM problem that may be caused by token cache
+- \[PS][LINKIS-4050](https://github.com/apache/linkis/issues/4050) When 
starting the node, the context CS service cleans up the resource error
+- \[EC-Spark][LINKIS-4053](https://github.com/apache/linkis/issues/4053) 
OutOfMemory of Spark EC metaspace does not cause EC to exit
+- \[EC][LINKIS-4117](https://github.com/apache/linkis/issues/4117) Optimize 
the defect of only judging the state when the idle engine exits
 
 ## Thanks
-The release of Apache Linkis 1.3.2 is inseparable from the contributors of the 
Linkis community, thanks to all community contributors, including but not 
limited to the following Contributors (in no particular order):1Teng, 
aiceflower, Alexkun, Beacontownfc, binbinCheng, casionone, CharlieYan24, 
chenmutime, FinalTarget, geekmu9527, GuoPhilipse, guoshupei, huangKai-2323, 
hunter-cloud09, ichenfeiyang, jacktao007, jackxu2011, legendtkl, liaotian1005, 
liaotian1005, mayinrain, peacewong, pjfan [...]
\ No newline at end of file
+The release of Apache Linkis 1.3.2 is inseparable from the contributors of the 
Linkis community, thanks to all community contributors, including but not 
limited to the following Contributors (in no particular order):1Teng, 
aiceflower, Alexkun, Beacontownfc, binbinCheng, casionone, CharlieYan24, 
chenmutime, FinalTarget, geekmu9527, GuoPhilipse, guoshupei, huangKai-2323, 
hunter-cloud09, ichenfeiyang, jacktao007, jackxu2011, legendtkl, liaotian1005, 
mayinrain, peacewong, pjfanning, QuantumX [...]
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-release.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-release.md
index b858744cee..9de572c567 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-release.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs-community/current/how-to-release.md
@@ -750,7 +750,73 @@ $ svn delete 
https://dist.apache.org/repos/dist/release/linkis/${last_release_ve
 
 > 等仓库同步到其他数据源,一般需要24小时
 
-### 6.4 更新下载页面
+### 6.4 新版本文档发布及下载页更新
+
+**文档发布**
+
+创建新版本,基于当前的版本 创建要发布版本
+
+### step1 存档${publish_version}版本文档
+```shell
+npm install
+npm run docusaurus docs:version ${publish_version}
+```
+### step2 拷贝中文新版本文档
+```shell
+cd i18n/zh-CN/docusaurus-plugin-content-docs
+cp -r current  version-${publish_version}
+cp -r current.json version-${publish_version}.json
+```
+### step3 修改 version.label
+```shell
+# current.json 文件修改如下
+"message": "Next(${publish_version})" --> "message": "Next(${next_version})"
+
+# version-${publish_version}.json 文件修改如下
+"message": "Next(${publish_version})", --> "message": "${publish_version}"
+```
+
+### 修改配置 docusaurus.config.js
+```json
+ versions: {
+        current: {
+          path: '1.2.0',
+          label: 'Next(1.2.0)'
+        },
+        '1.1.1': {
+          path: 'latest',
+        },
+      }
+->
+  versions: {
+         current: {
+           path: '1.1.3',
+           label: 'Next(1.1.3)'
+         },
+         '1.2.0': {
+           path: 'latest',
+         },
+       }
+
+ items: [
+        //增加
+        {label: '${publish_version}', to: '/docs/latest/about/introduction'},
+        //修改
+        {label: '${current_version}', to: '/docs/latest/about/introduction'},
+        -->
+        {label: '${current_version}', to: 
'/docs/${current_version}/about/introduction'},
+        //修改
+        {label: 'Next(${publish_version})', to: 
'/docs/${publish_version}/about/introduction'}, 
+        -->
+        {label: 'Next(${next_version})', to: 
'/docs/${next_version}/about/introduction'},
+        //修改
+        existingPath.replace('/latest', '/${current_version}')
+        -->
+        existingPath.replace('/latest', '/${publish_version}')
+]
+```
+
+**更新下载页面**
 
 <font color='red'>中英文文档都要更新</font>
 
@@ -762,9 +828,6 @@ linkis的官网下载地址应该指向apache的官方地址
 - https://linkis.apache.org/zh-CN/download/release-notes-x.x.x(移除rc)
 - https://linkis.apache.org/download/release-notes-1.3.0(移除rc)
 
-```shell script
-
-```
 ### 6.5 GitHub 版本创建
 
 :::caution 注意
@@ -796,6 +859,12 @@ Release Notes: 
https://linkis.apache.org/download/release-notes-1.1.2
 
 > 请确保Apache Staging仓库已发布成功,一般是在该步骤的24小时后发布邮件
 
+**注意:**
+
+1. 发送 ANNOUNCE 邮件前,发布者需要先订阅 [email protected] 
邮箱,可参考[如何订阅邮件列表](/community/how-to-subscribe)
+
+2. ANNOUNCE 邮件发送完成后需要等待一段时间(大概一到两天)才能在 [Apache announce 
邮件列表](https://lists.apache.org/[email protected])显示
+
 发邮件到 `[email protected]` 、 `[email protected]`
 
 ```html
@@ -823,91 +892,13 @@ Linkis Resources:
 
 ```
 
-## 8 更新 Clutch Status 的信息
-
-### step1 克隆状态记录的文件 
-```shell script
-svn co https://svn.apache.org/repos/asf/public/trunk/content/projects/
-```
-
-### step2 修改 linkis.xml 中的new信息
-增加发布记录信息 
-```shell script
-<section id="News">
-      <title>News</title>
-      <ul>
-<!--    <li>YYYY-MM-DD New committer: Fred Hampton</li>    -->
-        <li>2021-08-02 Project enters incubation.</li>
-        <li>2022-02-19 First Apache Linkis release v1.1.2</li>
-        <li>2022-02-24 New Committer: Chen Xia</li>
-        <li>2022-04-15 Apache Linkis release v1.1.0</li>
-
-      </ul>
-    </section>
-```
-### step3 更新提交后,信息会在这里呈现 
+## 8 更新 Release 信息
 
-https://incubator.apache.org/clutch/linkis.html
+Apache社区健康指标会统计最近可用的Release版本。目前发布新版本后需要手动更新。
 
-## 9 官网对应版本文档的发布
-
-创建新版本,基于当前的版本 创建要发布版本
-
-### step1 存档${publish_version}版本文档
-```shell
-npm install
-npm run docusaurus docs:version ${publish_version}
-```
-### step2 拷贝中文新版本文档
-```shell
-cd i18n/zh-CN/docusaurus-plugin-content-docs
-cp -r current  version-${publish_version}
-cp -r current.json version-${publish_version}.json
-```
-### step3 修改 version.label
-```shell
-# current.json 文件修改如下
-"message": "Next(${publish_version})" --> "message": "Next(${next_version})"
-
-# version-${publish_version}.json 文件修改如下
-"message": "Next(${publish_version})", --> "message": "${publish_version}"
-```
-
-### 修改配置 docusaurus.config.js
-```json
- versions: {
-        current: {
-          path: '1.2.0',
-          label: 'Next(1.2.0)'
-        },
-        '1.1.1': {
-          path: 'latest',
-        },
-      }
-->
-  versions: {
-         current: {
-           path: '1.1.3',
-           label: 'Next(1.1.3)'
-         },
-         '1.2.0': {
-           path: 'latest',
-         },
-       }
+更新地址: https://reporter.apache.org/addrelease.html?linkis
 
- items: [
-        //增加
-        {label: '${publish_version}', to: '/docs/latest/about/introduction'},
-        //修改
-        {label: '${current_version}', to: '/docs/latest/about/introduction'},
-        -->
-        {label: '${current_version}', to: 
'/docs/${current_version}/about/introduction'},
-        //修改
-        {label: 'Next(${publish_version})', to: 
'/docs/${publish_version}/about/introduction'}, 
-        -->
-        {label: 'Next(${next_version})', to: 
'/docs/${next_version}/about/introduction'},
-]
-```
+![img](/Images/community/update-release.png)
 
 ## 附录 
 ### 附件1 release.sh
diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/main.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/main.md
index a8c662da10..a913dfdc9f 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/main.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/main.md
@@ -8,16 +8,16 @@ sidebar_position: 0
 
 | 版本                                           | 发布时间       | 源码               
                                                                                
                                                                                
                                                                                
                                                                                
                       | 项目安装包                                                  
              [...]
 
|----------------------------------------------|------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------
 [...]
-| 1.3.2                                        | 2023-04-03   | 
[[Source](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.sha512)]
 | 
[[Binary](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-bin.tar.gz)]
 [[Sign](https://downloads.apache.org/linkis/1.3.2/apache-linkis-1.3.2-bin.tar 
[...]
-| 1.3.1                                        | 2023-01-18   | 
[[Source](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.sha512)]
 | 
[[Binary](https://downloads.apache.org/linkis/release-1.3.1/apache-linkis-1.3.1-bin.tar.gz)]
 [[Sign](https://downloads.apache.org/linkis/r [...]
-| 1.3.0                                        | 2022-10-25 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.2.0                                        | 2022-09-05 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.1.3                                        | 2022-08-01 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.1.2                                        | 2022-07-04 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.1.1                                        | 2022-05-24 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.1.0                                        | 2022-04-15 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.0.3                                        | 2022-01-29 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz)]
 
[[Sign](https://downloads.apache.org/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://downloads.apache.org/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.sha512)]
 | [[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/rel [...]
-| 1.0.2<br/>(<font color='red'>Non-ASF</font>) | 2021-09-02 | 
[[Source](https://github.com/apache/linkis/archive/refs/tags/1.0.2.tar.gz)]     
                                                                                
                                                                                
                                                                                
                              | 
[[Binary](https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeDatasphere/Li 
[...]
+| 1.3.2 | 2023-04-03   | 
[[Source](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-bin.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/linkis/1.3.2/apache-linkis-1.3.2-b
 [...]
+| 1.3.1  | 2023-01-18   | 
[[Source](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/linkis/release-1.3.1/apache-linkis-1.3.1-bin.tar.gz)]
 [[Sign](https://www.apache.org/dyn/closer.lua/l [...]
+| 1.3.0  | 2022-10-25   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-linkis-1.3.0-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.3.0/apache-
 [...]
+| 1.2.0  | 2022-09-05   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-linkis-1.2.0-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.2.0/apache-
 [...]
+| 1.1.3 | 2022-08-01   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-linkis-1.1.3-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.3/apache-l
 [...]
+| 1.1.2 | 2022-07-04   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-linkis-1.1.2-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.2/apache-l
 [...]
+| 1.1.1| 2022-05-24   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-linkis-1.1.1-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.1/apache-li
 [...]
+| 1.1.0| 2022-04-15 | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-linkis-1.1.0-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.1.0/apache-link
 [...]
+| 1.0.3 | 2022-01-29   | 
[[Source](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz)]
 
[[Sign](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.asc)]
 
[[SHA512](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-linkis-1.0.3-incubating-src.tar.gz.sha512)]
 | 
[[Binary](https://www.apache.org/dyn/closer.lua/incubator/linkis/release-1.0.3/apache-l
 [...]
+| 1.0.2<br/>(<font color='red'>Non-ASF</font>) | 2021-09-02   | 
[[Source](https://github.com/apache/linkis/archive/refs/tags/1.0.2.tar.gz)]| 
[[Binary](https://osp-1257653870.cos.ap-guangzhou.myqcloud.com/WeDatasphere/Linkis/1.0.2/wedatasphere-linkis-1.0.2-combined-package-dist.tar.gz)]
 || [Release-Notes](release-notes-1.0.2.md) |
 
 ## 完整性校验
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/release-notes-1.3.2.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/release-notes-1.3.2.md
index 20fd22ecc0..087d0a1526 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/release-notes-1.3.2.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs-download/current/release-notes-1.3.2.md
@@ -5,15 +5,15 @@ sidebar_position: 0.15
 
 Apache Linkis 1.3.2 包括所有 [Project 
Linkis-1.3.2](https://github.com/apache/linkis/projects/24)
 
-Linkis 1.3.2 版本,主要增加了如下功能。首先对 Spark 引擎进行了增强,支持 Spark 任务提交 jar 包功能。其次对 UDF 
加载做了优化,支持通过 UDF ID 加载 UDF 功能。还整合了 OceanBase 数据库,支持通过数据源功能使用 OceanBase 
数据库。除此之外对标签和 Eureka 进行了增强,支持多任务固定 EC 执行和 Eureka 上报版本元数据功能。
+Linkis 1.3.2 版本,主要增加了如下功能:对 Spark 引擎进行了增强,支持 Spark 任务提交 jar 包功能;对 UDF 
加载做了优化,支持通过 UDF ID 加载 UDF 功能;整合了 OceanBase 数据库,支持通过数据源功能使用 OceanBase 
数据库;除此之外对标签和 Eureka 进行了增强,支持多任务固定 EC 执行和 Eureka 上报版本元数据功能。
 
 主要功能如下:
 
-- 新增 Spark 提交 Jar 包的功能
-- 允许通过指定后台配置的 UDF ID 加载对应的 UDF
+- 支持通过 Spark 任务提交 Jar 包的功能
+- 支持通过UDF ID 加载特定的 UDF
 - 支持多任务固定 EC 执行
-- 支持 Eureka 上报版本元数据
-- Linkis 整合 OceanBase 数据库
+- 支持Eureka 版本元数据上报
+- Linkis 整合 OceanBase
 
 缩写:
 - ORCHESTRATOR: Linkis Orchestrator
@@ -37,7 +37,6 @@ Linkis 1.3.2 版本,主要增加了如下功能。首先对 Spark 引擎进行
 ---
 
 ## 新特性
-- \[EC-Spark][LINKIS-3435](https://github.com/apache/linkis/issues/3435)  
添加新的Executor(json ETL)
 - \[EC-Spark][LINKIS-3421](https://github.com/apache/linkis/issues/3421)  
Spark提交jar(engineConnMode 为 once)
 - \[EC-UDF][LINKIS-3427](https://github.com/apache/linkis/issues/3427)  
根据需要加载特定的 UDF
 - \[ECM][LINKIS-3392](https://github.com/apache/linkis/issues/3392)  隔离新扩展的ECM
@@ -46,43 +45,39 @@ Linkis 1.3.2 版本,主要增加了如下功能。首先对 Spark 引擎进行
 - \[ENTRANCE][LINKIS-3807](https://github.com/apache/linkis/issues/3807)  
linkis入口应支持创建者的ip白名单访问限制
 - \[COMMON][LINKIS-3497](https://github.com/apache/linkis/issues/3497)  
支持CommonVars 热加载功能
 
-
 ## 增强点
 - \[ORCHESTRATOR][LINKIS-3717](https://github.com/apache/linkis/issues/3717)  
性能优化,标记缓存时删除同步等待操作
 - \[ECM][LINKIS-3760](https://github.com/apache/linkis/issues/3760)  添加清理一个 
EngineConnManager 上所有 EngineConn 的功能
-- \[WEB][LINKIS-3759](https://github.com/apache/linkis/issues/3759)  部分页面国际化支持
-- \[WEB][LINKIS-3758](https://github.com/apache/linkis/issues/3758) 支持历史代码搜索
 - \[LM][LINKIS-3719](https://github.com/apache/linkis/issues/3719)  
RM资源操作优化,使用位分段锁
-- \[ENTRANCE][LINKIS-3391](https://github.com/apache/linkis/issues/3391) 
Linkis job 列表支持按 entrance 实例搜索
+- \[ENTRANCE][LINKIS-3391](https://github.com/apache/linkis/issues/3391) 
历史任务列表支持按 entrance 实例搜索
 - \[ENTRANCE][LINKIS-3389](https://github.com/apache/linkis/issues/3389)  支持 
userCreator 标签和 tenant 标签管理
-- \[LM][LINKIS-3390](https://github.com/apache/linkis/issues/3390)  优化重试消息
+- \[LM][LINKIS-3390](https://github.com/apache/linkis/issues/3390)  
优化重试消息,去除资源数量为负数的情况
 - \[DMS][LINKIS-2719](https://github.com/apache/linkis/issues/2719)  将 HDFS 
数据源添加到数据源模块
 - \[DMS][LINKIS-2718](https://github.com/apache/linkis/issues/2718) 数据源模块支持 
Mongodb
 - \[COMMON][LINKIS-3896](https://github.com/apache/linkis/issues/3896) 支持设置 
run_today_h 变量
-- \[EC][LINKIS-3899](https://github.com/apache/linkis/issues/3899)  当 EC 
退出时,报告最终退出状态
-- \[ORCHESTRATOR][LINKIS-3900](https://github.com/apache/linkis/issues/3900) 
为并发集合优化的同步锁
-- \[EC-Shell][LINKIS-3902](https://github.com/apache/linkis/issues/3902)  
Shell EC支持并发执行
-- \[LM][LINKIS-3987](https://github.com/apache/linkis/issues/3987)  ECM 
的最大资源考虑机器的实际资源
-- \[GATEWAY][LINKIS-3988](https://github.com/apache/linkis/issues/3988)  
Gateway 日志支持打印请求 IP
-- \[EUREKA][LINKIS-3989](https://github.com/apache/linkis/issues/3989)  Eureka 
元数据支持版本号
+- \[EC][LINKIS-3899](https://github.com/apache/linkis/issues/3899)  当 EC 
退出时,上报最终退出状态
+- \[ORCHESTRATOR][LINKIS-3900](https://github.com/apache/linkis/issues/3900) 
通过使用并发集合的方式优化Orchestrator中的实例和执行器缓存同步锁
+- \[EC-Shell][LINKIS-3902](https://github.com/apache/linkis/issues/3902)  
Shell EC 引擎 支持并发执行任务
+- \[LM][LINKIS-3987](https://github.com/apache/linkis/issues/3987)  ECM 
的最大资源,除配置资源模式,新增获取机器的实际资源模式
+- \[GATEWAY][LINKIS-3988](https://github.com/apache/linkis/issues/3988)  
Gateway 日志支持打印请求 IP 和路由 IP
+- \[EUREKA][LINKIS-3989](https://github.com/apache/linkis/issues/3989)  Eureka 
元数据支持上传版本信息
 - \[ENTRANCE][LINKIS-3990](https://github.com/apache/linkis/issues/3990)  
Entrance 支持在启动时重置正在运行的任务状态
-- \[MDS][LINKIS-4012](https://github.com/apache/linkis/issues/4012)  
元数据模块支持检查分区是否存在
+- \[MDS][LINKIS-4012](https://github.com/apache/linkis/issues/4012)  
元数据模块支持检查分区是否存在接口
 - \[LM][LINKIS-4065](https://github.com/apache/linkis/issues/4065)  
LinkisManager 支持显示 yarn 队列中 hive 资源的百分比
 - \[ENTRANCE][LINKIS-4066](https://github.com/apache/linkis/issues/4066)  
Entrance 支持查看更多任务和EngineConns的统计信息
-- \[EC-JDBC][LINKIS-3521](https://github.com/apache/linkis/issues/3521)  
优化JDBC EC 连接缓存键逻辑
-- \[WEB][LINKIS-3446](https://github.com/apache/linkis/issues/3446)  
全局历史结果集-结果集支持左右滑块优化
+- \[EC-JDBC][LINKIS-3521](https://github.com/apache/linkis/issues/3521)  
优化JDBC EC 连接缓存 key 逻辑
+- \[WEB][LINKIS-3446](https://github.com/apache/linkis/issues/3446)  
全局历史结果集-结果集页面滑动 优化
 
 ## 修复功能
 - \[EC][LINKIS-3718](https://github.com/apache/linkis/issues/3718)  客户端使用 
ticketId 作为唯一凭证
-- \[WEB][LINKIS-3444](https://github.com/apache/linkis/issues/3444)  
修复UDF/Function 搜索时显示嵌入的链接标题信息
-- \[WEB][LINKIS-3445](https://github.com/apache/linkis/issues/3445)  
资源管理器,切换管理员视图时,某些实例数据显示为未定义
-- \[WEB][LINKIS-3443](https://github.com/apache/linkis/issues/3443)  
终止查询中的数据服务,重新提交,新任务返回的结果集异常
-- \[GATEWAY][LINKIS-3898](https://github.com/apache/linkis/issues/3898) 
令牌授权不应保存会话数据
-- \[PS][LINKIS-4050](https://github.com/apache/linkis/issues/4050)  
启动节点时,上下文服务清除资源错误
+- \[WEB][LINKIS-3444](https://github.com/apache/linkis/issues/3444)  
修复UDF/Function 搜索时 会存在嵌入多层表头的问题
+- \[WEB][LINKIS-3445](https://github.com/apache/linkis/issues/3445)  
修复资源管理器,切换管理员视图时,某些实例数据显示为 undefined 问题
+- \[GATEWAY][LINKIS-3898](https://github.com/apache/linkis/issues/3898) 
修复token缓存 可能会导致的OOM问题
+- \[PS][LINKIS-4050](https://github.com/apache/linkis/issues/4050)  
启动节点时,上下文CS服务清理资源错误
 - \[EC-Spark][LINKIS-4053](https://github.com/apache/linkis/issues/4053)  
Spark EC metaspace 的 OutOfMemory 不会导致 EC 退出
-- \[EC][LINKIS-4117](https://github.com/apache/linkis/issues/4117)  
空闲引擎退出时不能仅判断状态
+- \[EC][LINKIS-4117](https://github.com/apache/linkis/issues/4117)  
优化空闲引擎退出时仅判断状态的缺陷
 
 
 ## 致谢
 Apache Linkis 1.3.2 的发布离不开 Linkis 社区的贡献者,感谢所有的社区贡献者,包括但不仅限于以下 
Contributors(排名不发先后):
-1Teng, aiceflower, Alexkun, Beacontownfc, binbinCheng, casionone, 
CharlieYan24, chenmutime, FinalTarget, geekmu9527, GuoPhilipse, guoshupei, 
huangKai-2323, hunter-cloud09, ichenfeiyang, jacktao007, jackxu2011, legendtkl, 
liaotian1005, liaotian1005, mayinrain, peacewong, pjfanning, QuantumXiecao, 
rarexixi, utopianet, ws00428637。
\ No newline at end of file
+1Teng, aiceflower, Alexkun, Beacontownfc, binbinCheng, casionone, 
CharlieYan24, chenmutime, FinalTarget, geekmu9527, GuoPhilipse, guoshupei, 
huangKai-2323, hunter-cloud09, ichenfeiyang, jacktao007, jackxu2011, legendtkl, 
liaotian1005, mayinrain, peacewong, pjfanning, QuantumXiecao, rarexixi, 
utopianet, ws00428637。
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/feature/ec-fix-label.md 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/feature/ec-fix-label.md
index 9e2f710d88..28b101f8ab 100644
--- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/feature/ec-fix-label.md
+++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/feature/ec-fix-label.md
@@ -4,7 +4,7 @@ sidebar_position: 0.3
 --- 
 
 ## 1. 需求背景
-现在Linksi任务提交时,是基于标签进行创建或者复用 EngineConn(以下简称EC),多个任务间的 EC 
是随机的。但是对于存在多任务需要能够满足任务的依赖性,在同一个EC 上进行执行就不能很好的做支持。在多人任务中添加新的 
EngineConnInstanceLabel 来满足多任务固定同一个 EC 的目的。
+现在Linkis任务提交时,是基于标签进行创建或者复用 EngineConn(以下简称EC),多个任务间的 EC 
是随机的。但是对于存在多任务需要能够满足任务的依赖性,在同一个EC 上进行执行就不能很好的做支持。在多人任务中添加新的 
EngineConnInstanceLabel 来满足多任务固定同一个 EC 的目的。
 
 ## 2. 使用说明
 1. 管理台添加特定标签,添加路径如下:登录管理台 -> ECM管理 -> 点击某 ECM 示例名称 -> 编辑待固定的 EC -> 添加 
FixdEngineConnLabel 类型的标签。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/current/feature/ec-fix-label.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/current/feature/ec-fix-label.md
index 9e2f710d88..28b101f8ab 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/current/feature/ec-fix-label.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/current/feature/ec-fix-label.md
@@ -4,7 +4,7 @@ sidebar_position: 0.3
 --- 
 
 ## 1. 需求背景
-现在Linksi任务提交时,是基于标签进行创建或者复用 EngineConn(以下简称EC),多个任务间的 EC 
是随机的。但是对于存在多任务需要能够满足任务的依赖性,在同一个EC 上进行执行就不能很好的做支持。在多人任务中添加新的 
EngineConnInstanceLabel 来满足多任务固定同一个 EC 的目的。
+现在Linkis任务提交时,是基于标签进行创建或者复用 EngineConn(以下简称EC),多个任务间的 EC 
是随机的。但是对于存在多任务需要能够满足任务的依赖性,在同一个EC 上进行执行就不能很好的做支持。在多人任务中添加新的 
EngineConnInstanceLabel 来满足多任务固定同一个 EC 的目的。
 
 ## 2. 使用说明
 1. 管理台添加特定标签,添加路径如下:登录管理台 -> ECM管理 -> 点击某 ECM 示例名称 -> 编辑待固定的 EC -> 添加 
FixdEngineConnLabel 类型的标签。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/feature/ec-fix-label.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/feature/ec-fix-label.md
index 9e2f710d88..28b101f8ab 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/feature/ec-fix-label.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.3.2/feature/ec-fix-label.md
@@ -4,7 +4,7 @@ sidebar_position: 0.3
 --- 
 
 ## 1. 需求背景
-现在Linksi任务提交时,是基于标签进行创建或者复用 EngineConn(以下简称EC),多个任务间的 EC 
是随机的。但是对于存在多任务需要能够满足任务的依赖性,在同一个EC 上进行执行就不能很好的做支持。在多人任务中添加新的 
EngineConnInstanceLabel 来满足多任务固定同一个 EC 的目的。
+现在Linkis任务提交时,是基于标签进行创建或者复用 EngineConn(以下简称EC),多个任务间的 EC 
是随机的。但是对于存在多任务需要能够满足任务的依赖性,在同一个EC 上进行执行就不能很好的做支持。在多人任务中添加新的 
EngineConnInstanceLabel 来满足多任务固定同一个 EC 的目的。
 
 ## 2. 使用说明
 1. 管理台添加特定标签,添加路径如下:登录管理台 -> ECM管理 -> 点击某 ECM 示例名称 -> 编辑待固定的 EC -> 添加 
FixdEngineConnLabel 类型的标签。
diff --git a/static/Images/community/update-release.png 
b/static/Images/community/update-release.png
new file mode 100644
index 0000000000..3d8a2ac3fe
Binary files /dev/null and b/static/Images/community/update-release.png differ
diff --git a/versioned_docs/version-1.3.2/feature/ec-fix-label.md 
b/versioned_docs/version-1.3.2/feature/ec-fix-label.md
index c6627cf3ff..240ac83e97 100644
--- a/versioned_docs/version-1.3.2/feature/ec-fix-label.md
+++ b/versioned_docs/version-1.3.2/feature/ec-fix-label.md
@@ -4,7 +4,7 @@ sidebar_position: 0.3
 ---
 
 ## 1. Requirement Background
-Now when Linksi tasks are submitted, they are created or reused based on the 
tags of EngineConn (hereinafter referred to as EC), and the ECs between 
multiple tasks are random. However, for the existence of multi-tasks that need 
to be able to meet the dependencies of the tasks, execution on the same EC 
cannot be well supported. Add a new EngineConnInstanceLabel to multi-tasks to 
fix the same EC for multiple tasks.
+Now when Linkis tasks are submitted, they are created or reused based on the 
tags of EngineConn (hereinafter referred to as EC), and the ECs between 
multiple tasks are random. However, for the existence of multi-tasks that need 
to be able to meet the dependencies of the tasks, execution on the same EC 
cannot be well supported. Add a new EngineConnInstanceLabel to multi-tasks to 
fix the same EC for multiple tasks.
 
 ## 2. Instructions for use
 1. The management console adds a specific label, and the adding path is as 
follows: login to the control panel -> ECM management -> click on an ECM 
instance name -> edit the EC to be fixed -> add a label of type 
FixdEngineConnLabel.


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

Reply via email to