Skip to content

Commit 4f77c01

Browse files
authored
update doc for max_user_connections. (#19898)
1 parent 14dc3bc commit 4f77c01

5 files changed

+56
-6
lines changed

mysql-schema/mysql-schema-user.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ DESC mysql.user;
6363
| Password_expired | enum('N','Y') | NO | | N | |
6464
| Password_last_changed | timestamp | YES | | CURRENT_TIMESTAMP | |
6565
| Password_lifetime | smallint unsigned | YES | | NULL | |
66+
| max_user_connections | int unsigned | NO | | 0 | |
6667
+------------------------+-------------------+------+------+-------------------+-------+
67-
44 rows in set (0.00 sec)
68+
45 rows in set (0.00 sec)
6869
```
6970

7071
`mysql.user` 表包含多个字段,可分为三组:

security-compatibility-with-mysql.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ TiDB 支持与 MySQL 5.7 类似的安全特性,同时 TiDB 还支持 MySQL 8.0
1111
## 不支持的安全功能特性
1212

1313
- 不支持列级别权限设置。
14-
- 不支持权限属性 `max_questions``max_updated` 以及 `max_user_connections`
14+
- 不支持权限属性 `max_questions``max_updated`
1515
- 不支持密码修改验证策略,修改密码时需要验证当前密码。
1616
- 不支持双密码策略。
1717
- 不支持随机密码生成策略。

sql-statements/sql-statement-alter-user.md

+19
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ Username ::=
3232
AuthOption ::=
3333
( 'IDENTIFIED' ( 'BY' ( AuthString | 'PASSWORD' HashString ) | 'WITH' StringName ( 'BY' AuthString | 'AS' HashString )? ) )?
3434
35+
ConnectionOptions ::=
36+
( 'WITH' 'MAX_USER_CONNECTIONS' N )?
37+
3538
PasswordOption ::= ( 'PASSWORD' 'EXPIRE' ( 'DEFAULT' | 'NEVER' | 'INTERVAL' N 'DAY' )? | 'PASSWORD' 'HISTORY' ( 'DEFAULT' | N ) | 'PASSWORD' 'REUSE' 'INTERVAL' ( 'DEFAULT' | N 'DAY' ) | 'FAILED_LOGIN_ATTEMPTS' N | 'PASSWORD_LOCK_TIME' ( N | 'UNBOUNDED' ) )*
3639
3740
LockOption ::= ( 'ACCOUNT' 'LOCK' | 'ACCOUNT' 'UNLOCK' )?
@@ -177,6 +180,22 @@ ALTER USER 'newuser' PASSWORD REUSE INTERVAL 90 DAY;
177180
Query OK, 0 rows affected (0.02 sec)
178181
```
179182

183+
通过 `ALTER USER ... WITH MAX_USER_CONNECTIONS N` 修改用户 `newuser` 允许登录的最大连接数:
184+
185+
```sql
186+
ALTER USER 'newuser' WITH MAX_USER_CONNECTIONS 3;
187+
SELECT User, Host, max_user_connections FROM mysql.user WHERE User='newuser';
188+
```
189+
190+
```
191+
+---------+------+----------------------+
192+
| User | Host | max_user_connections |
193+
+---------+------+----------------------+
194+
| newuser | % | 3 |
195+
+---------+------+----------------------+
196+
1 row in set (0.01 sec)
197+
```
198+
180199
### 修改用户绑定的资源组
181200

182201
通过 `ALTER USER ... RESOURCE GROUP` 修改用户 `newuser` 的资源组到 `rg1`

sql-statements/sql-statement-create-user.md

+22-4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ StringName ::=
3636
stringLit
3737
| Identifier
3838
39+
ConnectionOptions ::=
40+
( 'WITH' 'MAX_USER_CONNECTIONS' N )?
41+
3942
PasswordOption ::= ( 'PASSWORD' 'EXPIRE' ( 'DEFAULT' | 'NEVER' | 'INTERVAL' N 'DAY' )?
4043
| 'PASSWORD' 'HISTORY' ( 'DEFAULT' | N )
4144
| 'PASSWORD' 'REUSE' 'INTERVAL' ( 'DEFAULT' | N 'DAY' )
@@ -168,18 +171,34 @@ CREATE USER 'newuser9'@'%' PASSWORD EXPIRE;
168171
Query OK, 1 row affected (0.02 sec)
169172
```
170173

174+
创建一个限制最大连接数为 3 的用户。
175+
176+
```sql
177+
CREATE USER 'newuser10'@'%' WITH MAX_USER_CONNECTIONS 3;
178+
SELECT User, Host, max_user_connections FROM mysql.user WHERE User='newuser10';
179+
```
180+
181+
```
182+
+-----------+------+----------------------+
183+
| user | host | max_user_connections |
184+
+-----------+------+----------------------+
185+
| newuser10 | % | 3 |
186+
+-----------+------+----------------------+
187+
1 row in set (0.01 sec)
188+
```
189+
171190
创建一个使用资源组 `rg1` 的用户:
172191

173192
```sql
174-
CREATE USER 'newuser7'@'%' RESOURCE GROUP rg1;
175-
SELECT USER, HOST, USER_ATTRIBUTES FROM MYSQL.USER WHERE USER='newuser7';
193+
CREATE USER 'newuser11'@'%' RESOURCE GROUP rg1;
194+
SELECT USER, HOST, USER_ATTRIBUTES FROM MYSQL.USER WHERE USER='newuser11';
176195
```
177196

178197
```sql
179198
+-----------+------+---------------------------------------------------+
180199
| USER | HOST | USER_ATTRIBUTES |
181200
+-----------+------+---------------------------------------------------+
182-
| newuser7 | % | {"resource_group": "rg1"} |
201+
| newuser11 | % | {"resource_group": "rg1"} |
183202
+-----------+------+---------------------------------------------------+
184203
1 rows in set (0.00 sec)
185204
```
@@ -191,7 +210,6 @@ TiDB 不支持以下 `CREATE USER` 选项。这些选项可被解析,但会被
191210
* `PASSWORD REQUIRE CURRENT DEFAULT`
192211
* `WITH MAX_QUERIES_PER_HOUR`
193212
* `WITH MAX_UPDATES_PER_HOUR`
194-
* `WITH MAX_USER_CONNECTIONS`
195213

196214
TiDB 也不支持以下 `CREATE USER` 选项。这些选项无法被语法解析器解析。
197215

system-variables.md

+12
Original file line numberDiff line numberDiff line change
@@ -666,6 +666,18 @@ mysql> SHOW GLOBAL VARIABLES LIKE 'max_prepared_stmt_count';
666666
-`SESSION` 作用域下,该变量为只读变量。
667667
- 该变量的行为与 MySQL 兼容。
668668

669+
### `max_user_connections` <span class="version-mark">从 v9.0.0 版本开始引入</span>
670+
671+
- 作用域:GLOBAL
672+
- 是否持久化到集群:是
673+
- 是否受 Hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value) 控制:否
674+
- 类型:整数型
675+
- 默认值:`0`
676+
- 取值范围:`[0, 100000]`
677+
- 该变量控制 TiDB 中单个用户允许连接至一个 TiDB Server 实例的最大连接数,用于资源控制。
678+
- 默认值为 `0`,表示不限制用户的连接数。当值大于 `0` 且用户连接数达到此值时,TiDB 服务端将拒绝该用户的连接。
679+
- 当该变量的取值超过 [`max_connections`](/tidb-configuration-file.md#max_connections) 时,TiDB 会采用 `max_connections` 的值作为单个用户实际可建立的最大连接数。例如,若某用户的 `max_user_connections` 设置为 `2000`,而 `max_connections``1000`,则该用户实际可连接至一个 TiDB Server 实例的最大连接数为 `1000`
680+
669681
### `mpp_exchange_compression_mode` <span class="version-mark">从 v6.6.0 版本开始引入</span>
670682

671683
- 作用域:SESSION | GLOBAL

0 commit comments

Comments
 (0)