Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quick-start-with-htap:update the tiup command (#7001) #7005

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 5 additions & 17 deletions quick-start-with-htap.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,13 @@ summary: 本文介绍如何快速上手体验 TiDB 的 HTAP 功能。

### 第 1 步:部署试用环境

在试用 TiDB HTAP 功能前,请按照 [TiDB 数据库快速上手指南](/quick-start-with-tidb.md)中的步骤部署 TiDB 本地测试环境
在试用 TiDB HTAP 功能前,请按照 [TiDB 数据库快速上手指南](/quick-start-with-tidb.md)中的步骤准备 TiDB 本地测试环境,执行以下命令启动 TiDB 集群:

在 [TiDB 数据库快速上手指南](/quick-start-with-tidb.md)中:
{{< copyable "shell-regular" >}}

- 推荐直接执行 `tiup playground` 命令启动最新版本的 TiDB 集群,此命令将自动部署 TiDB、TiKV、PD 和 TiFlash 实例各 1 个:

{{< copyable "shell-regular" >}}

```shell
tiup playground
```

- 如果想要指定 TiDB 版本以及各组件实例个数,请在部署命令中同时指定 TiFlash 实例的个数,示例如下:

{{< copyable "shell-regular" >}}

```shell
tiup playground v5.2.0 --db 2 --pd 3 --kv 3 --tiflash 1 --monitor
```
```shell
tiup playground
```

> **注意:**
>
Expand Down