You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System variable tidb_rc_read_check_ts makes the read statements don't get timestamp from PD at RC isolation, which improves TiDB performance. #32922
But we meet a new scenario in core bank service. Some service needs to run when tidb_rc_read_check_ts is on, some service needs to run when tidb_rc_read_check_ts is off. So, we should change system variable from GLOBAL/SESSION to INSTANCE.
Some TiDB instances should run when when tidb_rc_read_check_ts is on. You should add it to the configure file of of this tidb, as below.
[instance]
tidb_rc_read_check_ts = true
Other TiDB instances should do nothing about tidb_rc_read_check_ts in the configure file.
The text was updated successfully, but these errors were encountered:
Enhancement
System variable
tidb_rc_read_check_ts
makes the read statements don't get timestamp fromPD
at RC isolation, which improvesTiDB
performance. #32922But we meet a new scenario in core bank service. Some service needs to run when
tidb_rc_read_check_ts
is on, some service needs to run whentidb_rc_read_check_ts
is off. So, we should change system variable fromGLOBAL/SESSION
toINSTANCE
.Some TiDB instances should run when when
tidb_rc_read_check_ts
is on. You should add it to the configure file of of this tidb, as below.[instance]
tidb_rc_read_check_ts = true
Other TiDB instances should do nothing about
tidb_rc_read_check_ts
in the configure file.The text was updated successfully, but these errors were encountered: