Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions configure-placement-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ aliases: ['/docs/dev/how-to/configure/placement-rules/']

# Placement Rules

> **Warning:**
>
> In the scenario of using TiFlash, the Placement Rules feature has been extensively tested and can be used in the production environment. Except for the scenario where TiFlash is used, using Placement Rules alone has not been extensively tested, so it is not recommended to enable this feature separately in the production environment.

Placement Rules is an experimental feature of the Placement Driver (PD) introduced in v4.0. It is a replica rule system that guides PD to generate corresponding schedules for different types of data. By combining different scheduling rules, you can finely control the attributes of any continuous data range, such as the number of replicas, the storage location, the host type, whether to participate in Raft election, and whether to act as the Raft leader.

## Rule system
Expand Down
4 changes: 4 additions & 0 deletions dashboard/dashboard-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ category: how-to

# TiDB Dashboard Introduction

> **Warning:**
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not from https://github.com/pingcap/docs-cn/pull/3330/files. Where does this warning come from? @jackysp

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

@yikeke yikeke Jun 16, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The note should be in post-installation-check.md. See 16ce338. Is it okay?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Decided to keep this note in dashboard/dashboard-intro.md. I will add this note in docs-cn later.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated this note in pingcap/docs-cn#3675

>
> TiDB Dashboard is still an experimental feature. It is **NOT** recommended that you use it in the production environment.

TiDB Dashboard is a Web UI for monitoring, diagnosing, and managing the TiDB cluster, which is available since v4.0. It is built into the PD component and does not require an independent deployment.

![TiDB Dashboard interface](/media/dashboard/dashboard-intro.gif)
Expand Down
4 changes: 4 additions & 0 deletions post-installation-check.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ This section describes how to check the TiDB cluster status using TiDB Dashboard

### Use TiDB Dashboard

> **Note:**
>
> TiDB Dashboard is still an experimental feature. It is **NOT** recommended that you use it in the production environment.

1. Log in to TiDB Dashboard at `${pd-ip}:${pd-port}/dashboard`. The username and password is the same as that of the TiDB `root` user. If you have modified the `root` password, enter the modified password. The password is empty by default.

![TiDB-Dashboard](/media/tiup/tidb-dashboard.png)
Expand Down
4 changes: 4 additions & 0 deletions sql-statements/sql-statement-create-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ Query OK, 0 rows affected (0.31 sec)

## Expression index

> **Warning:**
>
> Expression index is still an experimental feature. It is **NOT** recommended that you use it in the production environment.

TiDB can build indexes not only on one or more columns in a table, but also on an expression. When queries involve expressions, expression indexes can speed up those queries.

Take the following query as an example:
Expand Down
4 changes: 4 additions & 0 deletions system-tables/system-table-sql-diagnosis.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ aliases: ['/docs/dev/reference/system-databases/sql-diagnosis/']

# SQL Diagnosis

> **Warning:**
>
> SQL diagnosis is still an experimental feature. It is **NOT** recommended that you use it in the production environment.

SQL diagnosis is a feature introduced in TiDB v4.0. You can use this feature to locate problems in TiDB with higher efficiency. Before TiDB v4.0, you need to use different tools to obtain different information.

The SQL diagnosis system has the following advantages:
Expand Down
2 changes: 1 addition & 1 deletion ticdc/ticdc-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ aliases: ['/docs/dev/reference/tools/ticdc/overview/']

> **Note:**
>
> TiCDC is experimental. It is **not recommended** to use this feature in the production environment.
> TiCDC is still an experimental feature. It is **NOT** recommended that you use it in the production environment.

[TiCDC](https://github.com/pingcap/ticdc) is a tool for replicating the incremental data of TiDB. This tool is implemented by pulling TiKV change logs. It can restore data to a consistent state with any upstream TSO, and provides [TiCDC Open Protocol](/ticdc/ticdc-open-protocol.md) to support other systems to subscribe to data changes.

Expand Down
6 changes: 5 additions & 1 deletion tidb-configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,12 @@ The TiDB configuration file supports more options than command-line parameters.

### `oom-action`

> **Warning:**
>
> This feature is still an experimental feature, which counts the memory during the writing process. For users who want to use this feature to cancel the write operation, it is not recommended to configure it as `cancel` in the production environment.

- Specifies what operation TiDB performs when a single SQL statement exceeds the memory quota specified by `mem-quota-query` and cannot be spilled over to disk.
- Default value: `"cancel"`
- Default value: `"log"`
- The valid options are `"log"` and `"cancel"`. When `oom-action="log"`, it prints the log only. When `oom-action="cancel"`, it cancels the operation and outputs the log.

### `enable-streaming`
Expand Down
4 changes: 4 additions & 0 deletions tikv-configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ This document only describes the parameters that are not included in command-lin

## readpool.unified

> **Warning:**
>
> Unified read pool is still an experimental feature. It is **NOT** recommended that you use it in the production environment.

Configuration items related to the single thread pool serving read requests. This thread pool supersedes the original storage thread pool and coprocessor thread pool since the 4.0 version.

### `min-thread-count`
Expand Down