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

kvserver/closedts: auto-tune closed ts #142721

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

wenyihu6
Copy link
Contributor

@wenyihu6 wenyihu6 commented Mar 12, 2025

kvserver/closedts: add latency based closed timestamp policies

This patch adds latency based closed timestamp policies to
ctpb.LatencyBasedRangeClosedTimestampPolicy.

Part of: #59680
Release note: none


kvserver/closedts: auto-tune closed ts

For global table ranges, we aim to ensure follower replicas can serve
present-time reads by calculating a target closed timestamp that leads the
current time (using the LEAD_FOR_GLOBAL_READS policy). The goal of this
estimation is to be confident that by that timestamp that the all follower
replicas should have received this closed timestamps and can serve present time
reads without redirecting to the leaseholders. Note that this is an estimated
goal, not the exact lead time. It is still possible that some follower nodes are
really behind or we fail to bump closed timestamps.

Calculation:

raft_propagation_time = max_network_rtt*1.5 + raft_overhead(20ms)
side_propagation_time = max_network_rtt*0.5 + side_transport_close_interval(200ms by default)
closed_ts_propagation = max(raft_propagation_time,side_propagation_time)
closed_ts_at_sender = now(sender’s current clock) + maxClockOffset(500ms by
default) + buffer (25ms) + closed_ts_propagation

Currently, max_network_rtt is hardcoded at 150ms, leading to a default 800ms lead.

Problems with the current implementation:

Tuning trade-offs: A higher lead timestamp forces leaseholders to wait longer
for the current time to catch up before returning to client, incurring a high
write latency. A lower lead timestamp may result in followers not fully
replicating the changes before returning control to the client, forcing follower
replicas to redirect query to the leaseholder and increase read latency.

Cluster wide setting: kv.closed_timestamp.lead_for_global_reads_override only
applies to the entire cluster, not per range. For geographically distant
replicas, a short lead time may not be enough for full application. However,
increasing the lead time cluster wide can harm write performance for replicas
that are close together and don’t require as much time to replicate.

This commit adds a latency tracker to the side transport senders.

Currently, nodes create a map of closed timestamps for each policy without
consulting leaseholders. Senders pass this map to leaseholders, who decide
whether to "bump" their closed timestamp and which policy to use. Senders then
send this information to receivers to opt in ranges and pick the closed
timestamps based on the policies ranges opt in.

Currently there are only two policies in the map side transport senders create.
We lack fine grained control into the closed timestamps based on the ranges. The
new design adds 16 more policies based on observed latency between the leaseholder
replica node and the furthest replica node.

Periodically, policy refresher iterates over all leaseholders of a node and
refreshes its cached closed timestamp policies. This policy is then used by
side transport and by raft side closed timestamp computation.

kv.closed_timestamp.lead_for_global_reads_auto_tune.enabled can now be used
to auto-tune the lead time that ranges global tables use to publish
close timestamps. The kv.closed_timestamp.lead_for_global_reads_override
cluster setting takes precedence over this one. If auto-tuning is disabled or
no data is observed, the system falls back to a hardcoded computed lead time.

Resolves: #59680
Release note: none

Copy link

blathers-crl bot commented Mar 12, 2025

Your pull request contains more than 1000 changes. It is strongly encouraged to split big PRs into smaller chunks.

🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf.

@cockroach-teamcity
Copy link
Member

This change is Reviewable

@wenyihu6 wenyihu6 force-pushed the latencytrackernew2 branch 21 times, most recently from bf66903 to b0b486c Compare March 18, 2025 01:49
@wenyihu6 wenyihu6 requested a review from arulajmani March 18, 2025 01:50
@wenyihu6 wenyihu6 changed the title kvserver/closedts: prototype for new static fixed size bucket idea kvserver/closedts: auto-tune closed ts Mar 18, 2025
@wenyihu6 wenyihu6 force-pushed the latencytrackernew2 branch 5 times, most recently from 561eb14 to e3a84f9 Compare March 24, 2025 18:28
@wenyihu6 wenyihu6 force-pushed the latencytrackernew2 branch 24 times, most recently from a1b3210 to b48984a Compare April 1, 2025 21:39
wenyihu6 added 5 commits April 3, 2025 15:05
This commit introduces `policyrefresher.PolicyRefresher` which refreshes the
closed timestamp policies of leaseholder ranges based on observed network
latency periodically at the interval of
kv.closed_timestamp.policy_refresh_interval.

