cesiumdb 0.1.0

Blazing fast, persistent key-value store for Rust
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
//! Workload-adaptive compaction strategy selector
//!
//! Automatically adjusts compaction strategies based on observed workload
//! patterns.

use std::{
    sync::Arc,
    time::{
        Duration,
        Instant,
    },
};

use crate::{
    compaction::workload::{
        WorkloadAnalysis,
        WorkloadPattern,
        WorkloadStats,
    },
    levels::CompactionStrategy,
};

/// Adaptation policy configuration
#[derive(Debug, Clone)]
pub struct AdaptationPolicy {
    /// Minimum confidence level to trigger adaptation (0.0-1.0)
    pub min_confidence: f64,

    /// Minimum time between strategy changes
    pub min_adaptation_interval: Duration,

    /// Minimum number of operations before first adaptation
    pub min_ops_before_adapt: u64,

    /// Read amplification threshold for switching strategies
    pub read_amp_threshold: f64,

    /// Write amplification threshold for switching strategies
    pub write_amp_threshold: f64,
}

impl Default for AdaptationPolicy {
    fn default() -> Self {
        Self {
            min_confidence: 0.7,
            min_adaptation_interval: Duration::from_secs(300), // 5 minutes
            min_ops_before_adapt: 10000,
            read_amp_threshold: 5.0,
            write_amp_threshold: 20.0,
        }
    }
}

/// Workload-adaptive compaction strategy selector
pub struct WorkloadAdaptor {
    /// Workload statistics tracker
    stats: Arc<WorkloadStats>,

    /// Adaptation policy
    policy: AdaptationPolicy,

    /// Last adaptation time
    last_adaptation: Option<Instant>,

    /// Current recommended strategy
    current_strategy: Option<CompactionStrategy>,
}

impl WorkloadAdaptor {
    /// Creates a new workload adaptor
    pub fn new(stats: Arc<WorkloadStats>, policy: AdaptationPolicy) -> Self {
        Self {
            stats,
            policy,
            last_adaptation: None,
            current_strategy: None,
        }
    }

    /// Analyzes the current workload and returns recommended strategy
    ///
    /// Returns None if:
    /// - Not enough data to make a confident decision
    /// - Too soon after last adaptation
    /// - Current strategy is already optimal
    pub fn recommend_strategy(&mut self) -> Option<StrategyRecommendation> {
        let analysis = self.stats.analyze();

        // Check if we have enough confidence
        if analysis.confidence < self.policy.min_confidence {
            return None;
        }

        // Check if we have enough operations
        let snapshot = self.stats.snapshot();
        let total_ops = snapshot.gets + snapshot.puts + snapshot.deletes + snapshot.scans;
        if total_ops < self.policy.min_ops_before_adapt {
            return None;
        }

        // Check if enough time has passed since last adaptation
        if let Some(last) = self.last_adaptation {
            if last.elapsed() < self.policy.min_adaptation_interval {
                return None;
            }
        }

        // Determine recommended strategy based on workload pattern
        let recommended = match analysis.pattern {
            | WorkloadPattern::WriteHeavy => {
                // Minimize write amplification
                CompactionStrategy::Leveled {
                    fanout: 10,
                    target_file_count: 10,
                }
            },
            | WorkloadPattern::ReadHeavy => {
                // Minimize read amplification
                CompactionStrategy::Tiered {
                    size_ratio: 2.0,
                    min_merge_width: 2,
                    max_merge_width: 4,
                }
            },
            | WorkloadPattern::ScanHeavy => {
                // Non-overlapping ranges help scans
                CompactionStrategy::Leveled {
                    fanout: 10,
                    target_file_count: 10,
                }
            },
            | WorkloadPattern::PointLookup => {
                // Bloom filters help point lookups
                CompactionStrategy::Tiered {
                    size_ratio: 2.0,
                    min_merge_width: 2,
                    max_merge_width: 4,
                }
            },
            | WorkloadPattern::Balanced => {
                // Hybrid approach
                CompactionStrategy::Leveled {
                    fanout: 8,
                    target_file_count: 8,
                }
            },
        };

        // Check if we should switch strategies
        let should_switch = if let Some(ref current) = self.current_strategy {
            !self.strategies_equivalent(current, &recommended)
        } else {
            true // First recommendation
        };

        if !should_switch {
            return None;
        }

        // Check amplification thresholds
        let reason = if analysis.read_amplification > self.policy.read_amp_threshold {
            ChangeReason::HighReadAmplification(analysis.read_amplification)
        } else if analysis.write_amplification > self.policy.write_amp_threshold {
            ChangeReason::HighWriteAmplification(analysis.write_amplification)
        } else {
            ChangeReason::WorkloadPatternChange(analysis.pattern)
        };

        self.last_adaptation = Some(Instant::now());
        self.current_strategy = Some(recommended.clone());

        Some(StrategyRecommendation {
            strategy: recommended,
            reason,
            analysis: analysis.clone(),
        })
    }

