yo_kv/tier.rs
1//! Moving a value out to the file and getting it back, which is WiscKey's idea
2//! with the tag from `06` section 6 doing the bookkeeping.
3//!
4//! Three pieces already exist and this is what joins them. [`cold`]
5//! knows how to lay a value out on the file. [`value`] knows how
6//! to write a record that points at one and how to tell in one bit whether a
7//! record does. [`demote`](crate::demote) knows how to choose. What was missing
8//! is the thing that reads a record, writes its bytes out, replaces it with a
9//! twelve byte pointer, and does the reverse on the way back.
10//!
11//! # What separation buys, exactly
12//!
13//! A resident string record is one meta byte, three access bytes, eight more if
14//! it has a deadline, and then the value. A demoted one is the same head with
15//! twelve bytes of address and length instead of the value. So demotion pays
16//! from thirteen payload bytes upward and costs memory below that, which is why
17//! [`worth_demoting`] is arithmetic on the two lengths and not a tunable. There
18//! is no threshold to get wrong.
19//!
20//! What is kept in memory is chosen the same way: the deadline, the access
21//! field, the kind and the encoding all stay, so `TTL`, `TYPE`, `OBJECT
22//! ENCODING`, `STRLEN`, `EXISTS` and every eviction policy still answer at
23//! memory speed on a key whose bytes are on the device. G9's budget of 1.05
24//! device reads per point read is spent on reads that actually want bytes.
25//!
26//! # The doorkeeper, and why a fault is not a promotion
27//!
28//! Reading a demoted value does not bring it back. The first read of a key sets
29//! its bits in the doorkeeper and serves from the file; a second read while
30//! those bits are still there brings it into memory. So a scan over cold data
31//! displaces nothing, and a key that is genuinely warming up pays one extra
32//! device read to prove it. That is the TinyLFU admission argument and it is the
33//! difference between a tier and a cache that thrashes.
34//!
35//! # Where the collections are
36//!
37//! This file moves strings, and only ones that are not int encoded. A collection
38//! keeps its body in a slab and its record holds a slab index, so moving one
39//! means freeing a slab slot and growing a record, and neither of those is
40//! reachable from here. The two halves it does own are [`Tier::stash`] and
41//! [`Tier::fetch`], which are the store side with the record side left out, and
42//! the rest is in `Keyspace::demote_body` and `Keyspace::promote_body` beside
43//! it.
44//!
45//! A demoted body arriving at [`Tier::fault`] is refused rather than served,
46//! because putting a value back here means writing a string record and that
47//! would turn a set into a string. The caller routes them, and the refusal is
48//! there so that a caller which forgets gets an error instead of a corrupted
49//! key.
50//!
51//! Victims are chosen by sampling, through the same [`evict::Pool`] eviction
52//! uses, rather than by the S3-FIFO and SIEVE queues in [`demote`](crate::demote).
53//! Those queues want a slot number per entry that is stable across an arena
54//! compaction, and this crate does not have one to give them: an address moves
55//! when a segment is evacuated and a key is the thing being looked up. Deciding
56//! where that number lives is a record layout question and it is the next one
57//! this milestone has to answer. Sampling is what eviction and the expire cycle
58//! already do, it needs nothing new, and it is a floor rather than a ceiling.
59//!
60//! # Space on the file
61//!
62//! Promoting a value leaves its chunks where they are. There is no delete on
63//! [`Blocks`] and there does not need to be one, because a chunk nobody points
64//! at is exactly what the log's compaction already collects, and the same is
65//! true of the chunks a crash leaves behind between the last chunk write and the
66//! directory write.
67
68use yo_common::{Code, Error, Result, Rng};
69use yo_index::RawMap;
70
71use crate::access::{Lfu, Policy};
72use crate::cold::{self, Blocks};
73use crate::demote::Doorkeeper;
74use crate::evict;
75use crate::value::{self, Encoding, Kind};
76
77/// How many keys the doorkeeper remembers before it clears itself.
78///
79/// Large enough that a read and the read that follows it a few thousand keys
80/// later still count as the same window, small enough that the filter does not
81/// saturate and start admitting everything. Both failure modes are the same
82/// failure, which is a doorkeeper that has stopped saying no.
83pub const WINDOW: usize = 8192;
84
85/// How many entries one round of sampling walks past before it gives up on
86/// finding its sixteen victims in this part of the keyspace.
87///
88/// Eviction does not need a number like this, because every entry it looks at
89/// is a candidate and sixteen entries is sixteen candidates. Demotion is not
90/// like that. A record that is already cold is skipped, and in a keyspace that
91/// is mostly cold, which is exactly the state a sweep spends most of its time
92/// in, nearly every entry a round walks is one it has to skip. Counting those
93/// against the round's budget makes the sweep stall with the last few percent
94/// of the keyspace still in memory, sitting a few buckets further along than
95/// the round was allowed to look.
96///
97/// So the budget counts victims found and this counts entries walked, purely so
98/// that a round over a segment holding nothing demotable still ends. It is
99/// larger than a segment on purpose: a barren round then means the segment it
100/// drew is genuinely clean, which is the thing [`BARREN`] wants to know.
101pub const WALK: usize = 1024;
102
103/// How many rounds of sampling have to come back with nothing before
104/// [`Tier::relieve`] accepts that there is nothing left to move.
105///
106/// A round covers the whole of one index segment, so a barren round is a
107/// segment with nothing left in it worth moving. Sixteen of those in a row,
108/// against segments drawn at random, is a keyspace that is done.
109///
110/// It has to be a run and not a single round because sampling picks its segment
111/// and its starting bucket out of one random draw, so two rounds that draw the
112/// same pair walk the same entries and the second one finds every one of them
113/// already moved. Stopping on the first barren round quit with ninety four
114/// percent of the keyspace still in memory.
115pub const BARREN: usize = 16;
116
117/// What happened to a read of a key that may not have been in memory.
118#[derive(Debug, Clone, Copy, PartialEq, Eq)]
119pub enum Faulted {
120 /// No such key. Nothing was read and nothing was written.
121 Missing,
122 /// The value was in memory all along, so the output buffer was not touched
123 /// and the caller should read the record the way it always does.
124 Warm,
125 /// Read from the file and deliberately left there, because one read is not
126 /// enough to earn a slot in memory back.
127 Served,
128 /// Read from the file and brought back into memory, so the next read of
129 /// this key does not touch the device.
130 Promoted,
131}
132
133/// The running totals, for `INFO` and for the gates.
134#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
135pub struct Stats {
136 /// Values moved out to the file.
137 pub demoted: u64,
138 /// Values brought back into memory.
139 pub promoted: u64,
140 /// Reads that went to the device, whether or not they promoted. This over
141 /// the number of point reads is the ratio G9 is a gate on.
142 pub faults: u64,
143 /// Reads that went to the device and left the value there.
144 pub served: u64,
145 /// Payload bytes written to the file.
146 pub bytes_out: u64,
147 /// Payload bytes read back from it.
148 pub bytes_in: u64,
149}
150
151/// What a sweep did, which is two numbers because it does two things.
152///
153/// Kept apart rather than added up because they answer different questions.
154/// `moved` is how much colder the keyspace got and it is what a test about
155/// demotion is written against. `freed` is how much memory came back, and that
156/// is what a server holding itself to a limit has to read.
157#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
158pub struct Relief {
159 /// Values that went out to the file.
160 pub moved: usize,
161 /// Bytes of memory the map gave back while that was happening, which is
162 /// segments the arena handed over and not records that got shorter.
163 pub freed: usize,
164}
165
166impl Relief {
167 /// Whether the sweep is worth calling again, which is the question the
168 /// caller with the limit is really asking.
169 ///
170 /// Either number being non zero is progress. Both being zero is a keyspace
171 /// with nothing left to move and no dead space to reclaim, and a write that
172 /// cannot be fitted in that is a write that has to be refused.
173 #[must_use]
174 pub const fn made_room(self) -> bool {
175 self.moved > 0 || self.freed > 0
176 }
177}
178
179/// Whether moving this record's value to the file would save memory.
180///
181/// Straight comparison of the two record lengths. A record whose value is short
182/// enough that the pointer costs more than the bytes is left alone, and that is
183/// the whole of the size policy.
184#[must_use]
185pub fn worth_demoting(rec: &[u8]) -> bool {
186 let m = value::Meta::from_byte(rec[0]);
187 if m.is_cold() || m.kind() != Kind::String || m.encoding() == Encoding::Int {
188 return false;
189 }
190 rec.len() > value::cold_record_len(m.has_expiry())
191}
192
193/// The tier, which owns the file side of the keyspace.
194pub struct Tier<B: Blocks> {
195 blocks: B,
196 door: Doorkeeper,
197 scratch: cold::Scratch,
198 pool: evict::Pool,
199 /// The key of the victim being worked on, so that taking it out of the pool
200 /// does not hold a borrow across the demotion.
201 keybuf: Vec<u8>,
202 rng: Rng,
203 stats: Stats,
204}
205
206impl<B: Blocks> Tier<B> {
207 /// A tier over `blocks`, with a doorkeeper of the default window.
208 pub fn new(blocks: B) -> Tier<B> {
209 Tier::with_window(blocks, WINDOW)
210 }
211
212 /// A tier whose doorkeeper remembers `window` keys.
213 pub fn with_window(blocks: B, window: usize) -> Tier<B> {
214 Tier {
215 blocks,
216 door: Doorkeeper::new(window),
217 scratch: cold::Scratch::new(),
218 pool: evict::Pool::new(),
219 keybuf: Vec::new(),
220 rng: Rng::new(0x5eed_1234_9abc_def0),
221 stats: Stats::default(),
222 }
223 }
224
225 /// What has happened so far.
226 #[must_use]
227 pub const fn stats(&self) -> Stats {
228 self.stats
229 }
230
231 /// How many bytes the store holds, which is what `maxstore` is compared
232 /// against.
233 ///
234 /// Asked of the store rather than added up here. [`Stats::bytes_out`] counts
235 /// payload that was written and never goes down, and a limit on the file has
236 /// to be a limit on the file.
237 #[must_use]
238 pub fn store_bytes(&self) -> u64 {
239 self.blocks.bytes()
240 }
241
242 /// The store, for a caller that has to flush or close it.
243 pub const fn blocks(&self) -> &B {
244 &self.blocks
245 }
246
247 /// The store, mutably, for the same reason.
248 pub const fn blocks_mut(&mut self) -> &mut B {
249 &mut self.blocks
250 }
251
252 /// What the tier's own buffers cost, which the memory report has to include
253 /// because they are not free and are not counted anywhere else.
254 #[must_use]
255 pub fn memory_bytes(&self) -> usize {
256 self.door.memory_bytes()
257 + self.scratch.memory_bytes()
258 + self.pool.memory_bytes()
259 + self.keybuf.capacity()
260 }
261
262 /// Move `key`'s value out to the file.
263 ///
264 /// `Ok(false)` when there is no such key, when it is already on the file,
265 /// or when moving it would cost more memory than it saves. None of those is
266 /// an error: a caller under memory pressure asks about a lot of keys and
267 /// most of the answers are no.
268 ///
269 /// # Errors
270 ///
271 /// Whatever the store says when it cannot take the bytes.
272 pub fn demote(&mut self, map: &mut RawMap, key: &[u8]) -> Result<bool> {
273 let Some(addr) = map.find(key) else {
274 return Ok(false);
275 };
276 let rec = map.value_at(addr);
277 if !worth_demoting(rec) {
278 return Ok(false);
279 }
280 let m = value::Meta::from_byte(rec[0]);
281 let (kind, enc) = (m.kind(), m.encoding());
282 let expire_at = value::expire_at(rec);
283 // Carried across rather than restamped. A key that was moved to the file
284 // was not used, and a demotion that looked like a use would make the
285 // next demotion pick the wrong victim.
286 let was = value::access(rec).unwrap_or_default();
287
288 let value::Str::Bytes(bytes) = value::read(rec) else {
289 // Int encoding is refused above, so this cannot happen, and if the
290 // encoding rules ever change it should be a no and not a panic.
291 return Ok(false);
292 };
293 let len = bytes.len() as u32;
294 let chain = cold::write(&mut self.blocks, bytes, &mut self.scratch)?;
295
296 let wrote = map.set_with(
297 key,
298 value::cold_record_len(expire_at.is_some()),
299 |_| {},
300 |out| {
301 value::write_cold_record(out, kind, enc, chain.at, len, expire_at);
302 value::set_access(out, was);
303 value::has_expiry(out)
304 },
305 );
306 debug_assert!(wrote.is_some(), "the key was found a moment ago");
307
308 self.stats.demoted += 1;
309 self.stats.bytes_out += u64::from(len);
310 Ok(true)
311 }
312
313 /// Write `bytes` to the file and answer where they went.
314 ///
315 /// The store half of demotion with the record half left out, which is what a
316 /// collection needs. A string's value is its record, so [`Tier::demote`] can
317 /// do both ends and does. A collection's body is in a slab and its record
318 /// holds a number, so the caller is the only one that can free the slot and
319 /// rewrite the record, and all it wants from here is the chain.
320 ///
321 /// # Errors
322 ///
323 /// Whatever the store says when it cannot take the bytes.
324 pub fn stash(&mut self, bytes: &[u8]) -> Result<cold::Chain> {
325 let chain = cold::write(&mut self.blocks, bytes, &mut self.scratch)?;
326 self.stats.demoted += 1;
327 self.stats.bytes_out += chain.len;
328 Ok(chain)
329 }
330
331 /// Read a chain back into `out`, which is cleared first.
332 ///
333 /// The other half of [`Tier::stash`], and the doorkeeper does not get a vote
334 /// here for the same reason it does not in [`Tier::thaw`]: a collection
335 /// command needs its body in a slab to answer at all, so there is no serving
336 /// it from the file and leaving it there. The read that costs one device read
337 /// is the read that promotes.
338 ///
339 /// # Errors
340 ///
341 /// Whatever the store says when the chain will not read back.
342 pub fn fetch(&mut self, chain: cold::Chain, out: &mut Vec<u8>) -> Result<()> {
343 out.clear();
344 out.reserve(chain.len as usize);
345 // Same order as in `read`, and for the same reason: the release goes
346 // before the borrows and not after, because after is inside the scope
347 // that owns them.
348 self.blocks.release();
349 {
350 let reader = cold::Reader::open(&self.blocks, chain)?;
351 for piece in reader.range(0, reader.len()) {
352 out.extend_from_slice(piece?);
353 }
354 }
355 self.stats.faults += 1;
356 self.stats.bytes_in += chain.len;
357 self.stats.promoted += 1;
358 Ok(())
359 }
360
361 /// Read `key`'s value, from the file if that is where it is.
362 ///
363 /// `out` is cleared and filled only when the answer is [`Faulted::Served`]
364 /// or [`Faulted::Promoted`]. It belongs to the caller so that a server can
365 /// keep one buffer per shard and a fault costs no allocation once it has
366 /// grown, which is Y7.
367 ///
368 /// # Errors
369 ///
370 /// Whatever the store says when the chain will not read back.
371 pub fn fault(&mut self, map: &mut RawMap, key: &[u8], out: &mut Vec<u8>) -> Result<Faulted> {
372 self.read(map, key, out, true)
373 }
374
375 /// Read `key`'s value and put it back in memory whatever the doorkeeper
376 /// thinks.
377 ///
378 /// This is for a command that is about to write the key. `APPEND` on a
379 /// demoted value reads it, adds to it and stores the result, and the result
380 /// is a resident record no matter which way the doorkeeper would have gone,
381 /// so asking it would be asking a question whose answer cannot be used. The
382 /// same goes for `INCR`, `SETRANGE`, `SETBIT`, `GETSET` and the rest of the
383 /// read modify write family.
384 ///
385 /// A promotion here still costs one device read and no more, and the value
386 /// it read is the one the caller was going to ask for anyway.
387 ///
388 /// # Errors
389 ///
390 /// Whatever the store says when the chain will not read back.
391 pub fn thaw(&mut self, map: &mut RawMap, key: &[u8], out: &mut Vec<u8>) -> Result<Faulted> {
392 self.read(map, key, out, false)
393 }
394
395 /// The body of both, with `ask` saying whether the doorkeeper gets a vote.
396 fn read(
397 &mut self,
398 map: &mut RawMap,
399 key: &[u8],
400 out: &mut Vec<u8>,
401 ask: bool,
402 ) -> Result<Faulted> {
403 let Some(addr) = map.find(key) else {
404 return Ok(Faulted::Missing);
405 };
406 let rec = map.value_at(addr);
407 let Some(c) = value::cold(rec) else {
408 return Ok(Faulted::Warm);
409 };
410 let m = value::Meta::from_byte(rec[0]);
411 if m.kind().is_body() {
412 // This puts a value back by writing a string record, so a demoted
413 // collection arriving here would come back as a string holding the
414 // bytes its body froze to. The caller routes those to
415 // `Keyspace::promote_body`, which has a slab to put a body in, and
416 // this says so rather than trusting that it always will.
417 return Err(Error::new(
418 Code::Invalid,
419 "a demoted body cannot be read back as a string",
420 )
421 .with_detail(m.kind().name().to_string()));
422 }
423 let enc = m.encoding();
424 let expire_at = value::expire_at(rec);
425 let was = value::access(rec).unwrap_or_default();
426
427 out.clear();
428 out.reserve(c.len as usize);
429 let chain = cold::Chain {
430 at: c.at,
431 len: u64::from(c.len),
432 };
433 // Before the borrows start, not after they end, because after they end
434 // is inside a scope that owns them. One value's chunks and its
435 // directory are alive together here on purpose, so this is the point
436 // where a store that has to stage bytes to lend them out is allowed to
437 // drop the last value's.
438 self.blocks.release();
439 {
440 let reader = cold::Reader::open(&self.blocks, chain)?;
441 for piece in reader.range(0, reader.len()) {
442 out.extend_from_slice(piece?);
443 }
444 }
445 self.stats.faults += 1;
446 self.stats.bytes_in += u64::from(c.len);
447
448 // One read is not enough. The bits go down now and the key comes back
449 // on the next read, if there is one.
450 if ask && !self.door.admit(RawMap::hash_of(key)) {
451 self.stats.served += 1;
452 return Ok(Faulted::Served);
453 }
454
455 let wrote = map.set_with(
456 key,
457 value::record_len(enc, out.len(), expire_at.is_some()),
458 |_| {},
459 |dst| {
460 value::write_record(dst, enc, out, expire_at);
461 value::set_access(dst, was);
462 value::has_expiry(dst)
463 },
464 );
465 debug_assert!(wrote.is_some(), "the key was found a moment ago");
466 self.stats.promoted += 1;
467 Ok(Faulted::Promoted)
468 }
469
470 /// Move values out until the map fits in `budget` bytes.
471 ///
472 /// Answers with a [`Relief`], which is what moved and what that was worth.
473 /// Stops early when [`BARREN`] rounds in a row find nothing worth demoting,
474 /// which is the case where every value left is shorter than the pointer
475 /// that would replace it, and the honest answer there is that memory cannot
476 /// be given back rather than that the loop should keep spinning.
477 ///
478 /// Two things had to be right before that stop rule meant what it says, and
479 /// both of them are about a sweep that runs long enough to make most of the
480 /// keyspace cold. One barren round is a collision rather than a conclusion,
481 /// which is what [`BARREN`] is for, and a round has to spend its budget on
482 /// victims found rather than entries walked, which is what [`WALK`] is for.
483 /// Each constant has the failure it prevents written on it.
484 ///
485 /// # Compaction is the part that gives the memory back
486 ///
487 /// Demoting a key does not free anything on its own, and finding that out
488 /// is worth a paragraph. Replacing a long record with a short one leaves
489 /// the long one behind as dead bytes in a segment the arena still owns, so
490 /// the number a memory limit is compared against does not move until a
491 /// segment is evacuated and handed back. So each round of demotions is
492 /// followed by [`RawMap::compact_hard`], which is the entry point written
493 /// for a store that has run out of room and will evacuate a segment holding
494 /// a single dead record rather than wait for a worthwhile one.
495 ///
496 /// A round drains its whole pool before checking the budget again, so this
497 /// can overshoot by up to the pool size. That is bounded by
498 /// [`evict::CANDIDATES`] keys and it is the right way round: demoting one
499 /// key too many costs one device read later, and stopping one key short
500 /// costs a memory limit that was not respected.
501 ///
502 /// # Why the count of values moved is not the answer on its own
503 ///
504 /// Because the two halves of this loop run at different rates. Demotion
505 /// happens key by key and compaction happens two megabytes at a time, so a
506 /// sweep that has been running for a while is full of rounds that move
507 /// values and free nothing, and rounds that move nothing and free a whole
508 /// segment that earlier rounds had emptied out. The second kind is not
509 /// rare: sampling draws one index segment, and in a keyspace that is mostly
510 /// cold it draws a segment with nothing resident in it often.
511 ///
512 /// A caller asking for room and reading only the count refuses its client's
513 /// write on one of those rounds, on a server whose memory just went down by
514 /// two megabytes. That is what [`Relief::made_room`] is for and it is why
515 /// this counts both.
516 ///
517 /// # Errors
518 ///
519 /// Whatever the store says when it cannot take the bytes.
520 pub fn relieve(
521 &mut self,
522 map: &mut RawMap,
523 budget: usize,
524 policy: Policy,
525 now_ms: u64,
526 lfu: Lfu,
527 ) -> Result<Relief> {
528 let start = map.memory_bytes();
529 let mut moved = 0;
530 let mut barren = 0;
531 while map.memory_bytes() > budget {
532 let round = self.round(map, policy, now_ms, lfu)?;
533 // After every round and not only the productive ones, because the
534 // state a long load spends most of its time in is a keyspace that is
535 // already cold, holding segments earlier rounds emptied out and
536 // nothing has handed back yet. Those rounds move nothing and free
537 // two megabytes, and stopping on the count would refuse a client's
538 // write on a server whose memory just went down.
539 //
540 // What stops this being the expensive loop it used to be is the
541 // floor on `compact_hard`. This runs on databases whose memory is
542 // somewhere else entirely: the budget is the arena's share of the
543 // limit, a keyspace full of collections keeps its bodies in slabs
544 // the arena has never heard of, and a round looking for strings to
545 // demote finds none of them. Without a floor the loop answered that
546 // by walking the whole arena on every write and handing back
547 // segments that were almost entirely live.
548 while map.memory_bytes() > budget && map.compact_hard().is_some() {}
549 if round == 0 {
550 barren += 1;
551 if barren == BARREN {
552 break;
553 }
554 continue;
555 }
556 barren = 0;
557 moved += round;
558 }
559 Ok(Relief {
560 moved,
561 freed: start.saturating_sub(map.memory_bytes()),
562 })
563 }
564
565 /// One sample and demote pass, which is the body of [`Tier::relieve`] and is
566 /// separate so that a test can watch a single round.
567 fn round(&mut self, map: &mut RawMap, policy: Policy, now_ms: u64, lfu: Lfu) -> Result<usize> {
568 self.pool.clear();
569 let r = self.rng.next_u64();
570 let pool = &mut self.pool;
571 let mut seen = 0usize;
572 let mut found = 0usize;
573 map.sample(r, |k, v, _| {
574 seen += 1;
575 if worth_demoting(v) {
576 pool.offer(k, evict::score(v, policy, now_ms, lfu));
577 found += 1;
578 }
579 found < evict::CANDIDATES && seen < WALK
580 });
581
582 let mut moved = 0;
583 // Out of the pool and into a buffer of our own, because the pool hands
584 // back a slice of itself and demoting needs the whole tier.
585 let mut kb = core::mem::take(&mut self.keybuf);
586 while let Some(k) = self.pool.take() {
587 kb.clear();
588 kb.extend_from_slice(k);
589 if self.demote(map, &kb)? {
590 moved += 1;
591 }
592 }
593 self.keybuf = kb;
594 Ok(moved)
595 }
596}
597
598#[cfg(test)]
599mod tests {
600 use super::*;
601 use crate::access::Access;
602 use yo_common::{Addr, Code, Error, Space};
603
604 /// The same in memory store the `cold` unit tests use, counting its reads.
605 struct Mem {
606 blobs: Vec<Vec<u8>>,
607 reads: std::cell::Cell<usize>,
608 }
609
610 impl Mem {
611 fn new() -> Mem {
612 Mem {
613 blobs: Vec::new(),
614 reads: std::cell::Cell::new(0),
615 }
616 }
617 }
618
619 impl Blocks for Mem {
620 fn put(&mut self, bytes: &[u8]) -> Result<Addr> {
621 self.blobs.push(bytes.to_vec());
622 Ok(Addr::new(Space::Log, (self.blobs.len() - 1) as u64))
623 }
624
625 fn get(&self, at: Addr) -> Result<&[u8]> {
626 self.reads.set(self.reads.get() + 1);
627 self.blobs
628 .get(at.offset() as usize)
629 .map(Vec::as_slice)
630 .ok_or_else(|| Error::new(Code::NotFound, "no such block"))
631 }
632
633 fn bytes(&self) -> u64 {
634 self.blobs.iter().map(|b| b.len() as u64).sum()
635 }
636 }
637
638 fn tier() -> Tier<Mem> {
639 Tier::new(Mem::new())
640 }
641
642 /// A map with one string in it, written the way the keyspace writes one.
643 fn map_with(key: &[u8], val: &[u8], expire_at: Option<u64>) -> RawMap {
644 let mut m = RawMap::new();
645 put(&mut m, key, val, expire_at);
646 m
647 }
648
649 fn put(m: &mut RawMap, key: &[u8], val: &[u8], expire_at: Option<u64>) {
650 let enc = Encoding::of(val);
651 let len = value::record_len(enc, val.len(), expire_at.is_some());
652 m.set_with(
653 key,
654 len,
655 |_| {},
656 |out| {
657 value::write_record(out, enc, val, expire_at);
658 value::has_expiry(out)
659 },
660 );
661 }
662
663 /// Read a key twice, which is what the doorkeeper asks for before it lets
664 /// anything back into memory.
665 fn fault_twice(t: &mut Tier<Mem>, m: &mut RawMap, key: &[u8]) -> (Faulted, Faulted, Vec<u8>) {
666 let mut out = Vec::new();
667 let first = t.fault(m, key, &mut out).expect("a first read");
668 let second = t.fault(m, key, &mut out).expect("a second read");
669 (first, second, out)
670 }
671
672 #[test]
673 fn a_value_goes_out_to_the_file_and_the_record_shrinks_to_a_pointer() {
674 let val = vec![b'x'; 4000];
675 let mut m = map_with(b"k", &val, None);
676 let before = m.value_at(m.find(b"k").expect("there")).len();
677 let mut t = tier();
678
679 assert!(t.demote(&mut m, b"k").expect("demoted"));
680
681 let rec = m.value_at(m.find(b"k").expect("still there"));
682 assert!(rec.len() < before / 100, "the record did not shrink");
683 assert_eq!(value::cold(rec).expect("cold").len, 4000);
684 assert_eq!(t.stats().demoted, 1);
685 assert_eq!(t.stats().bytes_out, 4000);
686 }
687
688 #[test]
689 fn the_questions_that_do_not_want_the_bytes_are_still_answered_in_memory() {
690 let val = vec![b'y'; 900];
691 let deadline = Some(1_900_000_000_000);
692 let mut m = map_with(b"k", &val, deadline);
693 let mut t = tier();
694 t.demote(&mut m, b"k").expect("demoted");
695
696 let rec = m.value_at(m.find(b"k").expect("there"));
697 // STRLEN, TYPE, OBJECT ENCODING and TTL, in that order, on a key whose
698 // bytes are on the device. None of these is allowed to fault.
699 assert_eq!(value::str_len(rec), Some(900));
700 assert_eq!(value::kind(rec), Kind::String);
701 assert_eq!(value::Meta::from_byte(rec[0]).encoding(), Encoding::Raw);
702 assert_eq!(value::expire_at(rec), deadline);
703 assert_eq!(t.blocks().reads.get(), 0, "answering those read the device");
704 }
705
706 #[test]
707 fn a_value_too_short_to_be_worth_moving_is_left_where_it_is() {
708 // Twelve payload bytes against a twelve byte pointer plus the head that
709 // both records share, so this one loses by moving.
710 let mut m = map_with(b"k", b"hello-world!", None);
711 let mut t = tier();
712 assert!(!t.demote(&mut m, b"k").expect("asked"));
713 assert!(value::cold(m.value_at(m.find(b"k").expect("there"))).is_none());
714 }
715
716 #[test]
717 fn an_int_encoded_value_is_never_moved() {
718 let mut m = map_with(b"k", b"1234567890123", None);
719 let mut t = tier();
720 assert!(!t.demote(&mut m, b"k").expect("asked"));
721 }
722
723 #[test]
724 fn a_key_that_is_not_there_is_a_no_and_not_an_error() {
725 let mut m = RawMap::new();
726 let mut t = tier();
727 assert!(!t.demote(&mut m, b"nothing").expect("asked"));
728 let mut out = Vec::new();
729 assert_eq!(
730 t.fault(&mut m, b"nothing", &mut out).expect("asked"),
731 Faulted::Missing
732 );
733 }
734
735 #[test]
736 fn demoting_twice_is_a_no_the_second_time() {
737 let val = vec![b'z'; 500];
738 let mut m = map_with(b"k", &val, None);
739 let mut t = tier();
740 assert!(t.demote(&mut m, b"k").expect("demoted"));
741 assert!(!t.demote(&mut m, b"k").expect("asked again"));
742 assert_eq!(t.stats().demoted, 1);
743 }
744
745 #[test]
746 fn a_resident_key_is_warm_and_the_buffer_is_left_alone() {
747 let mut m = map_with(b"k", b"a value long enough to matter", None);
748 let mut t = tier();
749 let mut out = vec![1, 2, 3];
750 assert_eq!(
751 t.fault(&mut m, b"k", &mut out).expect("read"),
752 Faulted::Warm
753 );
754 assert_eq!(out, vec![1, 2, 3], "a warm read touched the buffer");
755 assert_eq!(t.stats().faults, 0);
756 }
757
758 #[test]
759 fn the_first_read_serves_from_the_file_and_the_second_brings_it_back() {
760 let val = vec![b'q'; 3000];
761 let mut m = map_with(b"k", &val, None);
762 let mut t = tier();
763 t.demote(&mut m, b"k").expect("demoted");
764
765 let (first, second, out) = fault_twice(&mut t, &mut m, b"k");
766 assert_eq!(first, Faulted::Served, "one read earned a slot in memory");
767 assert_eq!(second, Faulted::Promoted);
768 assert_eq!(out, val);
769 assert_eq!(t.stats().faults, 2);
770 assert_eq!(t.stats().served, 1);
771 assert_eq!(t.stats().promoted, 1);
772
773 // And now it is back, so the third read is not a fault at all.
774 let mut again = Vec::new();
775 assert_eq!(
776 t.fault(&mut m, b"k", &mut again).expect("read"),
777 Faulted::Warm
778 );
779 assert_eq!(
780 value::read(m.value_at(m.find(b"k").expect("there"))).len(),
781 3000
782 );
783 }
784
785 #[test]
786 fn a_scan_over_cold_data_promotes_nothing() {
787 let mut m = RawMap::new();
788 let val = vec![b'c'; 700];
789 for i in 0..64u32 {
790 put(&mut m, &i.to_le_bytes(), &val, None);
791 }
792 let mut t = tier();
793 for i in 0..64u32 {
794 t.demote(&mut m, &i.to_le_bytes()).expect("demoted");
795 }
796
797 let mut out = Vec::new();
798 for i in 0..64u32 {
799 t.fault(&mut m, &i.to_le_bytes(), &mut out).expect("read");
800 }
801 assert_eq!(
802 t.stats().promoted,
803 0,
804 "a single pass over cold keys pulled some back in"
805 );
806 assert_eq!(t.stats().served, 64);
807 }
808
809 #[test]
810 fn the_deadline_and_the_access_field_survive_a_round_trip() {
811 let val = vec![b'r'; 1200];
812 let deadline = Some(1_888_777_666_555);
813 let mut m = map_with(b"k", &val, deadline);
814 // Stamp something recognisable, so that a demotion that restamped it
815 // would show up rather than looking like a fresh record.
816 let a = Access::lru(1_000_000);
817 {
818 let addr = m.find(b"k").expect("there");
819 value::set_access(m.value_at_mut(addr), a);
820 }
821 let mut t = tier();
822 t.demote(&mut m, b"k").expect("demoted");
823 assert_eq!(
824 value::access(m.value_at(m.find(b"k").expect("there"))),
825 Some(a),
826 "demotion looked like a use"
827 );
828
829 let (_, _, out) = fault_twice(&mut t, &mut m, b"k");
830 assert_eq!(out, val);
831 let rec = m.value_at(m.find(b"k").expect("there"));
832 assert_eq!(value::expire_at(rec), deadline);
833 assert_eq!(value::access(rec), Some(a));
834 }
835
836 #[test]
837 fn a_value_bigger_than_one_chunk_makes_the_trip_as_well() {
838 let val: Vec<u8> = (0..cold::CHUNK * 2 + 77).map(|i| (i % 251) as u8).collect();
839 let mut m = map_with(b"big", &val, None);
840 let mut t = tier();
841 assert!(t.demote(&mut m, b"big").expect("demoted"));
842 let (_, _, out) = fault_twice(&mut t, &mut m, b"big");
843 assert_eq!(out, val);
844 }
845
846 #[test]
847 fn relieve_moves_values_out_until_the_map_fits() {
848 // Enough data to span several arena segments. A budget below one
849 // segment is a budget nothing can meet, because a segment is the unit
850 // the arena hands back, and a test that asked for one would be testing
851 // the arena's minimum rather than the demotion.
852 let mut m = RawMap::new();
853 let val = vec![b'p'; 2000];
854 for i in 0..4_000u32 {
855 put(&mut m, &i.to_le_bytes(), &val, None);
856 }
857 let full = m.memory_bytes();
858 let budget = full / 2;
859
860 let mut t = tier();
861 let moved = t
862 .relieve(
863 &mut m,
864 budget,
865 Policy::AllKeysLru,
866 2_000_000,
867 Lfu::default(),
868 )
869 .expect("relieved");
870 assert!(moved.moved > 0, "nothing was moved");
871 assert!(
872 m.memory_bytes() <= budget,
873 "still {} bytes against a budget of {budget}",
874 m.memory_bytes()
875 );
876 // Every key is still there, which is the whole difference between this
877 // and eviction.
878 assert_eq!(m.len(), 4_000);
879 }
880
881 #[test]
882 fn one_unlucky_round_does_not_end_the_sweep() {
883 // Two bugs written down, both of which left a sweep that had been asked
884 // for the whole keyspace sitting on a large part of it. The first
885 // version of `relieve` stopped on the first round that found nothing,
886 // and quit at six percent moved, because sampling walks forward from a
887 // segment and a bucket drawn at random and two rounds that draw the
888 // same pair see the same entries. The second counted entries walked
889 // against a round's budget of sixteen rather than victims found, and
890 // stalled at eighty five percent, because by then almost every entry a
891 // round walked was one it had already moved.
892 let mut m = RawMap::new();
893 let val = vec![b'u'; 2000];
894 for i in 0..4_000u32 {
895 put(&mut m, &i.to_le_bytes(), &val, None);
896 }
897 let mut t = tier();
898 t.relieve(&mut m, 1, Policy::AllKeysLru, 2_000_000, Lfu::default())
899 .expect("relieved");
900
901 let cold = (0..4_000u32)
902 .filter(|i| {
903 let addr = m.find(&i.to_le_bytes()).expect("still there");
904 value::cold(m.value_at(addr)).is_some()
905 })
906 .count();
907 assert!(
908 cold > 3_900,
909 "only {cold} of 4000 were moved, so the sweep gave up early"
910 );
911 }
912
913 #[test]
914 fn the_memory_the_map_holds_actually_goes_down() {
915 // Demotion on its own frees nothing: the record it replaces becomes dead
916 // bytes in a segment the arena still owns. This is the check that the
917 // compaction in `relieve` is doing the part that gives it back.
918 let mut m = RawMap::new();
919 let val = vec![b'v'; 2000];
920 for i in 0..4_000u32 {
921 put(&mut m, &i.to_le_bytes(), &val, None);
922 }
923 let before = m.memory_bytes();
924 let mut t = tier();
925 t.relieve(&mut m, 1, Policy::AllKeysLru, 2_000_000, Lfu::default())
926 .expect("relieved");
927
928 // What the same four thousand keys would have cost if their values had
929 // never been in memory at all. The arena cannot hand back its last
930 // segment, so this is the floor, and asking the sweep to reach it says
931 // more than a fraction of `before` picked because it passes.
932 let mut bare = RawMap::new();
933 let stub = vec![b'v'; 4];
934 for i in 0..4_000u32 {
935 put(&mut bare, &i.to_le_bytes(), &stub, None);
936 }
937 let floor = bare.memory_bytes();
938 assert!(
939 m.memory_bytes() <= floor,
940 "{before} bytes went to {}, and the floor is {floor}",
941 m.memory_bytes()
942 );
943 }
944
945 #[test]
946 fn relieve_gives_up_rather_than_spinning_when_nothing_is_worth_moving() {
947 let mut m = RawMap::new();
948 for i in 0..200u32 {
949 put(&mut m, &i.to_le_bytes(), b"tiny", None);
950 }
951 let mut t = tier();
952 let moved = t
953 .relieve(&mut m, 1, Policy::AllKeysLru, 2_000_000, Lfu::default())
954 .expect("asked");
955 assert_eq!(moved, Relief::default());
956 }
957
958 #[test]
959 fn a_sweep_that_moves_nothing_and_frees_a_segment_still_says_it_made_room() {
960 // The state a server spends most of a long load in: a keyspace that is
961 // already cold, holding segments that earlier rounds emptied out and
962 // that nothing has handed back yet. Every round here is barren because
963 // there is genuinely nothing left worth moving, and the memory still
964 // comes back. A caller reading only the count sees a zero and refuses
965 // its client's write, which is the bug this is here about.
966 let mut m = RawMap::new();
967 let val = vec![b'v'; 4096];
968 for i in 0..2_000u32 {
969 put(&mut m, &i.to_le_bytes(), &val, None);
970 }
971 let mut t = tier();
972 for i in 0..2_000u32 {
973 assert!(
974 t.demote(&mut m, &i.to_le_bytes()).expect("demoted"),
975 "key {i} did not go out"
976 );
977 }
978
979 let before = m.memory_bytes();
980 let r = t
981 .relieve(
982 &mut m,
983 before - 1,
984 Policy::AllKeysLru,
985 2_000_000,
986 Lfu::default(),
987 )
988 .expect("swept");
989
990 assert_eq!(r.moved, 0, "there was nothing left in memory to move");
991 assert!(
992 r.freed > 0,
993 "compaction gave nothing back, so this checked nothing"
994 );
995 assert!(
996 r.made_room(),
997 "a sweep that freed {} said it did not",
998 r.freed
999 );
1000 assert_eq!(m.len(), 2_000, "a sweep that lost keys");
1001 }
1002
1003 #[test]
1004 fn what_relieve_moved_still_reads_back_byte_for_byte() {
1005 let mut m = RawMap::new();
1006 let mut want = Vec::new();
1007 for i in 0..4_000u32 {
1008 let val: Vec<u8> = (0..900).map(|j| (i as usize + j) as u8).collect();
1009 put(&mut m, &i.to_le_bytes(), &val, None);
1010 want.push(val);
1011 }
1012 let budget = m.memory_bytes() / 2;
1013 let mut t = tier();
1014 let moved = t
1015 .relieve(
1016 &mut m,
1017 budget,
1018 Policy::AllKeysLru,
1019 2_000_000,
1020 Lfu::default(),
1021 )
1022 .expect("relieved");
1023 assert!(
1024 moved.moved > 0,
1025 "nothing was moved, so this checked nothing"
1026 );
1027
1028 let mut out = Vec::new();
1029 for (i, val) in want.iter().enumerate() {
1030 let key = (i as u32).to_le_bytes();
1031 match t.fault(&mut m, &key, &mut out).expect("read") {
1032 Faulted::Warm => {
1033 let rec = m.value_at(m.find(&key).expect("there"));
1034 assert_eq!(value::read(rec), value::Str::Bytes(val));
1035 }
1036 Faulted::Served | Faulted::Promoted => assert_eq!(&out, val),
1037 Faulted::Missing => panic!("key {i} went missing"),
1038 }
1039 }
1040 }
1041}