Spaces:
Runtime error
Runtime error
File size: 24,588 Bytes
4b6e841 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | //! Sleep Consolidation β Block I of the Condensate living-memory lifecycle.
//!
//! During idle periods the system enters a biological sleep cycle:
//! Phase 1 (Replay) β replay recent access patterns at high speed
//! Phase 2 (Reorganize) β compute layout improvements
//! Phase 3 (Prune) β remove weak edges, compact
//!
//! The caller drives each phase with tick_* methods and is responsible for
//! applying the returned hints to the actual graph/layout structures.
// βββ ReplayEvent ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// A single recorded memory-access event stored in the replay buffer.
#[derive(Clone, Debug)]
pub struct ReplayEvent {
pub timestamp_ns: u64,
pub path_id: u32,
pub size: u64,
/// true = allocation, false = free
pub is_alloc: bool,
}
// βββ ReplayBuffer βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Fixed-capacity ring buffer of ReplayEvents. Oldest events are silently
/// overwritten once the buffer is full.
pub struct ReplayBuffer {
events: Vec<ReplayEvent>,
capacity: usize,
write_pos: usize,
wrapped: bool,
}
impl ReplayBuffer {
/// Allocate a ring buffer with `capacity` slots.
pub fn new(capacity: usize) -> Self {
assert!(capacity > 0, "ReplayBuffer capacity must be > 0");
Self {
events: Vec::with_capacity(capacity),
capacity,
write_pos: 0,
wrapped: false,
}
}
/// Push one event. If the buffer is full the oldest event is overwritten.
pub fn push(&mut self, event: ReplayEvent) {
if self.events.len() < self.capacity {
// Still filling up β just append.
self.events.push(event);
} else {
// Ring is full: overwrite at write_pos.
self.events[self.write_pos] = event;
self.wrapped = true;
}
self.write_pos = (self.write_pos + 1) % self.capacity;
}
/// Return all stored events in chronological order (oldest β newest).
pub fn drain(&self) -> Vec<&ReplayEvent> {
let len = self.events.len();
if len == 0 {
return Vec::new();
}
let mut out = Vec::with_capacity(len);
if !self.wrapped {
// Buffer never overflowed β elements are already in order.
for e in &self.events {
out.push(e);
}
} else {
// write_pos points to the *oldest* slot.
for i in 0..len {
let idx = (self.write_pos + i) % self.capacity;
out.push(&self.events[idx]);
}
}
out
}
/// Number of events currently stored.
pub fn len(&self) -> usize {
self.events.len()
}
/// Remove all stored events and reset internal state.
pub fn clear(&mut self) {
self.events.clear();
self.write_pos = 0;
self.wrapped = false;
}
}
// βββ SleepPhase βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[derive(Clone, Copy, PartialEq, Debug)]
pub enum SleepPhase {
Awake,
/// Phase 1: replay recent patterns at high speed.
Replay,
/// Phase 2: compute layout improvements.
Reorganize,
/// Phase 3: remove weak edges, compact.
Prune,
}
// βββ SleepReport ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Summary produced at the end of a sleep cycle.
pub struct SleepReport {
pub duration_ms: u64,
pub events_replayed: usize,
pub edges_strengthened: usize,
pub edges_pruned: usize,
pub regions_relocated: usize,
pub keyframes_consolidated: usize,
pub bytes_freed: usize,
pub interrupted: bool,
pub phase_reached: SleepPhase,
}
// βββ SleepController ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Drives the three-phase sleep cycle for Condensate.
///
/// # Lifecycle
/// ```text
/// (idle detected)
/// β enter_sleep() [Awake β Replay]
/// β tick_replay() [repeat until done]
/// β advance_phase() [Replay β Reorganize]
/// β tick_reorganize() [repeat until done]
/// β advance_phase() [Reorganize β Prune]
/// β tick_prune() [repeat until done]
/// β advance_phase() / wake() [Prune β Awake]
/// ```
pub struct SleepController {
state: SleepPhase,
last_sleep_ns: u64,
events_since_sleep: u64,
idle_threshold_ns: u64,
/// Adaptive threshold β updated from idle_gap_samples.
learned_idle_gap_ns: u64,
/// Rolling window of inter-event gaps (max 100).
idle_gap_samples: Vec<u64>,
replay_buffer: ReplayBuffer,
/// Set to true to request an immediate wake.
wake_interrupt: bool,
current_report: Option<SleepReport>,
/// Timestamp (ns) when the current sleep phase started.
sleep_start_ns: u64,
/// Snapshot of events replayed β used by tick_replay.
replay_events_snapshot: Vec<ReplayEvent>,
/// Replay cursor β how many events we have processed so far.
replay_cursor: usize,
/// Edge-strengthening counters: maps (src, dst) β count.
edge_counts: std::collections::HashMap<(u32, u32), u64>,
}
const IDLE_GAP_WINDOW: usize = 100;
impl SleepController {
/// Create a new controller.
///
/// * `idle_threshold_ns` β baseline idle gap before the adaptive learner
/// kicks in.
/// * `replay_capacity` β maximum events held in the ring buffer.
pub fn new(idle_threshold_ns: u64, replay_capacity: usize) -> Self {
Self {
state: SleepPhase::Awake,
last_sleep_ns: 0,
events_since_sleep: 0,
idle_threshold_ns,
learned_idle_gap_ns: idle_threshold_ns,
idle_gap_samples: Vec::with_capacity(IDLE_GAP_WINDOW),
replay_buffer: ReplayBuffer::new(replay_capacity),
wake_interrupt: false,
current_report: None,
sleep_start_ns: 0,
replay_events_snapshot: Vec::new(),
replay_cursor: 0,
edge_counts: std::collections::HashMap::new(),
}
}
// ββ Recording βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Record an access event: store it in the replay buffer and update
/// the adaptive idle-gap learner.
pub fn record_event(&mut self, event: ReplayEvent) {
// Learn from the gap to the previous event (if any).
if self.events_since_sleep > 0 {
let last_ts = self
.replay_buffer
.drain()
.last()
.map(|e| e.timestamp_ns)
.unwrap_or(0);
if event.timestamp_ns > last_ts {
let gap = event.timestamp_ns - last_ts;
self.observe_gap(gap);
}
}
self.events_since_sleep += 1;
self.replay_buffer.push(event);
}
/// Feed one inter-event gap into the rolling window and recompute the
/// adaptive threshold.
fn observe_gap(&mut self, gap_ns: u64) {
if self.idle_gap_samples.len() == IDLE_GAP_WINDOW {
self.idle_gap_samples.remove(0);
}
self.idle_gap_samples.push(gap_ns);
self.update_adaptive_threshold();
}
/// Recompute `learned_idle_gap_ns` = mean + 2 * stddev of the sample
/// window. Falls back to `idle_threshold_ns` when no samples exist.
fn update_adaptive_threshold(&mut self) {
let n = self.idle_gap_samples.len();
if n == 0 {
self.learned_idle_gap_ns = self.idle_threshold_ns;
return;
}
let sum: u64 = self.idle_gap_samples.iter().sum();
let mean = sum / n as u64;
// Variance (integer arithmetic β sufficient precision for ns gaps).
let variance: u64 = self
.idle_gap_samples
.iter()
.map(|&g| {
let d = if g > mean { g - mean } else { mean - g };
d * d
})
.sum::<u64>()
/ n as u64;
let stddev = integer_sqrt(variance);
// threshold = mean + max(2 * stddev, 10 % of mean).
//
// The 10 % floor prevents the degenerate case where all gaps are
// identical (stddev = 0) from producing a threshold exactly equal to
// the mean. A server with perfectly regular 2-second gaps must NOT
// trigger sleep on those 2-second pauses, so the threshold must be
// strictly above 2 s.
let margin = (2 * stddev).max(mean / 10);
let adaptive = mean.saturating_add(margin);
self.learned_idle_gap_ns = adaptive.max(self.idle_threshold_ns);
}
// ββ Idle detection ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Returns true when the gap between `last_event_ns` and `now_ns` exceeds
/// the adaptive idle threshold.
pub fn is_idle(&self, now_ns: u64, last_event_ns: u64) -> bool {
if now_ns <= last_event_ns {
return false;
}
now_ns - last_event_ns >= self.learned_idle_gap_ns
}
// ββ Phase management ββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Transition from Awake into Replay, initialising a fresh report.
/// Returns `SleepPhase::Replay`.
pub fn enter_sleep(&mut self, now_ns: u64) -> SleepPhase {
self.state = SleepPhase::Replay;
self.sleep_start_ns = now_ns;
self.wake_interrupt = false;
self.edge_counts.clear();
// Snapshot the replay buffer so that tick_replay can iterate it
// without borrowing issues.
self.replay_events_snapshot = self
.replay_buffer
.drain()
.into_iter()
.cloned()
.collect();
self.replay_cursor = 0;
self.current_report = Some(SleepReport {
duration_ms: 0,
events_replayed: 0,
edges_strengthened: 0,
edges_pruned: 0,
regions_relocated: 0,
keyframes_consolidated: 0,
bytes_freed: 0,
interrupted: false,
phase_reached: SleepPhase::Replay,
});
SleepPhase::Replay
}
/// Process a batch of replay events.
///
/// Returns `(edges_strengthened, edges_weakened)`.
///
/// For every sequential pair (A, B) in the replay stream, the AβB edge
/// counter is incremented. The caller is responsible for applying the
/// returned counts to the actual graph.
pub fn tick_replay(&mut self) -> (usize, usize) {
let events = &self.replay_events_snapshot;
let total = events.len();
if self.replay_cursor >= total.saturating_sub(1) {
// Nothing (more) to do.
if let Some(ref mut r) = self.current_report {
r.events_replayed = total;
}
return (0, 0);
}
// Process all remaining sequential pairs in one tick (callers can
// chunk however they like by calling multiple times, but we keep it
// simple here: process everything remaining).
let mut strengthened = 0usize;
while self.replay_cursor + 1 < total {
let src = events[self.replay_cursor].path_id;
let dst = events[self.replay_cursor + 1].path_id;
let counter = self.edge_counts.entry((src, dst)).or_insert(0);
*counter += 1;
strengthened += 1;
self.replay_cursor += 1;
}
// Advance past the last event.
self.replay_cursor = total;
if let Some(ref mut r) = self.current_report {
r.events_replayed = total;
r.edges_strengthened += strengthened;
}
(strengthened, 0)
}
/// Identify regions whose replay pattern suggests adjacency.
///
/// Returns the count of regions that should be relocated. The caller
/// performs the actual relocation.
///
/// Heuristic: any path_id pair that co-occurs in the replay stream with a
/// count β₯ 2 is considered a relocation candidate; the number of *unique*
/// such path_ids is reported.
pub fn tick_reorganize(&mut self) -> usize {
let hot_nodes: std::collections::HashSet<u32> = self
.edge_counts
.iter()
.filter(|(_, &count)| count >= 2)
.flat_map(|((src, dst), _)| [*src, *dst])
.collect();
let relocated = hot_nodes.len();
if let Some(ref mut r) = self.current_report {
r.regions_relocated = relocated;
r.phase_reached = SleepPhase::Reorganize;
}
relocated
}
/// Given current edge weights, return edges whose weight is below
/// `threshold`. The caller removes them from the graph.
pub fn tick_prune(
&mut self,
edge_weights: &[(u32, u32, f64)],
threshold: f64,
) -> Vec<(u32, u32)> {
let pruned: Vec<(u32, u32)> = edge_weights
.iter()
.filter(|&&(_, _, w)| w < threshold)
.map(|&(src, dst, _)| (src, dst))
.collect();
if let Some(ref mut r) = self.current_report {
r.edges_pruned = pruned.len();
r.phase_reached = SleepPhase::Prune;
}
pruned
}
/// Advance to the next phase in the cycle.
///
/// ```text
/// Replay β Reorganize β Prune β Awake
/// ```
pub fn advance_phase(&mut self) -> SleepPhase {
self.state = match self.state {
SleepPhase::Awake => SleepPhase::Replay,
SleepPhase::Replay => SleepPhase::Reorganize,
SleepPhase::Reorganize => SleepPhase::Prune,
SleepPhase::Prune => SleepPhase::Awake,
};
self.state
}
// ββ Wake ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Interrupt sleep immediately and return a finalised report.
pub fn wake(&mut self) -> SleepReport {
// We need a current timestamp β we do not have wall-clock access here,
// so duration is computed as 0 when entered without a wall-clock tick.
// Callers that want accurate duration should store the entry time and
// subtract. We store sleep_start_ns so the caller can do so.
let now_ns = self.sleep_start_ns; // conservative β will be 0 if no real clock
let duration_ms = now_ns.saturating_sub(self.sleep_start_ns) / 1_000_000;
let interrupted = self.wake_interrupt || self.state != SleepPhase::Awake;
let phase_reached = self.state;
self.state = SleepPhase::Awake;
self.wake_interrupt = false;
self.events_since_sleep = 0;
self.replay_buffer.clear();
self.replay_events_snapshot.clear();
self.replay_cursor = 0;
let mut report = self
.current_report
.take()
.unwrap_or_else(|| SleepReport {
duration_ms: 0,
events_replayed: 0,
edges_strengthened: 0,
edges_pruned: 0,
regions_relocated: 0,
keyframes_consolidated: 0,
bytes_freed: 0,
interrupted: false,
phase_reached: SleepPhase::Awake,
});
report.duration_ms = duration_ms;
report.interrupted = interrupted;
report.phase_reached = phase_reached;
report
}
// ββ Queries βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// True if `wake_interrupt` has been set.
pub fn should_wake(&self) -> bool {
self.wake_interrupt
}
/// Signal that an external event arrived and sleep should end.
pub fn set_wake_interrupt(&mut self) {
self.wake_interrupt = true;
}
pub fn get_phase(&self) -> SleepPhase {
self.state
}
pub fn events_since_sleep(&self) -> u64 {
self.events_since_sleep
}
}
// βββ Utilities ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
/// Integer square root (floor) β avoids pulling in floating-point for the
/// adaptive-threshold computation.
fn integer_sqrt(n: u64) -> u64 {
if n == 0 {
return 0;
}
let mut x = n;
let mut y = (x + 1) / 2;
while y < x {
x = y;
y = (x + n / x) / 2;
}
x
}
// βββ Tests ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[cfg(test)]
mod tests {
use super::*;
fn make_event(ts: u64, path_id: u32) -> ReplayEvent {
ReplayEvent {
timestamp_ns: ts,
path_id,
size: 64,
is_alloc: true,
}
}
// ββ ReplayBuffer ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_sleep_replay_buffer_ring() {
let mut buf = ReplayBuffer::new(3);
// Fill beyond capacity.
for i in 0..6u32 {
buf.push(make_event(i as u64 * 100, i));
}
// Only 3 events must be present (the last 3: ids 3, 4, 5).
assert_eq!(buf.len(), 3);
let drained = buf.drain();
let ids: Vec<u32> = drained.iter().map(|e| e.path_id).collect();
assert!(
ids.contains(&3) && ids.contains(&4) && ids.contains(&5),
"expected ids 3,4,5 but got {:?}",
ids
);
}
#[test]
fn test_sleep_replay_buffer_drain_order() {
let mut buf = ReplayBuffer::new(5);
for i in 0..5u64 {
buf.push(make_event(i * 10, i as u32));
}
let drained = buf.drain();
let timestamps: Vec<u64> = drained.iter().map(|e| e.timestamp_ns).collect();
// Must be monotonically non-decreasing (chronological).
for w in timestamps.windows(2) {
assert!(
w[0] <= w[1],
"drain order violated: {:?} > {:?}",
w[0],
w[1]
);
}
// Also test after a wrap.
let mut buf2 = ReplayBuffer::new(3);
for i in 0..5u64 {
buf2.push(make_event(i * 10, i as u32));
}
let drained2 = buf2.drain();
let ts2: Vec<u64> = drained2.iter().map(|e| e.timestamp_ns).collect();
for w in ts2.windows(2) {
assert!(w[0] <= w[1], "wrapped drain order violated");
}
}
// ββ Idle detection ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_sleep_idle_detection() {
let threshold_ns = 5_000_000_000u64; // 5 seconds
let ctrl = SleepController::new(threshold_ns, 64);
let last_event = 1_000_000_000u64; // 1 s
// 4 s after last event β NOT idle.
assert!(!ctrl.is_idle(last_event + 4_000_000_000, last_event));
// 6 s after last event β idle.
assert!(ctrl.is_idle(last_event + 6_000_000_000, last_event));
}
#[test]
fn test_sleep_adaptive_idle_threshold() {
let baseline_ns = 500_000_000u64; // 0.5 s baseline
let mut ctrl = SleepController::new(baseline_ns, 64);
// Simulate a server with regular ~2-second inter-event gaps.
let gap_2s = 2_000_000_000u64;
for _ in 0..50 {
ctrl.observe_gap(gap_2s);
}
// The adaptive threshold must exceed 2 s so that normal 2-s pauses
// do NOT trigger sleep.
assert!(
ctrl.learned_idle_gap_ns > gap_2s,
"adaptive threshold ({}) should be above 2 s gap ({})",
ctrl.learned_idle_gap_ns,
gap_2s
);
let last_event = 0u64;
// Exactly 2 s later should NOT be idle (normal pause).
assert!(!ctrl.is_idle(gap_2s, last_event));
}
// ββ Phase progression βββββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_sleep_phases_advance() {
let mut ctrl = SleepController::new(1_000_000_000, 16);
let phase = ctrl.enter_sleep(0);
assert_eq!(phase, SleepPhase::Replay);
let p2 = ctrl.advance_phase();
assert_eq!(p2, SleepPhase::Reorganize);
let p3 = ctrl.advance_phase();
assert_eq!(p3, SleepPhase::Prune);
let p4 = ctrl.advance_phase();
assert_eq!(p4, SleepPhase::Awake);
}
// ββ Wake interrupt ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_sleep_wake_interrupts() {
let mut ctrl = SleepController::new(1_000_000_000, 16);
ctrl.enter_sleep(0);
assert_eq!(ctrl.get_phase(), SleepPhase::Replay);
assert!(!ctrl.should_wake());
ctrl.set_wake_interrupt();
assert!(ctrl.should_wake());
let report = ctrl.wake();
assert!(report.interrupted, "report should be marked as interrupted");
assert_eq!(ctrl.get_phase(), SleepPhase::Awake);
}
// ββ Replay strengthening ββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_sleep_replay_strengthening() {
let mut ctrl = SleepController::new(1_000_000_000, 64);
// Push a pattern: AβBβAβB (paths 1, 2, 1, 2).
ctrl.record_event(make_event(100, 1));
ctrl.record_event(make_event(200, 2));
ctrl.record_event(make_event(300, 1));
ctrl.record_event(make_event(400, 2));
ctrl.enter_sleep(500);
let (strengthened, weakened) = ctrl.tick_replay();
// Three sequential pairs: (1,2), (2,1), (1,2) β 3 edge increments.
assert_eq!(strengthened, 3, "expected 3 strengthened edges");
assert_eq!(weakened, 0);
// The 1β2 edge should have been seen twice.
assert_eq!(*ctrl.edge_counts.get(&(1, 2)).unwrap_or(&0), 2);
}
// ββ Prune weak edges ββββββββββββββββββββββββββββββββββββββββββββββββββββ
#[test]
fn test_sleep_prune_weak_edges() {
let mut ctrl = SleepController::new(1_000_000_000, 16);
ctrl.enter_sleep(0);
let edge_weights = vec![
(1u32, 2u32, 0.9f64), // strong β keep
(2u32, 3u32, 0.1f64), // weak β prune
(3u32, 4u32, 0.05f64), // weak β prune
(4u32, 5u32, 0.8f64), // strong β keep
];
let threshold = 0.2;
let pruned = ctrl.tick_prune(&edge_weights, threshold);
assert_eq!(pruned.len(), 2, "expected 2 edges pruned");
assert!(pruned.contains(&(2, 3)));
assert!(pruned.contains(&(3, 4)));
}
}
|