Skip to content

Commit b7263fa

Browse files
authored
develop: update DevTier to Developer Tier (#9794)
1 parent ea8f31b commit b7263fa

14 files changed

+21
-21
lines changed

TOC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- Develop
2323
- [Overview](/develop/dev-guide-overview.md)
2424
- Quick Start
25-
- [Build a TiDB Cluster in TiDB Cloud (DevTier)](/develop/dev-guide-build-cluster-in-cloud.md)
25+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md)
2626
- [CRUD SQL in TiDB](/develop/dev-guide-tidb-crud-sql.md)
2727
- Build a Simple CRUD App with TiDB
2828
- [Java](/develop/dev-guide-sample-application-java.md)

develop/dev-guide-build-cluster-in-cloud.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Build a TiDB Cluster in TiDB Cloud (DevTier)
2+
title: Build a TiDB Cluster in TiDB Cloud (Developer Tier)
33
summary: Learn how to build a TiDB cluster in TiDB Cloud (Developer Tier) and connect to a TiDB Cloud cluster.
44
---
55

66
<!-- markdownlint-disable MD029 -->
77

8-
# Build a TiDB cluster in TiDB Cloud (DevTier)
8+
# Build a TiDB Cluster in TiDB Cloud (Developer Tier)
99

1010
This document walks you through the quickest way to get started with TiDB. You will use [TiDB Cloud](https://en.pingcap.com/tidb-cloud) to create a free TiDB cluster, connect to it, and run a sample application on it.
1111

@@ -15,8 +15,8 @@ If you need to run TiDB on your local machine, see [Starting TiDB Locally](/quic
1515

1616
1. If you do not have a TiDB Cloud account, click [TiDB Cloud](https://tidbcloud.com/free-trial) to sign up for an account.
1717
2. [Sign in](https://tidbcloud.com/) with your TiDB Cloud account.
18-
3. To create a Developer Tier cluster for one year free, you can either select the **Developer Tier** plan on the [plan page](https://tidbcloud.com/console/plans) or click [Create a Cluster (Dev Tier)](https://tidbcloud.com/console/create-cluster?tier=dev).
19-
4. On the **Create a Cluster (Dev Tier)** page, set up your cluster name, password, cloud provider (for now, only AWS is available for Developer Tier), and region (a nearby region is recommended). Then click **Create** to create your cluster.
18+
3. To create a Developer Tier cluster for one year free, you can either select the **Developer Tier** plan on the [plan page](https://tidbcloud.com/console/plans) or click [Create a Cluster (Developer Tier)](https://tidbcloud.com/console/create-cluster?tier=dev).
19+
4. On the **Create a Cluster (Developer Tier)** page, set up your cluster name, password, cloud provider (for now, only AWS is available for Developer Tier), and region (a nearby region is recommended). Then click **Create** to create your cluster.
2020
5. Your TiDB Cloud cluster will be created in approximately 5 to 15 minutes. You can check the creation progress at [Active Clusters](https://tidbcloud.com/console/clusters).
2121
6. After creating a cluster, on the **Active Clusters** page, click the name of your newly created cluster to navigate to the cluster control panel.
2222

develop/dev-guide-create-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document describes how to create a database using SQL and various programmi
1111

1212
Before creating a database, do the following:
1313

14-
- [Build a TiDB Cluster in TiDB Cloud Developer Tier](/develop/dev-guide-build-cluster-in-cloud.md).
14+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md).
1515
- Read [Schema Design Overview](/develop/dev-guide-schema-design-overview.md).
1616

1717
## What is database

develop/dev-guide-create-secondary-indexes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document describes how to create a secondary index using SQL and various pr
1111

1212
Before creating a secondary index, do the following:
1313

14-
- [Build a TiDB Cluster in TiDB Cloud Developer Tier](/develop/dev-guide-build-cluster-in-cloud.md).
14+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md).
1515
- Read [Schema Design Overview](/develop/dev-guide-schema-design-overview.md).
1616
- [Create a Database](/develop/dev-guide-create-database.md).
1717
- [Create a Table](/develop/dev-guide-create-table.md).

develop/dev-guide-create-table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document introduces how to create tables using the SQL statement and the re
1111

1212
Before reading this document, make sure that the following tasks are completed:
1313

14-
- [Build a TiDB Cluster in TiDB Cloud (DevTier)](/develop/dev-guide-build-cluster-in-cloud.md).
14+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md).
1515
- Read [Schema Design Overview](/develop/dev-guide-schema-design-overview.md).
1616
- [Create a Database](/develop/dev-guide-create-database.md).
1717

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

287287
> **Note:**
288288
>
289-
> If your cluster does not contain **TiFlash** nodes, this SQL statement will report an error: `1105 - the tiflash replica count: 1 should be less than the total tiflash server count: 0`. You can use [Build a TiDB Cluster in TiDB Cloud (DevTier)](/develop/dev-guide-build-cluster-in-cloud.md#step-1-create-a-free-cluster) to create a free cluster that includes **TiFlash**.
289+
> If your cluster does not contain **TiFlash** nodes, this SQL statement will report an error: `1105 - the tiflash replica count: 1 should be less than the total tiflash server count: 0`. You can use [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md#step-1-create-a-free-cluster) to create a free cluster that includes **TiFlash**.
290290
291291
Then you can go on to perform the following query:
292292

develop/dev-guide-delete-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This document describes how to use the [DELETE](/sql-statements/sql-statement-de
1111

1212
Before reading this document, you need to prepare the following:
1313

14-
- [Build a TiDB Cluster in TiDB Cloud (DevTier)](/develop/dev-guide-build-cluster-in-cloud.md)
14+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md)
1515
- Read [Schema Design Overview](/develop/dev-guide-schema-design-overview.md), [Create a Database](/develop/dev-guide-create-database.md), [Create a Table](/develop/dev-guide-create-table.md), and [Create Secondary Indexes](/develop/dev-guide-create-secondary-indexes.md)
1616
- [Insert Data](/develop/dev-guide-insert-data.md)
1717

develop/dev-guide-get-data-from-single-table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
title: Query data from a single table
2+
title: Query Data from a Single Table
33
summary: This document describes how to query data from a single table in a database.
44
---
55

66
<!-- markdownlint-disable MD029 -->
77

8-
# Query data from a single table
8+
# Query Data from a Single Table
99

1010
This document describes how to use SQL and various programming languages to query data from a single table in a database.
1111

develop/dev-guide-insert-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This document describes how to insert data into TiDB by using the SQL language w
1313

1414
Before reading this document, you need to prepare the following:
1515

16-
- [Build a TiDB Cluster in TiDB Cloud(DevTier)](/develop/dev-guide-build-cluster-in-cloud.md).
16+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md).
1717
- Read [Schema Design Overview](/develop/dev-guide-schema-design-overview.md), [Create a Database](/develop/dev-guide-create-database.md), [Create a Table](/develop/dev-guide-create-table.md), and [Create Secondary Indexes](/develop/dev-guide-create-secondary-indexes.md)
1818

1919
## Insert rows

develop/dev-guide-optimistic-and-pessimistic-transaction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Optimistic transaction and pessimistic transaction
2+
title: Optimistic Transactions and Pessimistic Transactions
33
summary: Learn about optimistic and pessimistic transactions in TiDB.
44
---
55

6-
# Optimistic transactions and pessimistic transactions
6+
# Optimistic Transactions and Pessimistic Transactions
77

88
The [optimistic transaction](/optimistic-transaction.md) model commits the transaction directly, and rolls back when there is a conflict. By contrast, the [pessimistic transaction](/pessimistic-transaction.md) model tries to lock the resources that need to be modified before actually committing the transaction, and only starts committing after ensuring that the transaction can be successfully executed.
99

develop/dev-guide-optimize-sql-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Overview of Optimizing SQL Performance
2+
title: Overview of Optimizing SQL Performance
33
summary: Provides an overview of SQL performance tuning for TiDB application developers.
44
---
55

6-
# Overview of Optimizing SQL Performance
6+
# Overview of Optimizing SQL Performance
77

88
This document introduces how to optimize the performance of SQL statements in TiDB. To get good performance, you can start with the following aspects:
99

develop/dev-guide-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Developer Overview
2+
title: Developer Guide Overview
33
summary: Introduce the overview of the developer guide.
44
aliases: ['/tidb/dev/connectors-and-apis/','/tidb/stable/connectors-and-apis/','/appdev/dev/','/tidb/dev/dev-guide-outdated-for-laravel']
55
---

develop/dev-guide-sql-development-specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: SQL Development Specifications
33
summary: Learn about the SQL development specifications for TiDB.
44
---
55

6-
# SQL Development Specification
6+
# SQL Development Specifications
77

88
This document introduces some general development specifications for using SQL.
99

develop/dev-guide-tidb-crud-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This document briefly introduces how to use TiDB's CURD SQL.
99

1010
## Before you start
1111

12-
Please make sure you are connected to a TiDB cluster. If not, refer to [Build a TiDB Cluster in TiDB Cloud (DevTier)](/develop/dev-guide-build-cluster-in-cloud.md#step-1-create-a-free-cluster) to create a free cluster.
12+
Please make sure you are connected to a TiDB cluster. If not, refer to [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md#step-1-create-a-free-cluster) to create a free cluster.
1313

1414
## Explore SQL with TiDB
1515

develop/dev-guide-update-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This document describes how to use the following SQL statements to update the da
1414

1515
Before reading this document, you need to prepare the following:
1616

17-
- [Build a TiDB Cluster in TiDB Cloud(DevTier)](/develop/dev-guide-build-cluster-in-cloud.md).
17+
- [Build a TiDB Cluster in TiDB Cloud (Developer Tier)](/develop/dev-guide-build-cluster-in-cloud.md).
1818
- Read [Schema Design Overview](/develop/dev-guide-schema-design-overview.md), [Create a Database](/develop/dev-guide-create-database.md), [Create a Table](/develop/dev-guide-create-table.md), and [Create Secondary Indexes](/develop/dev-guide-create-secondary-indexes.md).
1919
- If you want to `UPDATE` data, you need to [insert data](/develop/dev-guide-insert-data.md) first.
2020

0 commit comments

Comments
 (0)