Skip to content

Commit

Permalink
docs: feature matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdrivingduck authored and polardb-bot[bot] committed Oct 22, 2023
1 parent b9c7e45 commit 16db54c
Show file tree
Hide file tree
Showing 30 changed files with 1,123 additions and 518 deletions.
24 changes: 6 additions & 18 deletions docs/.vuepress/configs/navbar/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,32 +67,20 @@ export const zh: NavbarConfig = [
],
},
{
text: "内核功能增强",
text: "内核增强功能",
children: [
{
text: "文档入口",
link: "/zh/features/v11/",
link: "/zh/features/",
},
{
text: "PolarDB for PostgreSQL 11",
link: "/zh/features/v11/",
children: [
{
text: "高性能",
link: "/zh/features/v11/performance/",
},
{
text: "高可用",
link: "/zh/features/v11/availability/",
},
{
text: "安全",
link: "/zh/features/v11/security/",
},
{
text: "HTAP",
link: "/zh/features/v11/htap/",
},
"/zh/features/v11/performance/",
"/zh/features/v11/availability/",
"/zh/features/v11/security/",
"/zh/features/v11/epq/",
],
},
],
Expand Down
31 changes: 27 additions & 4 deletions docs/.vuepress/configs/sidebar/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ export const zh: SidebarConfig = {
],
"/zh/features": [
{
text: "内核功能增强",
link: "/zh/features/v11/",
text: "内核增强功能",
link: "/zh/features/",
children: [
{
text: "PolarDB for PostgreSQL 11",
Expand All @@ -86,18 +86,41 @@ export const zh: SidebarConfig = {
{
text: "高性能",
link: "/zh/features/v11/performance/",
children: [
"/zh/features/v11/performance/bulk-read-and-extend.md",
"/zh/features/v11/performance/rel-size-cache.md",
"/zh/features/v11/performance/shared-server.md",
],
},
{
text: "高可用",
link: "/zh/features/v11/availability/",
children: [
"/zh/features/v11/availability/avail-online-promote.md",
"/zh/features/v11/availability/avail-parallel-replay.md",
"/zh/features/v11/availability/datamax.md",
"/zh/features/v11/availability/resource-manager.md",
"/zh/features/v11/availability/flashback-table.md",
],
},
{
text: "安全",
link: "/zh/features/v11/security/",
children: ["/zh/features/v11/security/tde.md"],
},
{
text: "HTAP",
link: "/zh/features/v11/htap/",
text: "弹性跨机并行查询(ePQ)",
link: "/zh/features/v11/epq/",
children: [
"/zh/features/v11/epq/epq-explain-analyze.md",
"/zh/features/v11/epq/epq-node-and-dop.md",
"/zh/features/v11/epq/epq-partitioned-table.md",
"/zh/features/v11/epq/epq-create-btree-index.md",
"/zh/features/v11/epq/cluster-info.md",
"/zh/features/v11/epq/adaptive-scan.md",
"/zh/features/v11/epq/parallel-dml.md",
"/zh/features/v11/epq/epq-ctas-mtview-bulk-insert.md",
],
},
],
},
Expand Down
2 changes: 2 additions & 0 deletions docs/.vuepress/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
--c-brand-light: #fc5207;

--c-tip: #fc5207;

--content-width: 1020px;
}

html.dark {
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ postgres=# SELECT version();
</div>

<div class="feature">
<h3>内核功能增强</h3>
<h3>内核增强功能</h3>
<ul style="position: relative;z-index: 10;">
<li><a href="./features/v11/performance/">高性能</a></li>
<li><a href="./features/v11/availability/">高可用</a></li>
<li><a href="./features/v11/security/">安全</a></li>
<li><a href="./features/v11/htap/">HTAP</a></li>
<li><a href="./features/v11/epq/">弹性跨机并行查询(ePQ)</a></li>
</ul>
</div>

Expand Down
122 changes: 122 additions & 0 deletions docs/zh/features/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
# 内核增强功能

- [PolarDB for PostgreSQL 11](./v11/README.md)

## 功能 / 版本映射矩阵

<table>
<thead>
<tr>
<th>功能 / 版本</th>
<th style="text-align:center">PostgreSQL</th>
<th style="text-align:center">PolarDB for PostgreSQL 11</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>高性能</strong></td>
<td style="text-align:center">...</td>
<td style="text-align:center"><a href="./v11/performance/">...</a></td>
</tr>
<tr>
<td>预读 / 预扩展</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/performance/bulk-read-and-extend.html"><Badge type="tip" text="V11 / v1.1.1-" vertical="top" /></a></td>
</tr>
<tr>
<td>表大小缓存</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/performance/rel-size-cache.html"><Badge type="tip" text="V11 / v1.1.10-" vertical="top" /></a></td>
</tr>
<tr>
<td>Shared Server</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/performance/shared-server.html"><Badge type="tip" text="V11 / v1.1.30-" vertical="top" /></a></td>
</tr>
<tr>
<td><strong>高可用</strong></td>
<td style="text-align:center">...</td>
<td style="text-align:center"><a href="./v11/availability/">...</a></td>
</tr>
<tr>
<td>只读节点 Online Promote</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/availability/avail-online-promote.html"><Badge type="tip" text="V11 / v1.1.1-" vertical="top" /></a></td>
</tr>
<tr>
<td>WAL 日志并行回放</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/availability/avail-parallel-replay.html"><Badge type="tip" text="V11 / v1.1.17-" vertical="top" /></a></td>
</tr>
<tr>
<td>DataMax 日志节点</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/availability/datamax.html"><Badge type="tip" text="V11 / v1.1.6-" vertical="top" /></a></td>
</tr>
<tr>
<td>Resource Manager</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/availability/resource-manager.html"><Badge type="tip" text="V11 / v1.1.1-" vertical="top" /></a></td>
</tr>
<tr>
<td>闪回表和闪回日志</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/availability/flashback-table.html"><Badge type="tip" text="V11 / v1.1.22-" vertical="top" /></a></td>
</tr>
<tr>
<td><strong>安全</strong></td>
<td style="text-align:center">...</td>
<td style="text-align:center"><a href="./v11/security/">...</a></td>
</tr>
<tr>
<td>透明数据加密</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/security/tde.html"><Badge type="tip" text="V11 / v1.1.1-" vertical="top" /></a></td>
</tr>
<tr>
<td><strong>弹性跨机并行查询(ePQ)</strong></td>
<td style="text-align:center">...</td>
<td style="text-align:center"><a href="./v11/epq/">...</a></td>
</tr>
<tr>
<td>ePQ 执行计划查看与分析</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/epq-explain-analyze.html"><Badge type="tip" text="V11 / v1.1.22-" vertical="top" /></a></td>
</tr>
<tr>
<td>ePQ 计算节点范围选择与并行度控制</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/epq-node-and-dop.html"><Badge type="tip" text="V11 / v1.1.20-" vertical="top" /></a></td>
</tr>
<tr>
<td>ePQ 支持分区表查询</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/epq-partitioned-table.html"><Badge type="tip" text="V11 / v1.1.17-" vertical="top" /></a></td>
</tr>
<tr>
<td>ePQ 支持创建 B-Tree 索引并行加速</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/epq-create-btree-index.html"><Badge type="tip" text="V11 / v1.1.15-" vertical="top" /></a></td>
</tr>
<tr>
<td>集群拓扑视图</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/cluster-info.html"><Badge type="tip" text="V11 / v1.1.20-" vertical="top" /></a></td>
</tr>
<tr>
<td>自适应扫描</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/adaptive-scan.html"><Badge type="tip" text="V11 / v1.1.17-" vertical="top" /></a></td>
</tr>
<tr>
<td>并行 INSERT</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/parallel-dml.html"><Badge type="tip" text="V11 / v1.1.17-" vertical="top" /></a></td>
</tr>
<tr>
<td>ePQ 支持创建/刷新物化视图并行加速和批量写入</td>
<td style="text-align:center">/</td>
<td style="text-align:center"><a href="./v11/epq/epq-ctas-mtview-bulk-insert.html"><Badge type="tip" text="V11 / v1.1.30-" vertical="top" /></a></td>
</tr>
</tbody>
</table>
4 changes: 2 additions & 2 deletions docs/zh/features/v11/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 内核功能增强
# 内核增强功能

- [高性能](./performance/README.md)
- [高可用](./availability/README.md)
- [安全](./security/README.md)
- [HTAP](./htap/README.md)
- [弹性跨机并行查询(ePQ)](./epq/README.md)
1 change: 1 addition & 0 deletions docs/zh/features/v11/availability/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 高可用

- [只读节点 Online Promote](./avail-online-promote.md) <Badge type="tip" text="V11 / v1.1.1-" vertical="top" />
- [WAL 日志并行回放](./avail-parallel-replay.md) <Badge type="tip" text="V11 / v1.1.17-" vertical="top" />
- [DataMax 日志节点](./datamax.md) <Badge type="tip" text="V11 / v1.1.6-" vertical="top" />
- [Resource Manager](./resource-manager.md) <Badge type="tip" text="V11 / v1.1.1-" vertical="top" />
- [闪回表和闪回日志](./flashback-table.md) <Badge type="tip" text="V11 / v1.1.22-" vertical="top" />
Loading

0 comments on commit 16db54c

Please sign in to comment.