Skip to content

Commit f8d8efb

Browse files
authored
docs: Refactor CN tutorial structure and naming conventions (#2992)
* docs: Refactor CN tutorial titles for clarity and consistency * docs: Improve CN tutorial titles to be more natural and action-oriented * docs: Simplify CN tutorial titles to 'Tool + Action' format * fix: Repair corrupted front matter in tutorial markdown files * docs: Refactor tutorial titles to unified 'Action (Tool)' format * docs: Standardize sidebar labels with 'Tool (Object)' format for clarity * docs: Improve tutorial titles and sidebar labels for explicit natural flow * docs: Update tutorial titles to 'Scenario (Tool)' format for maximum clarity * docs: Refactor tutorial titles and sidebars to 'Use Tool to Action' guide format * docs: Remove access-mysql-and-redis tutorial from CN docs * docs: Rename 'Query System Metadata' tutorial to 'Query Stage File Metadata' for accuracy * docs: Rename 'Cloud Ops' category to 'Manage Databend Cloud' and standardize items * docs: Rename 'Cloud Ops' category to '云端运维' (Cloud Ops) for conciseness * docs: Rename category to 'Cloud 平台功能' to better summarize content * docs: Standardize category names to noun phrases (Client Connectivity, Data Ingestion, Backup & Recovery) * chore: Remove accidental clipboard images * fix: Restore 'access-mysql-and-redis' tutorial and update its title format * docs: Remove 'access-mysql-and-redis' tutorial as requested
1 parent 5b26866 commit f8d8efb

31 files changed

+78
-271
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"label": "云上运维",
2+
"label": "Cloud 平台功能",
33
"position": 6
44
}

docs/cn/tutorials/cloud-ops/aws-billing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Databend Cloud:AWS 账单"
3-
sidebar_label: "AWS 账单"
2+
title: "查看 AWS 账单"
3+
sidebar_label: "查看 AWS 账单"
44
---
55

66
在本教程中,我们将演示如何导入 AWS 账单数据,并通过 SQL 进行成本分析。你会学习如何把 AWS 账单数据加载进 Databend Cloud、使用查询找出主要成本驱动因素,并洞察 AWS 的使用方式。

docs/cn/tutorials/cloud-ops/dashboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Databend Cloud:仪表盘导览"
3-
sidebar_label: "Dashboard"
2+
title: "仪表盘使用指南"
3+
sidebar_label: "使用仪表盘"
44
---
55
import StepsWrap from '@site/src/components/StepsWrap';
66
import StepContent from '@site/src/components/Steps/step-content';

docs/cn/tutorials/cloud-ops/link-tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Databend Cloud:通过 ATTACH TABLE 共享数据"
3-
sidebar_label: "数据共享"
2+
title: "跨库共享数据"
3+
sidebar_label: "跨库共享数据"
44
---
55

66
本教程将演示如何在 Databend Cloud 中使用 [ATTACH TABLE](/sql/sql-commands/ddl/table/attach-table) 命令,将一张 Databend Cloud 表链接到存放在 S3 Bucket 中的自建 Databend 表。
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"label": "Databend 开发",
2+
"label": "应用开发",
33
"position": 4
44
}

docs/cn/tutorials/develop/python/integrating-with-databend-cloud-using-databend-driver.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: "Python:使用 databend-driver 连接 Databend Cloud"
2+
title: "Python Driver 开发 (Cloud)"
3+
sidebar_label: "Python Driver 开发 (Cloud)"
34
---
45

56
本教程将演示如何使用 `databend-driver` 连接 Databend Cloud,并通过 Python 创建表、插入数据与查询结果。

docs/cn/tutorials/develop/python/integrating-with-databend-cloud-using-databend-sqlalchemy.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: "Python:使用 SQLAlchemy 连接 Databend Cloud"
2+
title: "SQLAlchemy 开发 (Cloud)"
3+
sidebar_label: "SQLAlchemy 开发 (Cloud)"
34
---
45

56
本教程将演示如何借助 `databend-sqlalchemy` 连接 Databend Cloud,并使用 Python 创建表、插入数据与查询结果。

docs/cn/tutorials/develop/python/integrating-with-self-hosted-databend.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: "Python:连接自建 Databend"
2+
title: "Python Driver 开发 (自建)"
3+
sidebar_label: "Python Driver 开发 (自建)"
34
---
45

56
本教程介绍如何通过 Python 连接本地部署的 Databend,并分别使用 `databend-driver``databend-sqlalchemy` Connector 以及 Engine 三种方式完成建库、建表、写入、查询与清理等操作。
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"label": "连接 Databend",
2+
"label": "客户端连接",
33
"position": 1
44
}

docs/cn/tutorials/getting-started/connect-to-databend-bendsql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "使用 BendSQL 连接(自建版)"
3-
sidebar_label: "BendSQL(自建版)"
2+
title: "使用 BendSQL 连接自建 Databend"
3+
sidebar_label: "BendSQL 连接自建 Databend"
44
---
55

66
import StepsWrap from '@site/src/components/StepsWrap';

0 commit comments

Comments
 (0)