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

tidb: fix config value for tiproxy (#15635) #16178

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
12 changes: 4 additions & 8 deletions tidb-configuration-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,19 +426,15 @@ Configuration items related to security.

### `session-token-signing-cert` <span class="version-mark">New in v6.4.0</span>

> **Warning:**
>
> The feature controlled by this parameter is under development. **Do not modify the default value**.

+ The certificate file path, which is used by [TiProxy](https://docs.pingcap.com/tidb/v7.6/tiproxy-overview) for session migration.
+ Default value: ""
+ Empty value will cause TiProxy session migration to fail. To enable session migration, all TiDB nodes must set this to the same certificate and key. This means that you should store the same certificate and key on every TiDB node.

### `session-token-signing-key` <span class="version-mark">New in v6.4.0</span>

> **Warning:**
>
> The feature controlled by this parameter is under development. **Do not modify the default value**.

+ The key file path used by [TiProxy](https://docs.pingcap.com/tidb/v7.6/tiproxy-overview) for session migration.
+ Default value: ""
+ Refer to the descriptions of [`session-token-signing-cert`](#session-token-signing-cert-new-in-v640).

## Performance

Expand Down
Loading