-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
wenyihu6
wants to merge
5
commits into
cockroachdb:master
Choose a base branch
from
wenyihu6:latencytrackernew2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+1,334
−38
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
bf66903
to
b0b486c
Compare
561eb14
to
e3a84f9
Compare
a1b3210
to
b48984a
Compare
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
b48984a
to
5dd0903
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 thisestimation 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:
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