    /// Checks if two strategies are equivalent
    fn strategies_equivalent(&self, a: &CompactionStrategy, b: &CompactionStrategy) -> bool {
        match (a, b) {
            | (CompactionStrategy::Tiered { .. }, CompactionStrategy::Tiered { .. }) => true,
            | (CompactionStrategy::Leveled { .. }, CompactionStrategy::Leveled { .. }) => true,
            | (CompactionStrategy::Universal { .. }, CompactionStrategy::Universal { .. }) => true,
            | _ => false,
        }
    }

    /// Returns the current workload analysis
    pub fn current_analysis(&self) -> WorkloadAnalysis {
        self.stats.analyze()
    }

    /// Resets adaptation state (useful for testing)
    pub fn reset(&mut self) {
        self.last_adaptation = None;
        self.current_strategy = None;
    }
}

/// Reason for strategy change
#[derive(Debug, Clone)]
pub enum ChangeReason {
    /// Workload pattern changed
    WorkloadPatternChange(WorkloadPattern),

    /// Read amplification exceeded threshold
    HighReadAmplification(f64),

    /// Write amplification exceeded threshold
    HighWriteAmplification(f64),
}

impl std::fmt::Display for ChangeReason {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            | Self::WorkloadPatternChange(pattern) => {
                write!(f, "Workload pattern changed to {:?}", pattern)
            },
            | Self::HighReadAmplification(amp) => {
                write!(f, "High read amplification ({:.2}x)", amp)
            },
            | Self::HighWriteAmplification(amp) => {
                write!(f, "High write amplification ({:.2}x)", amp)
            },
        }
    }
}

/// Strategy recommendation with justification
#[derive(Debug, Clone)]
pub struct StrategyRecommendation {
    /// Recommended strategy
    pub strategy: CompactionStrategy,

    /// Reason for the recommendation
    pub reason: ChangeReason,

    /// Workload analysis that led to this recommendation
    pub analysis: WorkloadAnalysis,
}

impl std::fmt::Display for StrategyRecommendation {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "Recommend {:?} strategy: {} ({})",
            self.strategy, self.reason, self.analysis
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_adaptor_creation() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy::default();
        let adaptor = WorkloadAdaptor::new(stats, policy);

