-
Notifications
You must be signed in to change notification settings - Fork 656
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
Refactor of ActiveDefrag to reduce latencies #1242
base: unstable
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## unstable #1242 +/- ##
============================================
+ Coverage 70.60% 70.76% +0.16%
============================================
Files 116 116
Lines 63264 63302 +38
============================================
+ Hits 44666 44796 +130
+ Misses 18598 18506 -92
|
ffdf32a
to
4054b1f
Compare
@zvi-code Would you mind also helping taking a look on this PR. |
@JimB123 , I skimmed through the code, at a very high level, it looks good (and the results you posted are very promising!). I will followup with a more detailed review of the code. |
@zvi-code The Valkey event loop supports creation of various timer events. But this For defrag, there are 2 things that need to happen. First, we need to make a decision if we should begin to defrag. It makes sense to decide this using the main In the old code, if we target 10% of the CPU, that was done by letting defrag run for (a continuous) 10ms every time the 100ms In the new code, with the same 10% CPU target, we run the defrag job for only 500us, but schedule it on it's own dedicated timer so that it can run more often. The code modulates the frequency rather than the duration. (In extreme cases, anti-starvation must still modulate the duration as starvation impacts the frequency.)
I haven't looked at the lazy expiration before, but looking at it now, that's exactly what I'm saying. We shouldn't be doing ANYTHING in
OK, wow, this is another thing I haven't looked at before. IMO, This |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mostly looks good, much more readable than before! Some minor comments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replied to some of @madolson comments. Will publish update.
3f7d0ad
to
825da4f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm. @zvi-code would still like you to take a look if you have time.
@valkey-io/core-team there is a small major change here in the form of a config that determines how much time we spend on active Defrag. Please take a look and provide 👍 or 👎 . You can see the definition here:
Other than that, this change just better amortizes the active-defrag work to reduce latency spikes. |
@JimB123 , added several comments, will continue to complete the review tomorrow |
Signed-off-by: Jim Brunner <[email protected]>
825da4f
to
a943d5e
Compare
Signed-off-by: Madelyn Olson <[email protected]>
Signed-off-by: Madelyn Olson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just cleaning up merge conflicts.
Signed-off-by: Madelyn Olson <[email protected]>
Signed-off-by: Madelyn Olson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few more merge conflict resolutions.
Signed-off-by: Madelyn Olson <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this looks good, just waiting for Zvi review and getting TSC consensus. I pinged them on the slack as well to take a look here.
This config is similar to how we control active rehashing and active expire. I just want to put it into context to confirm this is the config we want. In general, we have Binbin recently adjusted active rehashing to do work based on For active defrag, we already have |
The hz mechanism can get very out of sync under high load, and it seems more straightforward to decouple the active-defrag work from the main server cron and control it separately and let it precisely control it's usage. Active defrag does a lot more work than the rehashing cron, so was causing higher latency spikes. Anything else you want to add @JimB123 ? |
What's the relation between |
|
The configs limit each other then. If you set Even if you set Can't we just use |
This PR decouples the cycle time from serverCron so not hit by the hz limits. It independently calculates how much time it should be spending doing defrag and schedules its own timer when active defrag is needed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still have some questions about risk that this change will actually increase tail latencies in some scenarios. Added specific comments\questions in relevant code
defrag.timeproc_overage_us = 0; | ||
|
||
if (dutyCycleUs < server.active_defrag_cycle_us) { | ||
/* We never reduce our cycle time, that would increase overhead. Instead, we track this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a little not clear. server.active_defrag_cycle_us
is actually a min, right? when you say "we never reduce" you mean with respect to server.active_defrag_cycle_us
and not with respect to previous cycle, is that correct?
serverAssert(targetCpuPercent > 0 && targetCpuPercent < 100); | ||
|
||
// Given the desired duty cycle, what inter-cycle delay do we need to achieve that? | ||
long totalCycleTimeUs = server.active_defrag_cycle_us * 100 / targetCpuPercent; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you explain the calculation here? why are you looking at server.active_defrag_cycle_us
and not the actual dutyCycleUs
? An explanation of the overall computation here would be helpful [like you did in computeDefragCucleUs
]
|
||
typedef struct { | ||
kvstoreIterState kvstate; | ||
getClientChannelsFn getPubSubChannels; | ||
} defragPubSubCtx; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add static assert to enforce the assumption of kvstoreIterState kvstate;
at the begining of defragPubSubCtx
and defragKeysCtx
dictScanFunction scan_fn, | ||
kvstoreHelperPreContinueFn precontinue_fn, | ||
const dictDefragFunctions *defragfns, | ||
void *privdata) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that privdata
internal value is set in this function but it's not really used cross iterations or by caller in the upper level, so why are you setting the state in privdata? why not just pass the state to precontinue_fn
? and not set it on privdata?
* Note that dutyCycleUs addresses starvation. If the wait time was long, we will compensate | ||
* with a proportionately long duty-cycle. This won't significantly affect perceived | ||
* latency, because clients are already being impacted by the long cycle time which caused | ||
* the starvation of the timer. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While it is correct, this is not a good behaviour, especially from tail latency perspective. A better behaviour would increase the "measure" time interval to keep smooth run time of defrag even when there exists a periodic spike. Now a sporadic long running command\cron-job will cause defrag to run in sporadic long running spikes as well, isn't it so?
Refer to: #1141
This update refactors the defrag code to:
With this update, the defrag cycle time is reduced to 500us, with more frequent cycles. This results in much more predictable latencies, with a dramatic reduction in tail latencies.
(See #1141 for more complete details.)
This update is focused mostly on the high-level processing, and does NOT address lower level functions which aren't currently timebound (e.g.
activeDefragSdsDict()
, andmoduleDefragGlobals()
). These are out of scope for this update and left for a future update.I fixed
kvstoreDictLUTDefrag
because it was using up to 7ms on a CME single shard.During unit tests, the following max latencies were measured (in verbose mode):
In addition, the following test was run on both old and new versions of the software:
Configuration was set so that both old/new clusters would use 10% defrag CPU.
Defrag time OLD: 120 sec
Defrag time NEW: 105 sec
Times were based on a 5-second poll. (I didn't have logs running.)
The improvement in run time is believed to be due to the unskewed nature of the new code which provides a more accurate 10% of the CPU.
This is the OLD distribution for the GET benchmark while defragging:
This is the equivalent NEW distribution:
You can see in the new distribution that there is a very slight increase in latencies <= 99.951%, in exchange for a huge reduction in tail latencies.
A CONTROL test WITHOUT Active Defrag running shows a very similar distribution with a variation of roughly 500us in the tail latencies (as expected):