Skip to content

Commit

Permalink
Change Developer Tier to Serverless Tier in TOC.md (#11804) (#11819)
Browse files Browse the repository at this point in the history
  • Loading branch information
ti-chi-bot authored Oct 28, 2022
1 parent ed10a60 commit 04578b3
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
- 应用开发
- [概览](/develop/dev-guide-overview.md)
- 快速开始
- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB 的增删改查 SQL](/develop/dev-guide-tidb-crud-sql.md)
- 构建简单的 CRUD 应用程序
- [Java](/develop/dev-guide-sample-application-java.md)
Expand Down
14 changes: 7 additions & 7 deletions develop/dev-guide-build-cluster-in-cloud.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: 使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群
summary: 使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群,并连接 TiDB Cloud 集群。
title: 使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群
summary: 使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群,并连接 TiDB Cloud 集群。
---

<!-- markdownlint-disable MD029 -->

# 使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群
# 使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群

本章节将介绍以最快的方式开始使用 TiDB。你将使用 [TiDB Cloud](https://en.pingcap.com/tidb-cloud) 创建并启动一个免费的 TiDB 集群,使用 TiDB SQL 客户端,插入数据。随后将从示例程序读取出数据。

Expand All @@ -15,11 +15,11 @@ summary: 使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群,并连接 TiDB

1. 如果你还未拥有 TiDB Cloud 帐号,请先在此[注册](https://tidbcloud.com/free-trial)
2. 使用你的 TiDB Cloud 帐号[登录](https://tidbcloud.com/)
3.[方案](https://tidbcloud.com/console/plans)内选择一年内免费的 **Developer Tier** 方案,或在 [Clusters](https://tidbcloud.com/console/clusters) 页面中点击 **Create Cluster** 按钮。
4.**Create Cluster** 页面设置集群名称、云服务商(Developer Tier 默认为 AWS)、可用区(建议就近选择)后,点击 **Create** 按钮创建 Developer Tier 免费集群。
3.[方案](https://tidbcloud.com/console/plans)内选择免费的 **Serverless Tier** 方案,或在 [Clusters](https://tidbcloud.com/console/clusters) 页面中点击 **Create Cluster** 按钮。
4.**Create Cluster** 页面设置集群名称、云服务商(Serverless Tier 默认为 AWS)、可用区(建议就近选择)后,点击 **Create** 按钮创建 Serverless Tier 免费集群。
5.**Security Settings** 对话框中,设置密码,并添加允许连接你的集群的 IP 地址,完成后点击 **Apply**

你的 TiDB Cloud 集群将于 5~15 分钟后创建完毕
你的 TiDB Cloud 集群将于 30 秒后创建完毕

6. 创建完毕后,点击右上角的 **Connect** 按钮。或点击集群名称,打开集群的详情页,再点击右上角的 **Connect** 按钮。这将显示一个连接对话框。
7. 复制连接对话框 **Step 2: Connect with a SQL client** 中的连接字符串,供后续步骤使用。
Expand All @@ -28,7 +28,7 @@ summary: 使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群,并连接 TiDB

> **Note:**
>
> 需要特别说明的是,在你使用 [Developer Tier clusters](https://docs.pingcap.com/tidbcloud/select-cluster-tier#developer-tier) 集群时,你需要给你设置的用户名加上前缀(如上图中的 `9ATyn6DhCXoo6U1`),若使用命令行连接,还需使用单引号包裹用户名。你可以在 [TiDB Cloud - 用户名前缀](https://docs.pingcap.com/tidbcloud/select-cluster-tier#user-name-prefix) 中获得更多信息。
> 需要特别说明的是,在你使用 [Serverless Tier clusters](https://docs.pingcap.com/tidbcloud/select-cluster-tier#serverless-tier) 集群时,你需要给你设置的用户名加上前缀(如上图中的 `9ATyn6DhCXoo6U1`),若使用命令行连接,还需使用单引号包裹用户名。你可以在 [TiDB Cloud - 用户名前缀](https://docs.pingcap.com/tidbcloud/select-cluster-tier#user-name-prefix) 中获得更多信息。
## 第 2 步:连接到集群

Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-choose-driver-or-orm.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,4 +238,4 @@ go get -u gorm.io/gorm
go get -u gorm.io/driver/mysql
```

使用 GORM 进行 TiDB 应用程序构建的例子,可参阅 [TiDB 和 Golang 的简单 CRUD 应用程序 - 使用 GORM](/develop/dev-guide-sample-application-golang.md#第-2-步获取代码)
使用 GORM 进行 TiDB 应用程序构建的例子,可参阅 [TiDB 和 Golang 的简单 CRUD 应用程序 - 使用 GORM](/develop/dev-guide-sample-application-golang.md#第-2-步获取代码)
2 changes: 1 addition & 1 deletion develop/dev-guide-create-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ summary: 创建数据库的方法、规范及例子。

在阅读本页面之前,你需要准备以下事项:

- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- 阅读[数据库模式概览](/develop/dev-guide-schema-design-overview.md)

## 什么是数据库
Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-create-secondary-indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ summary: 创建二级索引的方法、规范及例子。

在阅读本页面之前,你需要准备以下事项:

- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- 阅读[数据库模式概览](/develop/dev-guide-schema-design-overview.md)
- [创建一个数据库](/develop/dev-guide-create-database.md)
- [创建表](/develop/dev-guide-create-table.md)
Expand Down
4 changes: 2 additions & 2 deletions develop/dev-guide-create-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ summary: 创建表的方法、规范及例子。

在阅读本页面之前,你需要准备以下事项:

- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- 阅读[数据库模式概览](/develop/dev-guide-schema-design-overview.md)
- [创建一个数据库](/develop/dev-guide-create-database.md)

Expand Down Expand Up @@ -286,7 +286,7 @@ ALTER TABLE `bookshop`.`ratings` SET TIFLASH REPLICA 1;

> **注意:**
>
> 如果你的集群,不包含 TiFlash 节点,此 SQL 语句将会报错:`1105 - the tiflash replica count: 1 should be less than the total tiflash server count: 0` 你可以[使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md#第-1-步创建免费集群) 来创建一个含有 TiFlash 的免费集群。
> 如果你的集群,不包含 TiFlash 节点,此 SQL 语句将会报错:`1105 - the tiflash replica count: 1 should be less than the total tiflash server count: 0` 你可以[使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md#第-1-步创建免费集群) 来创建一个含有 TiFlash 的免费集群。
随后正常进行查询即可:

Expand Down
4 changes: 2 additions & 2 deletions develop/dev-guide-delete-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ summary: 删除数据、批量删除数据的方法、最佳实践及例子。

在阅读本页面之前,你需要准备以下事项:

- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- 阅读[数据库模式概览](/develop/dev-guide-schema-design-overview.md),并[创建数据库](/develop/dev-guide-create-database.md)[创建表](/develop/dev-guide-create-table.md)[创建二级索引](/develop/dev-guide-create-secondary-indexes.md)
- 需先[插入数据](/develop/dev-guide-insert-data.md)才可删除。

Expand Down Expand Up @@ -335,4 +335,4 @@ BATCH ON {dividing_column} LIMIT {batch_size} {delete_statement};

```sql
BATCH ON `rated_at` LIMIT 1000 DELETE FROM `ratings` WHERE `rated_at` >= "2022-04-15 00:00:00" AND `rated_at` <= "2022-04-15 00:15:00";
```
```
2 changes: 1 addition & 1 deletion develop/dev-guide-insert-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ summary: 插入数据、批量导入数据的方法、最佳实践及例子。

在阅读本页面之前,你需要准备以下事项:

- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- 阅读[数据库模式概览](/develop/dev-guide-schema-design-overview.md),并[创建数据库](/develop/dev-guide-create-database.md)[创建表](/develop/dev-guide-create-table.md)[创建二级索引](/develop/dev-guide-create-secondary-indexes.md)

## 插入行
Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-proxysql-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ summary: 介绍 TiDB 与 ProxySQL 集成的方法。

<div label="TiDB Cloud" value="tidb-cloud">

请参考[使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
请参考[使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)

</div>

Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-tidb-crud-sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ summary: 简单介绍 TiDB 的增删改查 SQL。

## 在开始之前

请确保你已经连接到 TiDB 集群,若未连接,请参考[使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md#第-1-步创建免费集群)来创建一个免费集群。
请确保你已经连接到 TiDB 集群,若未连接,请参考[使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md#第-1-步创建免费集群)来创建一个免费集群。

## 基本 SQL 操作

Expand Down
2 changes: 1 addition & 1 deletion develop/dev-guide-update-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ summary: 更新数据、批量更新数据的方法、最佳实践及例子。

在阅读本页面之前,你需要准备以下事项:

- [使用 TiDB Cloud (Developer Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- [使用 TiDB Cloud (Serverless Tier) 构建 TiDB 集群](/develop/dev-guide-build-cluster-in-cloud.md)
- 阅读[数据库模式概览](/develop/dev-guide-schema-design-overview.md),并[创建数据库](/develop/dev-guide-create-database.md)[创建表](/develop/dev-guide-create-table.md)[创建二级索引](/develop/dev-guide-create-secondary-indexes.md)
- 若需使用 `UPDATE` 语句更新数据,需先[插入数据](/develop/dev-guide-insert-data.md)

Expand Down

0 comments on commit 04578b3

Please sign in to comment.