-
Notifications
You must be signed in to change notification settings - Fork 708
tidb: mark tidb_mpp_store_fail_ttl as deprecated
#21410
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -4079,12 +4079,16 @@ As shown in this diagram, when [`tidb_enable_paging`](#tidb_enable_paging-new-in | |||||
|
|
||||||
| ### tidb_mpp_store_fail_ttl | ||||||
|
|
||||||
| > **Warning:** | ||||||
| > | ||||||
| > Starting from v9.0.0, this variable is deprecated. Its value will be fixed to `0s`, meaning TiDB no longer waits before sending queries to newly started TiFlash nodes, as additional delay is no longer necessary to prevent query failures. | ||||||
|
|
||||||
| - Scope: SESSION | GLOBAL | ||||||
| - Persists to cluster: Yes | ||||||
| - Applies to hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value): No | ||||||
| - Type: Duration | ||||||
| - Default value: `60s` | ||||||
| - The newly started TiFlash node does not provide services. To prevent queries from failing, TiDB limits the tidb-server sending queries to the newly started TiFlash node. This variable indicates the time range in which the newly started TiFlash node is not sent requests. | ||||||
| - Default value: Before v9.0.0, the default value is `60s`. Starting from v9.0.0, the default value is `0s`. | ||||||
qiancai marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| - The newly started TiFlash node does not provide services. To prevent queries from failing, TiDB limits the tidb-server from sending queries to the newly started TiFlash nodes. This variable indicates the time range during which the newly started TiFlash node does not send requests. | ||||||
|
||||||
| - The newly started TiFlash node does not provide services. To prevent queries from failing, TiDB limits the tidb-server from sending queries to the newly started TiFlash nodes. This variable indicates the time range during which the newly started TiFlash node does not send requests. | |
| - To prevent query failures when a TiFlash node starts, TiDB avoids sending queries to it for a period of time. This variable controls that time period. |
Uh oh!
There was an error while loading. Please reload this page.