System clock drift
Synchronized clocks are critical for distributed databases. If system clocks on the YDB servers drift excessively, distributed transactions will experience increased latencies.
Alert
It is important to keep system clocks on the YDB servers in sync, to avoid high latencies.
If the system clocks of the nodes running the coordinator tablets differ, transaction latencies increase by the time difference between the fastest and slowest system clocks. This occurs because a transaction planned on a node with a faster system clock can only be executed once the coordinator with the slowest clock reaches the same time.
Furthermore, if the system clock drift exceeds 30 seconds, YDB will refuse to process distributed transactions. Before coordinators start planning a transaction, affected Data shards determine an acceptable range of timestamps for the transaction. The start of this range is the current time of the mediator tablet's clock, while the 30-second planning timeout determines the end. If the coordinator's system clock exceeds this time range, it cannot plan a distributed transaction, resulting in errors for such queries.
Diagnostics
To diagnose the system clock drift, use the following methods:
-
Use Healthcheck in the Embedded UI:
-
In the Embedded UI, go to the Databases tab and click on the database.
-
On the Navigation tab, ensure the required database is selected.
-
Open the Diagnostics tab.
-
On the Info tab, click the Healthcheck button.
If the Healthcheck button displays a
MAINTENANCE REQUIRED
status, the YDB cluster might be experiencing issues, such as system clock drift. Any identified issues will be listed in the DATABASE section below the Healthcheck button. -
To see the diagnosed problems, expand the DATABASE section.
The system clock drift problems will be listed under
NODES_TIME_DIFFERENCE
.
Note
For more information, see Health Check API
-
-
Open the Interconnect overview page of the Embedded UI.
-
Use such tools as
pssh
oransible
to run the command (for example,date +%s%N
) on all YDB nodes to display the system clock value.Warning
Network delays between the host that runs
pssh
oransible
and YDB hosts will influence the results.If you use time synchronization utilities, you can also request their status instead of requesting the current timestamps. For example,
timedatectl show-timesync --all
.
Recommendations
-
Manually synchronize the system clocks of servers running YDB nodes. For instance, use
pssh
oransible
to run the clock sync command across all nodes. -
Ensure that system clocks on all YDB servers are regularly synchronized using
timesyncd
,ntpd
,chrony
, or a similar tool. It’s recommended to use the same time source for all servers in the YDB cluster.