Part of: cockroachdb#59680
Release note: none
This commit adds a new cluster setting,
`kv.closed_timestamp.policy_latency_refresh_interval` to control how
frequently the system refreshes latency cache between nodes.

Part of: cockroachdb#59680
Release note: none
Previously, closed timestamp policies were computed on-demand during
`r.closedTimestampPolicyRLocked` under RLock.

This commit changes it so that is refreshed async during specific events
instead of on-demand during `r.closedTimestampPolicyRLocked`. This helps
reduce the time spent under the `r.mu.RLock()` in `closedTimestampPolicyRLocked`
and also helps pave the foundation for future changes to use latency based
closed timestamp policies.

Policies are now refreshed on demand during specific events:
- when there is a leaseholder change leasePostApplyLocked
- when there is a config change r.SetSpanConfig
- or periodically at the interval of kv.closed_timestamp.policy_refresh_interval.

Part of: cockroachdb#59680
Release note: none
This patch adds latency based closed timestamp policies to
ctpb.LatencyBasedRangeClosedTimestampPolicy.

Part of: cockroachdb#59680
Release note: none
For global table ranges, we aim to ensure follower replicas can serve
present-time reads by calculating a target closed timestamp that leads the
current time (using the `LEAD_FOR_GLOBAL_READS` policy). The goal of this
estimation is to be confident that by that timestamp that the all follower
replicas should have received this closed timestamps and can serve present time
reads without redirecting to the leaseholders. Note that this is an estimated
goal, not the exact lead time. It is still possible that some follower nodes are
really behind or we fail to bump closed timestamps.

Calculation:

```
raft_propagation_time = max_network_rtt*1.5 + raft_overhead(20ms)
side_propagation_time = max_network_rtt*0.5 + side_transport_close_interval(200ms by default)
closed_ts_propagation = max(raft_propagation_time,side_propagation_time)
closed_ts_at_sender = now(sender’s current clock) + maxClockOffset(500ms by
default) + buffer (25ms) + closed_ts_propagation
```

Currently, `max_network_rtt` is hardcoded at 150ms, leading to a default 800ms lead.

Problems with the current implementation:

Tuning trade-offs: A higher lead timestamp forces leaseholders to wait longer
for the current time to catch up before returning to client, incurring a high
write latency. A lower lead timestamp may result in followers not fully
replicating the changes before returning control to the client, forcing follower
replicas to redirect query to the leaseholder and increase read latency.

Cluster wide setting: kv.closed_timestamp.lead_for_global_reads_override only
applies to the entire cluster, not per range. For geographically distant
replicas, a short lead time may not be enough for full application. However,
increasing the lead time cluster wide can harm write performance for replicas
that are close together and don’t require as much time to replicate.

This commit adds a latency tracker to the side transport senders.

For side transport senders, nodes create a map of closed timestamps for each
policy without consulting leaseholders. Senders pass this map to leaseholders,
who decide whether to "bump" their closed timestamp and which policy to use.
Senders then send this information to receivers to opt in ranges and pick the
closed timestamps based on the policies ranges opt in.

Currently, side transport senders create only two policies, offering limited
control over closed timestamps based on range specific latencies. The new design
introduces 16 additional policies, each representing a different network latency
bucket ranges fall under. Instead of relying on a hardcoded 150ms latency for
closed timestamp calculations, ranges will now use the appropriate bucket
based on its observed network conditions.

Periodically, a policy refresher iterates over all leaseholders on a node,
updating cached closed timestamp policies based on the observed latency between
the leaseholder replica and the furthest replica. This policy is then used by
side transport and by raft side closed timestamp computation.

Instead of using the hardcoded 150ms network roundtrip latency, a more
dynamic latency would be used based on the

kv.closed_timestamp.lead_for_global_reads_auto_tune.enabled can now be used
to auto-tune the lead time that global table ranges use to publish
close timestamps. The kv.closed_timestamp.lead_for_global_reads_override
cluster setting takes precedence over this one. If auto-tuning is disabled or
no data is observed, the system falls back to a hardcoded computed lead time.

Resolves: cockroachdb#59680
Release note: none
@wenyihu6 wenyihu6 force-pushed the latencytrackernew2 branch from b48984a to 5dd0903 Compare April 3, 2025 19:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

kv: tune closed timestamp duration for ranges with global_reads based on replication latency
2 participants