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

[Fix](doc) tablet operation statment #1972

Merged
merged 5 commits into from
Feb 8, 2025
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
{
"title": "ADMIN CHECK TABLET",
"language": "en"
}
---

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

## Description

This statement is used to perform the specified check operation on a set of tablets.

## Syntax

```sql
ADMIN CHECK TABLET ( <tablet_id> [,...] ) PROPERTIES("type" = "<type_value>")
```

## Required Parameters

**1. `<tablet_id>`**

The ID of the tablet on which the specified check operation will be performed.


## Optional Parameters

**1. `<type_value>`**

Currently, only consistency is supported.

- consistency:

Checks the replica data consistency of the tablet. This command is asynchronous, meaning that after sending it, Doris will start executing the consistency check job for the corresponding tablet.

## Return Value

The final result of the statement will be reflected in the InconsistentNum column of the result from `SHOW PROC "/cluster_health/tablet_health";`.

| Column | DataType | Note |
|-----------------|----------|--------------------------------------|
| InconsistentNum | Int | Number of tablets with inconsistency |


## Access Control Requirements

The user executing this SQL command must have at least the following privileges:

| Privilege | Object | Notes |
|:-----------|:---------|:---------------------------------------------------------------------------------------------------------------------------------|
| Admin_priv | Database | Required to execute administrative operations on the database, including managing tables, partitions, and system-level commands. |

## Examples
- Perform a replica data consistency check on a specified set of tablets

```sql
admin check tablet (10000, 10001) PROPERTIES("type" = "consistency");
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
---
{
"title": "ADMIN COPY TABLET",
"language": "en"
}
---

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

## Description

This statement is used to make a snapshot for the specified tablet, mainly used to load the tablet locally to reproduce
the problem.

## Syntax

```sql
ADMIN COPY TABLET <tablet_id> PROPERTIES ("<key>"="<value>" [,...]).
```

## Required Parameters

**1. `<tablet_id>`**

The ID of the tablet to be copied.

## Optional Parameters

```sql
[ PROPERTIES ("<key>"="<value>" [, ... ]) ]
```

The PROPERTIES clause allows specifying additional parameters:

**1. `<backend_id>`**

Specifies the id of the BE node where the replica is located. If not specified, a replica is randomly selected.

**2. `<version>`**

Specifies the version of the snapshot. The version must be less than or equal to the largest version of the replica. If
not specified, the largest version is used.

**3. `<expiration_minutes>`**

Snapshot retention time. The default is 1 hour. It will automatically clean up after a timeout. Unit minutes.

## Return Value

| Column | DataType | Note |
|-------------------|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| TabletId | string | The ID of the tablet for which the snapshot was created. |
| BackendId | string | The ID of the BE node where the snapshot is stored. |
| Ip | string | The IP address of the BE node storing the snapshot. |
| Path | string | The storage path where the snapshot is saved on the BE node. |
| ExpirationMinutes | string | The duration (in minutes) after which the snapshot will be automatically deleted. |
| CreateTableStmt | string | The table creation statement for the table corresponding to the tablet. This statement is not the original table-building statement, but a simplified table-building statement for later loading the tablet locally. |

## Access Control Requirements

The user executing this SQL command must have at least the following privileges:

| Privilege | Object | Notes |
|:-----------|:---------|:---------------------------------------------------------------------------------------------------------------------------------|
| Admin_priv | Database | Required to execute administrative operations on the database, including managing tables, partitions, and system-level commands. |

## Examples

- Take a snapshot of the replica on the specified BE node

```sql
ADMIN COPY TABLET 10020 PROPERTIES("backend_id" = "10003");
```

```text
TabletId: 10020
BackendId: 10003
Ip: 192.168.10.1
Path: /path/to/be/storage/snapshot/20220830101353.2.3600
ExpirationMinutes: 60
CreateTableStmt: CREATE TABLE `tbl1` (
`k1` int(11) NULL,
`k2` int(11) NULL
) ENGINE=OLAP
DUPLICATE KEY(`k1`, `k2`)
DISTRIBUTED BY HASH(k1) BUCKETS 1
PROPERTIES (
"replication_num" = "1",
"version_info" = "2"
);
```

- Take a snapshot of the specified version of the replica on the specified BE node

```sql
ADMIN COPY TABLET 10010 PROPERTIES("backend_id" = "10003", "version" = "10");
```

```text
TabletId: 10010
BackendId: 10003
Ip: 192.168.10.1
Path: /path/to/be/storage/snapshot/20220830101353.2.3600
ExpirationMinutes: 60
CreateTableStmt: CREATE TABLE `tbl1` (
`k1` int(11) NULL,
`k2` int(11) NULL
) ENGINE=OLAP
DUPLICATE KEY(`k1`, `k2`)
DISTRIBUTED BY HASH(k1) BUCKETS 1
PROPERTIES (
"replication_num" = "1",
"version_info" = "2"
);
```

This file was deleted.

This file was deleted.

Loading
Loading