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

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


The following commit(s) were added to refs/heads/master by this push:
     new 23a3efcd6c [docs](update) Update Release note 2.0.9 (#584)
23a3efcd6c is described below

commit 23a3efcd6c80a326b90f28462abc8460d648cce6
Author: KassieZ <139741991+kass...@users.noreply.github.com>
AuthorDate: Tue Apr 23 19:18:03 2024 +0800

    [docs](update) Update Release note 2.0.9 (#584)
---
 ...in-apache-doris-for-10x-faster-data-transfer.md |   2 +-
 blog/release-note-2.0.9.md                         |  74 ++++++++++++++++++++
 blog/release-note-2.1.2.md                         |   2 -
 docs/releasenotes/release-2.0.9.md                 |  75 +++++++++++++++++++++
 .../current/releasenotes/release-2.0.9.md          |  68 +++++++++++++++++++
 .../version-2.0/releasenotes/release-2.0.9.md      |  68 +++++++++++++++++++
 .../version-2.1/releasenotes/release-2.0.9.md      |  68 +++++++++++++++++++
 sidebars.json                                      |   1 +
 src/components/recent-blogs/recent-blogs.data.ts   |   8 +--
 src/constant/download.data.ts                      |  70 ++++++++++++++-----
 src/constant/newsletter.data.ts                    |  14 ++--
 static/images/2.0.9.png                            | Bin 0 -> 119558 bytes
 .../version-2.0/releasenotes/release-2.0.9.md      |  75 +++++++++++++++++++++
 .../version-2.1/releasenotes/release-2.0.9.md      |  75 +++++++++++++++++++++
 versioned_sidebars/version-2.0-sidebars.json       |   1 +
 versioned_sidebars/version-2.1-sidebars.json       |   1 +
 16 files changed, 570 insertions(+), 32 deletions(-)

diff --git 
a/blog/arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer.md 
b/blog/arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer.md
index 2d68b31fe8..4ff8c02a07 100644
--- a/blog/arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer.md
+++ b/blog/arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer.md
@@ -5,7 +5,7 @@
     'date': '2024-04-16',
     'author': 'Apache Doris',
     'picked': "true",
-    'order': "1",
+    'order': "2",
     'tags': ['Tech Sharing'],
     "image": 
'/images/arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer.png'
 }
diff --git a/blog/release-note-2.0.9.md b/blog/release-note-2.0.9.md
new file mode 100644
index 0000000000..3aa4f7d5d3
--- /dev/null
+++ b/blog/release-note-2.0.9.md
@@ -0,0 +1,74 @@
+---
+{
+    'title': 'Apache Doris version 2.0.9 has been released',
+    'summary': 'Thanks to our community users and developers, about 68 
improvements and bug fixes have been made in Doris 2.0.9 version.',
+    'date': '2024-04-23',
+    'author': 'Apache Doris',
+    'tags': ['Release Notes'],
+    'picked': "true",
+    'order': "1",
+    "image": '/images/2.0.9.png'
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+  http://www.apache.org/licenses/LICENSE-2.0
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+
+
+Thanks to our community users and developers, about 68 improvements and bug 
fixes have been made in Doris 2.0.9 version.
+
+- **Quick Download** : 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+- **GitHub** : 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 Behavior change
+
+NA
+
+## 2 New features
+
+- Support predicate apprear both on key and value mv column
+
+- Support mv with `bitmap_union(bitmap_from_array())`
+
+- Add a FE config to force replicate allocation for OLAP tables in the cluster
+
+- Support date literal support timezone in new optimizer Nereids
+
+- Support slop in fulltext search `match_phrase` to specify word distence
+
+- Show index id in `SHOW PROC INDEXES`
+
+## 3 Improvement and optimizations
+
+- Sdd a secondary argument in `first_value` / `last_value` to ignore NULL 
values
+
+- the offset params in `LEAD`/ `LAG` function could use 0
+
+- Adjust priority of materialized view match rule
+
+- TopN opt reads only limit number of records for better performance
+
+- Add profile for delete_bitmap get_agg function
+
+- Refine the Meta cache to get better performance
+
+- Add FE config `autobucket_max_buckets`
+
+See the complete list of improvements and bug fixes on 
[GitHub](https://github.com/apache/doris/compare/2.0.8...2.0.9) .
diff --git a/blog/release-note-2.1.2.md b/blog/release-note-2.1.2.md
index 6bf1a2b0bf..9bdce3f902 100644
--- a/blog/release-note-2.1.2.md
+++ b/blog/release-note-2.1.2.md
@@ -5,8 +5,6 @@
     'date': '2024-04-12',
     'author': 'Apache Doris',
     'tags': ['Release Notes'],
-    'picked': "true",
-    'order': "2",
     "image": '/images/2.1.2.png'
 }
 ---
diff --git a/docs/releasenotes/release-2.0.9.md 
b/docs/releasenotes/release-2.0.9.md
new file mode 100644
index 0000000000..04048fc060
--- /dev/null
+++ b/docs/releasenotes/release-2.0.9.md
@@ -0,0 +1,75 @@
+---
+{
+    "title": "Release 2.0.9",
+    "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+
+Thanks to our community users and developers, about 68 improvements and bug 
fixes have been made in Doris 2.0.9 version.
+
+- **Quick Download** : 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+- **GitHub** : 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 Behavior change
+
+NA
+
+## 2 New features
+
+- Support predicate apprear both on key and value mv column
+
+- Support mv with `bitmap_union(bitmap_from_array())`
+
+- Add a FE config to force replicate allocation for OLAP tables in the cluster
+
+- Support date literal support timezone in new optimizer Nereids
+
+- Support slop in fulltext search `match_phrase` to specify word distence
+
+- Show index id in `SHOW PROC INDEXES`
+
+## 3 Improvement and optimizations
+
+- Sdd a secondary argument in `first_value` / `last_value` to ignore NULL 
values
+
+- the offset params in `LEAD`/ `LAG` function could use 0
+
+- Adjust priority of materialized view match rule
+
+- TopN opt reads only limit number of records for better performance
+
+- Add profile for delete_bitmap get_agg function
+
+- Refine the Meta cache to get better performance
+
+- Add FE config `autobucket_max_buckets`
+
+See the complete list of improvements and bug fixes on 
[GitHub](https://github.com/apache/doris/compare/2.0.8...2.0.9) .
+
+## Big Thanks
+
+Thanks all who contribute to this release:
+
+adonis0147, airborne12, amorynan, AshinGau, BePPPower, BiteTheDDDDt, 
CalvinKirs, cambyzju, csun5285, eldenmoon, englefly, feiniaofeiafei, 
HHoflittlefish777, htyoung, hust-hhb, jackwener, Jibing-Li, kaijchen, kylinmac, 
liaoxin01, luwei16, morningman, mrhhsg, qidaye, starocean999, SWJTU-ZhangLei, 
w41ter, xiaokang, xiedeyantu, xy720, zclllyybb, zhangstar333, zhannngchen, 
zy-kkk, zzzxl1993
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/release-2.0.9.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/release-2.0.9.md
new file mode 100644
index 0000000000..f734a2e55d
--- /dev/null
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/releasenotes/release-2.0.9.md
@@ -0,0 +1,68 @@
+---
+{
+    "title": "Release 2.0.9",
+    "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,[Apache Doris 2.0.9](https://doris.apache.org/download/) 
版本已正式发布。在本次版本中,有 34 位贡献者提交了约 68 个功能改进以及问题修复,欢迎大家下载体验。
+
+**官网下载:** 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+**GitHub 下载:** 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 行为变更
+
+无
+
+## 2 新功能
+
+- 物化视图的 Key 和 Value 列都允许出现谓词
+
+- 物化视图支持 `bitmap_union(bitmap_from_array())`
+
+- 增加一个 FE 配置强制集群中所有表的 Replicate Allocation
+
+- 新优化器支持日期字面量指定时区
+
+- `MATCH_PHRASE` 全文检索支持 slop 参数指定搜索词之间的距离
+
+## 3 改进和优化
+
+- `first_value` / `last_value` 函数增加第二个参数指定忽略 NULL 值
+
+- `LEAD`/ `LAG` 函数的 Offset 参数可以为 0
+
+- 调整物化视图匹配的顺序优先利用索引和预聚合加速查询
+
+- 优化 TopN 查询 `ORDER BY k LIMIT n` 的性能
+
+- 优化 Meta Cache 的性能
+
+- 为` delete_bitmap get_agg` 函数增加 Profile 便于性能分析
+
+- 增加 FE 参数设置 Autobucket 的最大 Bucket 数
+
+## 4 致谢
+
+adonis0147, airborne12, amorynan, AshinGau, BePPPower, BiteTheDDDDt, 
CalvinKirs, cambyzju, csun5285, eldenmoon, englefly, feiniaofeiafei, 
HHoflittlefish777, htyoung, hust-hhb, jackwener, Jibing-Li, kaijchen, kylinmac, 
liaoxin01, luwei16, morningman, mrhhsg, qidaye, starocean999, SWJTU-ZhangLei, 
w41ter, xiaokang, xiedeyantu, xy720, zclllyybb, zhangstar333, zhannngchen, 
zy-kkk, zzzxl1993
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/release-2.0.9.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/release-2.0.9.md
new file mode 100644
index 0000000000..f734a2e55d
--- /dev/null
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/releasenotes/release-2.0.9.md
@@ -0,0 +1,68 @@
+---
+{
+    "title": "Release 2.0.9",
+    "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,[Apache Doris 2.0.9](https://doris.apache.org/download/) 
版本已正式发布。在本次版本中,有 34 位贡献者提交了约 68 个功能改进以及问题修复,欢迎大家下载体验。
+
+**官网下载:** 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+**GitHub 下载:** 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 行为变更
+
+无
+
+## 2 新功能
+
+- 物化视图的 Key 和 Value 列都允许出现谓词
+
+- 物化视图支持 `bitmap_union(bitmap_from_array())`
+
+- 增加一个 FE 配置强制集群中所有表的 Replicate Allocation
+
+- 新优化器支持日期字面量指定时区
+
+- `MATCH_PHRASE` 全文检索支持 slop 参数指定搜索词之间的距离
+
+## 3 改进和优化
+
+- `first_value` / `last_value` 函数增加第二个参数指定忽略 NULL 值
+
+- `LEAD`/ `LAG` 函数的 Offset 参数可以为 0
+
+- 调整物化视图匹配的顺序优先利用索引和预聚合加速查询
+
+- 优化 TopN 查询 `ORDER BY k LIMIT n` 的性能
+
+- 优化 Meta Cache 的性能
+
+- 为` delete_bitmap get_agg` 函数增加 Profile 便于性能分析
+
+- 增加 FE 参数设置 Autobucket 的最大 Bucket 数
+
+## 4 致谢
+
+adonis0147, airborne12, amorynan, AshinGau, BePPPower, BiteTheDDDDt, 
CalvinKirs, cambyzju, csun5285, eldenmoon, englefly, feiniaofeiafei, 
HHoflittlefish777, htyoung, hust-hhb, jackwener, Jibing-Li, kaijchen, kylinmac, 
liaoxin01, luwei16, morningman, mrhhsg, qidaye, starocean999, SWJTU-ZhangLei, 
w41ter, xiaokang, xiedeyantu, xy720, zclllyybb, zhangstar333, zhannngchen, 
zy-kkk, zzzxl1993
\ No newline at end of file
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/release-2.0.9.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/release-2.0.9.md
new file mode 100644
index 0000000000..f734a2e55d
--- /dev/null
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/releasenotes/release-2.0.9.md
@@ -0,0 +1,68 @@
+---
+{
+    "title": "Release 2.0.9",
+    "language": "zh-CN"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+亲爱的社区小伙伴们,[Apache Doris 2.0.9](https://doris.apache.org/download/) 
版本已正式发布。在本次版本中,有 34 位贡献者提交了约 68 个功能改进以及问题修复,欢迎大家下载体验。
+
+**官网下载:** 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+**GitHub 下载:** 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 行为变更
+
+无
+
+## 2 新功能
+
+- 物化视图的 Key 和 Value 列都允许出现谓词
+
+- 物化视图支持 `bitmap_union(bitmap_from_array())`
+
+- 增加一个 FE 配置强制集群中所有表的 Replicate Allocation
+
+- 新优化器支持日期字面量指定时区
+
+- `MATCH_PHRASE` 全文检索支持 slop 参数指定搜索词之间的距离
+
+## 3 改进和优化
+
+- `first_value` / `last_value` 函数增加第二个参数指定忽略 NULL 值
+
+- `LEAD`/ `LAG` 函数的 Offset 参数可以为 0
+
+- 调整物化视图匹配的顺序优先利用索引和预聚合加速查询
+
+- 优化 TopN 查询 `ORDER BY k LIMIT n` 的性能
+
+- 优化 Meta Cache 的性能
+
+- 为` delete_bitmap get_agg` 函数增加 Profile 便于性能分析
+
+- 增加 FE 参数设置 Autobucket 的最大 Bucket 数
+
+## 4 致谢
+
+adonis0147, airborne12, amorynan, AshinGau, BePPPower, BiteTheDDDDt, 
CalvinKirs, cambyzju, csun5285, eldenmoon, englefly, feiniaofeiafei, 
HHoflittlefish777, htyoung, hust-hhb, jackwener, Jibing-Li, kaijchen, kylinmac, 
liaoxin01, luwei16, morningman, mrhhsg, qidaye, starocean999, SWJTU-ZhangLei, 
w41ter, xiaokang, xiedeyantu, xy720, zclllyybb, zhangstar333, zhannngchen, 
zy-kkk, zzzxl1993
\ No newline at end of file
diff --git a/sidebars.json b/sidebars.json
index b3b4d847b4..b413b3414a 100644
--- a/sidebars.json
+++ b/sidebars.json
@@ -1485,6 +1485,7 @@
                 "releasenotes/release-2.1.2",
                 "releasenotes/release-2.1.1",
                 "releasenotes/release-2.1.0",
+                "releasenotes/release-2.0.9",
                 "releasenotes/release-2.0.8",
                 "releasenotes/release-2.0.7",
                 "releasenotes/release-2.0.6",
diff --git a/src/components/recent-blogs/recent-blogs.data.ts 
b/src/components/recent-blogs/recent-blogs.data.ts
index 539fc50789..5087337251 100644
--- a/src/components/recent-blogs/recent-blogs.data.ts
+++ b/src/components/recent-blogs/recent-blogs.data.ts
@@ -1,11 +1,11 @@
 export const RECENT_BLOGS_POSTS = [
     {
-        label: 'Auto-increment columns in databases: a simple magic that makes 
a big difference',
-        link: 
'https://doris.apache.org/blog/auto-increment-columns-in-databases',
+        label: `Apache Doris version 2.0.9 has been released`,
+        link: 'https://doris.apache.org/blog/release-note-2.0.9',
     },
     {
-        label: `Another big leap: Apache Doris 2.1.0 is released`,
-        link: 'https://doris.apache.org/blog/release-note-2.1.0',
+        label: 'Auto-increment columns in databases: a simple magic that makes 
a big difference',
+        link: 
'https://doris.apache.org/blog/auto-increment-columns-in-databases',
     },
     {
         label: `Variant in Apache Doris 2.1.0: a new data type 8 times faster 
than JSON for semi-structured data analysis`,
diff --git a/src/constant/download.data.ts b/src/constant/download.data.ts
index 2987387c4b..5ae8e04fe3 100644
--- a/src/constant/download.data.ts
+++ b/src/constant/download.data.ts
@@ -31,7 +31,7 @@ export enum ToolsEnum {
 export const ORIGIN = 
'https://apache-doris-releases.oss-accelerate.aliyuncs.com/';
 export enum VersionEnum {
     Latest = '2.1.2',
-    Prev = '2.0.8',
+    Prev = '2.0.9',
     // Earlier = '1.1.5',
 }
 export enum DownloadTypeEnum {
@@ -74,36 +74,36 @@ export const DORIS_VERSIONS: Option[] = [
         ],
     },
     {
-        label: '2.0.8',
-        value: '2.0.8',
+        label: '2.0.9',
+        value: '2.0.9',
         majorVersion: '2.0',
         children: [
             {
                 label: CPUEnum.X64,
                 value: CPUEnum.X64,
-                gz: `${ORIGIN}apache-doris-2.0.8-bin-x64.tar.gz`,
-                asc: `${ORIGIN}apache-doris-2.0.8-bin-x64.tar.gz.asc`,
-                sha512: `${ORIGIN}apache-doris-2.0.8-bin-x64.tar.gz.sha512`,
-                source: 'https://downloads.apache.org/doris/2.0/2.0.8/',
-                version: '2.0.8',
+                gz: `${ORIGIN}apache-doris-2.0.9-bin-x64.tar.gz`,
+                asc: `${ORIGIN}apache-doris-2.0.9-bin-x64.tar.gz.asc`,
+                sha512: `${ORIGIN}apache-doris-2.0.9-bin-x64.tar.gz.sha512`,
+                source: 'https://downloads.apache.org/doris/2.0/2.0.9/',
+                version: '2.0.9',
             },
             {
                 label: CPUEnum.X64NoAvx2,
                 value: CPUEnum.X64NoAvx2,
-                gz: `${ORIGIN}apache-doris-2.0.8-bin-x64-noavx2.tar.gz`,
-                asc: `${ORIGIN}apache-doris-2.0.8-bin-x64-noavx2.tar.gz.asc`,
-                sha512: 
`${ORIGIN}apache-doris-2.0.8-bin-x64-noavx2.tar.gz.sha512`,
-                source: 'https://downloads.apache.org/doris/2.0/2.0.8/',
-                version: '2.0.8',
+                gz: `${ORIGIN}apache-doris-2.0.9-bin-x64-noavx2.tar.gz`,
+                asc: `${ORIGIN}apache-doris-2.0.9-bin-x64-noavx2.tar.gz.asc`,
+                sha512: 
`${ORIGIN}apache-doris-2.0.9-bin-x64-noavx2.tar.gz.sha512`,
+                source: 'https://downloads.apache.org/doris/2.0/2.0.9/',
+                version: '2.0.9',
             },
             {
                 label: CPUEnum.ARM64,
                 value: CPUEnum.ARM64,
-                gz: `${ORIGIN}apache-doris-2.0.8-bin-arm64.tar.gz`,
-                asc: `${ORIGIN}apache-doris-2.0.8-bin-arm64.tar.gz.asc`,
-                sha512: `${ORIGIN}apache-doris-2.0.8-bin-arm64.tar.gz.sha512`,
-                source: 'https://downloads.apache.org/doris/2.0/2.0.8/',
-                version: '2.0.8',
+                gz: `${ORIGIN}apache-doris-2.0.9-bin-arm64.tar.gz`,
+                asc: `${ORIGIN}apache-doris-2.0.9-bin-arm64.tar.gz.asc`,
+                sha512: `${ORIGIN}apache-doris-2.0.9-bin-arm64.tar.gz.sha512`,
+                source: 'https://downloads.apache.org/doris/2.0/2.0.9/',
+                version: '2.0.9',
             },
         ],
     },
@@ -233,6 +233,40 @@ export const ALL_VERSIONS: AllVersionOption[] = [
         label: '2.0',
         value: '2.0',
         children: [
+            {
+                label: '2.0.9',
+                value: '2.0.9',
+                majorVersion: '2.0',
+                items: [
+                    {
+                        label: CPUEnum.X64,
+                        value: CPUEnum.X64,
+                        gz: `${ORIGIN}apache-doris-2.0.9-bin-x64.tar.gz`,
+                        asc: `${ORIGIN}apache-doris-2.0.9-bin-x64.tar.gz.asc`,
+                        sha512: 
`${ORIGIN}apache-doris-2.0.9-bin-x64.tar.gz.sha512`,
+                        source: 
'https://downloads.apache.org/doris/2.0/2.0.9/',
+                        version: '2.0.9',
+                    },
+                    {
+                        label: CPUEnum.X64NoAvx2,
+                        value: CPUEnum.X64NoAvx2,
+                        gz: 
`${ORIGIN}apache-doris-2.0.9-bin-x64-noavx2.tar.gz`,
+                        asc: 
`${ORIGIN}apache-doris-2.0.9-bin-x64-noavx2.tar.gz.asc`,
+                        sha512: 
`${ORIGIN}apache-doris-2.0.9-bin-x64-noavx2.tar.gz.sha512`,
+                        source: 
'https://downloads.apache.org/doris/2.0/2.0.9/',
+                        version: '2.0.9',
+                    },
+                    {
+                        label: CPUEnum.ARM64,
+                        value: CPUEnum.ARM64,
+                        gz: `${ORIGIN}apache-doris-2.0.9-bin-arm64.tar.gz`,
+                        asc: 
`${ORIGIN}apache-doris-2.0.9-bin-arm64.tar.gz.asc`,
+                        sha512: 
`${ORIGIN}apache-doris-2.0.9-bin-arm64.tar.gz.sha512`,
+                        source: 
'https://downloads.apache.org/doris/2.0/2.0.9/',
+                        version: '2.0.9',
+                    },
+                ],
+            },
             {
                 label: '2.0.8',
                 value: '2.0.8',
diff --git a/src/constant/newsletter.data.ts b/src/constant/newsletter.data.ts
index 5743d02053..0c07277678 100644
--- a/src/constant/newsletter.data.ts
+++ b/src/constant/newsletter.data.ts
@@ -1,4 +1,11 @@
 export const NEWSLETTER_DATA = [
+    {
+        tags: ['Release Notes'],
+        title: "Apache Doris version 2.0.9 has been released",
+        content: `Thanks to our community users and developers, about 68 
improvements and bug fixes have been made in Doris 2.0.9 version.`,
+        to: '/blog/release-note-2.0.9',
+        image: '2.0.9.png',
+    },
     {
         tags: ['Tech Sharing'],
         title: "Arrow Flight SQL in Apache Doris for 10X faster data transfer",
@@ -6,13 +13,6 @@ export const NEWSLETTER_DATA = [
         to: 
'/blog/arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer',
         image: 
'arrow-flight-sql-in-apache-doris-for-10x-faster-data-transfer.png',
     },
-    {
-        tags: ['Release Notes'],
-        title: "Apache Doris 2.1.2 just released",
-        content: `Dear community, Apache Doris 2.1.2 has been officially 
released on April 12, 2024. This version submits several enhancements and bug 
fixes to further improve the performance and stability.`,
-        to: '/blog/release-note-2.1.2',
-        image: '2.1.2.png',
-    },
     {
         tags: ['Tech Sharing'],
         title: "Auto-increment columns in databases: a simple magic that makes 
a big difference",
diff --git a/static/images/2.0.9.png b/static/images/2.0.9.png
new file mode 100644
index 0000000000..8efc598aa3
Binary files /dev/null and b/static/images/2.0.9.png differ
diff --git a/versioned_docs/version-2.0/releasenotes/release-2.0.9.md 
b/versioned_docs/version-2.0/releasenotes/release-2.0.9.md
new file mode 100644
index 0000000000..04048fc060
--- /dev/null
+++ b/versioned_docs/version-2.0/releasenotes/release-2.0.9.md
@@ -0,0 +1,75 @@
+---
+{
+    "title": "Release 2.0.9",
+    "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+
+Thanks to our community users and developers, about 68 improvements and bug 
fixes have been made in Doris 2.0.9 version.
+
+- **Quick Download** : 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+- **GitHub** : 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 Behavior change
+
+NA
+
+## 2 New features
+
+- Support predicate apprear both on key and value mv column
+
+- Support mv with `bitmap_union(bitmap_from_array())`
+
+- Add a FE config to force replicate allocation for OLAP tables in the cluster
+
+- Support date literal support timezone in new optimizer Nereids
+
+- Support slop in fulltext search `match_phrase` to specify word distence
+
+- Show index id in `SHOW PROC INDEXES`
+
+## 3 Improvement and optimizations
+
+- Sdd a secondary argument in `first_value` / `last_value` to ignore NULL 
values
+
+- the offset params in `LEAD`/ `LAG` function could use 0
+
+- Adjust priority of materialized view match rule
+
+- TopN opt reads only limit number of records for better performance
+
+- Add profile for delete_bitmap get_agg function
+
+- Refine the Meta cache to get better performance
+
+- Add FE config `autobucket_max_buckets`
+
+See the complete list of improvements and bug fixes on 
[GitHub](https://github.com/apache/doris/compare/2.0.8...2.0.9) .
+
+## Big Thanks
+
+Thanks all who contribute to this release:
+
+adonis0147, airborne12, amorynan, AshinGau, BePPPower, BiteTheDDDDt, 
CalvinKirs, cambyzju, csun5285, eldenmoon, englefly, feiniaofeiafei, 
HHoflittlefish777, htyoung, hust-hhb, jackwener, Jibing-Li, kaijchen, kylinmac, 
liaoxin01, luwei16, morningman, mrhhsg, qidaye, starocean999, SWJTU-ZhangLei, 
w41ter, xiaokang, xiedeyantu, xy720, zclllyybb, zhangstar333, zhannngchen, 
zy-kkk, zzzxl1993
\ No newline at end of file
diff --git a/versioned_docs/version-2.1/releasenotes/release-2.0.9.md 
b/versioned_docs/version-2.1/releasenotes/release-2.0.9.md
new file mode 100644
index 0000000000..04048fc060
--- /dev/null
+++ b/versioned_docs/version-2.1/releasenotes/release-2.0.9.md
@@ -0,0 +1,75 @@
+---
+{
+    "title": "Release 2.0.9",
+    "language": "en"
+}
+---
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+
+Thanks to our community users and developers, about 68 improvements and bug 
fixes have been made in Doris 2.0.9 version.
+
+- **Quick Download** : 
[https://doris.apache.org/download/](https://doris.apache.org/download/)
+
+- **GitHub** : 
[https://github.com/apache/doris/releases](https://github.com/apache/doris/releases)
+
+
+## 1 Behavior change
+
+NA
+
+## 2 New features
+
+- Support predicate apprear both on key and value mv column
+
+- Support mv with `bitmap_union(bitmap_from_array())`
+
+- Add a FE config to force replicate allocation for OLAP tables in the cluster
+
+- Support date literal support timezone in new optimizer Nereids
+
+- Support slop in fulltext search `match_phrase` to specify word distence
+
+- Show index id in `SHOW PROC INDEXES`
+
+## 3 Improvement and optimizations
+
+- Sdd a secondary argument in `first_value` / `last_value` to ignore NULL 
values
+
+- the offset params in `LEAD`/ `LAG` function could use 0
+
+- Adjust priority of materialized view match rule
+
+- TopN opt reads only limit number of records for better performance
+
+- Add profile for delete_bitmap get_agg function
+
+- Refine the Meta cache to get better performance
+
+- Add FE config `autobucket_max_buckets`
+
+See the complete list of improvements and bug fixes on 
[GitHub](https://github.com/apache/doris/compare/2.0.8...2.0.9) .
+
+## Big Thanks
+
+Thanks all who contribute to this release:
+
+adonis0147, airborne12, amorynan, AshinGau, BePPPower, BiteTheDDDDt, 
CalvinKirs, cambyzju, csun5285, eldenmoon, englefly, feiniaofeiafei, 
HHoflittlefish777, htyoung, hust-hhb, jackwener, Jibing-Li, kaijchen, kylinmac, 
liaoxin01, luwei16, morningman, mrhhsg, qidaye, starocean999, SWJTU-ZhangLei, 
w41ter, xiaokang, xiedeyantu, xy720, zclllyybb, zhangstar333, zhannngchen, 
zy-kkk, zzzxl1993
\ No newline at end of file
diff --git a/versioned_sidebars/version-2.0-sidebars.json 
b/versioned_sidebars/version-2.0-sidebars.json
index 3429b329cb..aa4db2d481 100644
--- a/versioned_sidebars/version-2.0-sidebars.json
+++ b/versioned_sidebars/version-2.0-sidebars.json
@@ -1392,6 +1392,7 @@
             "type": "category",
             "label": "Release notes",
             "items": [
+                "releasenotes/release-2.0.9",
                 "releasenotes/release-2.0.8",
                 "releasenotes/release-2.0.7",
                 "releasenotes/release-2.0.6",
diff --git a/versioned_sidebars/version-2.1-sidebars.json 
b/versioned_sidebars/version-2.1-sidebars.json
index 3a2a3e5cb9..0eeb5377f4 100644
--- a/versioned_sidebars/version-2.1-sidebars.json
+++ b/versioned_sidebars/version-2.1-sidebars.json
@@ -1466,6 +1466,7 @@
                 "releasenotes/release-2.1.2",
                 "releasenotes/release-2.1.1",
                 "releasenotes/release-2.1.0",
+                "releasenotes/release-2.0.9",
                 "releasenotes/release-2.0.8",
                 "releasenotes/release-2.0.7",
                 "releasenotes/release-2.0.6",


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to