        assert!(adaptor.last_adaptation.is_none());
        assert!(adaptor.current_strategy.is_none());
    }

    #[test]
    fn test_not_enough_confidence() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_confidence: 0.9,
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(stats, policy);

        // Not enough operations for high confidence
        assert!(adaptor.recommend_strategy().is_none());
    }

    #[test]
    fn test_write_heavy_recommendation() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_ops_before_adapt: 100,
            min_confidence: 0.6,
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(Arc::clone(&stats), policy);

        // Simulate write-heavy workload
        for _ in 0..800 {
            stats.record_put(1000);
        }
        for _ in 0..200 {
            stats.record_get(1000);
        }

        let recommendation = adaptor.recommend_strategy();
        assert!(recommendation.is_some());

        let rec = recommendation.unwrap();
        assert!(matches!(rec.strategy, CompactionStrategy::Leveled { .. }));
        assert_eq!(rec.analysis.pattern, WorkloadPattern::WriteHeavy);
    }

    #[test]
    fn test_read_heavy_recommendation() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_ops_before_adapt: 100,
            min_confidence: 0.6,
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(Arc::clone(&stats), policy);

        // Simulate read-heavy workload
        for _ in 0..800 {
            stats.record_get(1000);
        }
        for _ in 0..200 {
            stats.record_put(1000);
        }

        let recommendation = adaptor.recommend_strategy();
        assert!(recommendation.is_some());

        let rec = recommendation.unwrap();
        assert!(matches!(rec.strategy, CompactionStrategy::Tiered { .. }));
        assert_eq!(rec.analysis.pattern, WorkloadPattern::ReadHeavy);
    }

    #[test]
    fn test_scan_heavy_recommendation() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_ops_before_adapt: 100,
            min_confidence: 0.6,
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(Arc::clone(&stats), policy);

        // Simulate scan-heavy workload
        for _ in 0..500 {
            stats.record_scan(100, 10000);
        }
        for _ in 0..500 {
            stats.record_get(1000);
        }

        let recommendation = adaptor.recommend_strategy();
        assert!(recommendation.is_some());

        let rec = recommendation.unwrap();
        assert!(matches!(rec.strategy, CompactionStrategy::Leveled { .. }));
        assert_eq!(rec.analysis.pattern, WorkloadPattern::ScanHeavy);
    }

    #[test]
    fn test_min_ops_threshold() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_ops_before_adapt: 1000,
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(Arc::clone(&stats), policy);

        // Not enough operations
        for _ in 0..500 {
            stats.record_put(1000);
        }

        assert!(adaptor.recommend_strategy().is_none());

        // Now enough operations
        for _ in 0..600 {
            stats.record_put(1000);
        }

        assert!(adaptor.recommend_strategy().is_some());
    }

    #[test]
    fn test_adaptation_interval() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_ops_before_adapt: 100,
            min_confidence: 0.6,
            min_adaptation_interval: Duration::from_secs(60),
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(Arc::clone(&stats), policy);

        // First recommendation
        for _ in 0..800 {
            stats.record_put(1000);
        }
        for _ in 0..200 {
            stats.record_get(1000);
        }

        assert!(adaptor.recommend_strategy().is_some());

        // Second recommendation should be blocked by time interval
        stats.reset();
        for _ in 0..800 {
            stats.record_get(1000);
        }
        for _ in 0..200 {
            stats.record_put(1000);
        }

        assert!(adaptor.recommend_strategy().is_none());
    }

    #[test]
    fn test_no_change_same_strategy() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy {
            min_ops_before_adapt: 100,
            min_confidence: 0.6,
            min_adaptation_interval: Duration::from_secs(0),
            ..Default::default()
        };
        let mut adaptor = WorkloadAdaptor::new(Arc::clone(&stats), policy);

        // First recommendation - write heavy
        for _ in 0..800 {
            stats.record_put(1000);
        }
        for _ in 0..200 {
            stats.record_get(1000);
        }

        assert!(adaptor.recommend_strategy().is_some());

        // Still write heavy - no change
        stats.reset();
        for _ in 0..800 {
            stats.record_put(1000);
        }
        for _ in 0..200 {
            stats.record_get(1000);
        }

        assert!(adaptor.recommend_strategy().is_none());
    }

    #[test]
    fn test_reset() {
        let stats = Arc::new(WorkloadStats::new());
        let policy = AdaptationPolicy::default();
        let mut adaptor = WorkloadAdaptor::new(stats, policy);

        adaptor.last_adaptation = Some(Instant::now());
        adaptor.current_strategy = Some(CompactionStrategy::Leveled {
            fanout: 10,
            target_file_count: 10,
        });

        adaptor.reset();

        assert!(adaptor.last_adaptation.is_none());
        assert!(adaptor.current_strategy.is_none());
    }
}