icydb-core 0.144.13

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
Documentation
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
//! Module: diagnostics::execution_trace
//! Responsibility: execution trace contracts and mutation boundaries.
//! Does not own: execution routing policy or stream/materialization behavior.
//! Boundary: shared trace surface used by executor and response APIs.

use crate::db::query::plan::OrderDirection;

///
/// ExecutionOptimization
///
/// Load optimization label selected during execution and recorded in
/// diagnostics traces.
/// Diagnostics owns the DTO; executor code only chooses which label to attach.
///

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ExecutionOptimization {
    PrimaryKey,
    PrimaryKeyTopNSeek,
    SecondaryOrderPushdown,
    SecondaryOrderTopNSeek,
    IndexRangeLimitPushdown,
}

///
/// ExecutionStats
///
/// Diagnostics-owned operator stats snapshot for one traced query execution.
/// Executor profiling maps its internal counters into this DTO at the trace
/// boundary so diagnostics does not depend on executor-owned types.
///

#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
pub struct ExecutionStats {
    rows_scanned_pre_filter: u64,
    rows_after_predicate: u64,
    rows_after_projection: u64,
    rows_after_distinct: u64,
    rows_sorted: u64,
    keys_streamed: u64,
    key_stream_micros: u64,
    ordering_micros: u64,
    projection_micros: u64,
    aggregation_micros: u64,
}

impl ExecutionStats {
    /// Build one diagnostics stats DTO from already-normalized counters.
    #[must_use]
    #[expect(
        clippy::too_many_arguments,
        reason = "diagnostics stats DTO exposes the exact flat trace counter surface"
    )]
    pub(in crate::db) const fn new(
        rows_scanned_pre_filter: u64,
        rows_after_predicate: u64,
        rows_after_projection: u64,
        rows_after_distinct: u64,
        rows_sorted: u64,
        keys_streamed: u64,
        key_stream_micros: u64,
        ordering_micros: u64,
        projection_micros: u64,
        aggregation_micros: u64,
    ) -> Self {
        Self {
            rows_scanned_pre_filter,
            rows_after_predicate,
            rows_after_projection,
            rows_after_distinct,
            rows_sorted,
            keys_streamed,
            key_stream_micros,
            ordering_micros,
            projection_micros,
            aggregation_micros,
        }
    }

    /// Return rows encountered before post-access predicate filtering.
    #[must_use]
    #[cfg_attr(
        not(test),
        expect(
            dead_code,
            reason = "execution profiling accessors are consumed by crate tests and diagnostics tooling"
        )
    )]
    pub(in crate::db) const fn rows_scanned_pre_filter(&self) -> u64 {
        self.rows_scanned_pre_filter
    }

    /// Return rows retained after predicate filtering.
    #[must_use]
    #[cfg_attr(
        not(test),
        expect(
            dead_code,
            reason = "execution profiling accessors are consumed by crate tests and diagnostics tooling"
        )
    )]
    pub(in crate::db) const fn rows_after_predicate(&self) -> u64 {
        self.rows_after_predicate
    }

    /// Return rows retained after final projection/materialization.
    #[must_use]
    #[cfg_attr(
        not(test),
        expect(
            dead_code,
            reason = "execution profiling accessors are consumed by crate tests and diagnostics tooling"
        )
    )]
    pub(in crate::db) const fn rows_after_projection(&self) -> u64 {
        self.rows_after_projection
    }

    /// Return rows retained after DISTINCT processing when applicable.
    #[must_use]
    #[expect(
        dead_code,
        reason = "execution profiling records this for diagnostics consumers before response exposure"
    )]
    pub(in crate::db) const fn rows_after_distinct(&self) -> u64 {
        self.rows_after_distinct
    }

    /// Return rows submitted to in-memory ordering.
    #[must_use]
    #[expect(
        dead_code,
        reason = "execution profiling records this for diagnostics consumers before response exposure"
    )]
    pub(in crate::db) const fn rows_sorted(&self) -> u64 {
        self.rows_sorted
    }

    /// Return number of physical keys yielded by ordered key streams.
    #[must_use]
    #[cfg_attr(
        not(test),
        expect(
            dead_code,
            reason = "execution profiling accessors are consumed by crate tests and diagnostics tooling"
        )
    )]
    pub(in crate::db) const fn keys_streamed(&self) -> u64 {
        self.keys_streamed
    }

    /// Return microseconds spent polling ordered key streams.
    #[must_use]
    #[expect(
        dead_code,
        reason = "execution profiling records this for diagnostics consumers before response exposure"
    )]
    pub(in crate::db) const fn key_stream_micros(&self) -> u64 {
        self.key_stream_micros
    }

    /// Return microseconds spent in in-memory ordering.
    #[must_use]
    #[expect(
        dead_code,
        reason = "execution profiling records this for diagnostics consumers before response exposure"
    )]
    pub(in crate::db) const fn ordering_micros(&self) -> u64 {
        self.ordering_micros
    }

    /// Return microseconds spent finalizing projection payloads.
    #[must_use]
    #[expect(
        dead_code,
        reason = "execution profiling records this for diagnostics consumers before response exposure"
    )]
    pub(in crate::db) const fn projection_micros(&self) -> u64 {
        self.projection_micros
    }

    /// Return microseconds spent in grouped aggregation fold work.
    #[must_use]
    #[expect(
        dead_code,
        reason = "execution profiling records this for diagnostics consumers before response exposure"
    )]
    pub(in crate::db) const fn aggregation_micros(&self) -> u64 {
        self.aggregation_micros
    }
}

#[cfg_attr(
    doc,
    doc = "ExecutionAccessPathVariant\n\nCoarse access path shape recorded in execution traces."
)]
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ExecutionAccessPathVariant {
    ByKey,
    ByKeys,
    KeyRange,
    IndexPrefix,
    IndexMultiLookup,
    IndexRange,
    FullScan,
    Union,
    Intersection,
}

#[cfg_attr(
    doc,
    doc = "ExecutionTrace\n\nStructured execution trace snapshot for one load path.\nCaptures plan shape and counters without affecting behavior."
)]
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct ExecutionTrace {
    pub(crate) access_path_variant: ExecutionAccessPathVariant,
    pub(crate) direction: OrderDirection,
    pub(crate) optimization: Option<ExecutionOptimization>,
    pub(crate) keys_scanned: u64,
    pub(crate) rows_materialized: u64,
    pub(crate) rows_returned: u64,
    pub(crate) execution_time_micros: u64,
    pub(crate) index_only: bool,
    pub(crate) continuation_applied: bool,
    pub(crate) index_predicate_applied: bool,
    pub(crate) index_predicate_keys_rejected: u64,
    pub(crate) distinct_keys_deduped: u64,
    pub(crate) execution_stats: Option<ExecutionStats>,
}

#[cfg_attr(
    doc,
    doc = "ExecutionMetrics\n\nCompact metrics view derived from one `ExecutionTrace`.\nKept small for lightweight observability surfaces."
)]
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct ExecutionMetrics {
    pub(crate) rows_scanned: u64,
    pub(crate) rows_materialized: u64,
    pub(crate) execution_time_micros: u64,
    pub(crate) index_only: bool,
}

impl ExecutionTrace {
    /// Build one trace payload from an executor-projected access shape.
    #[must_use]
    pub(crate) const fn new_from_variant(
        access_path_variant: ExecutionAccessPathVariant,
        direction: OrderDirection,
        continuation_applied: bool,
    ) -> Self {
        Self {
            access_path_variant,
            direction,
            optimization: None,
            keys_scanned: 0,
            rows_materialized: 0,
            rows_returned: 0,
            execution_time_micros: 0,
            index_only: false,
            continuation_applied,
            index_predicate_applied: false,
            index_predicate_keys_rejected: 0,
            distinct_keys_deduped: 0,
            execution_stats: None,
        }
    }

    /// Apply one finalized path outcome to this trace snapshot.
    #[expect(clippy::too_many_arguments)]
    pub(in crate::db) fn set_path_outcome(
        &mut self,
        optimization: Option<ExecutionOptimization>,
        keys_scanned: usize,
        rows_materialized: usize,
        rows_returned: usize,
        execution_time_micros: u64,
        index_only: bool,
        index_predicate_applied: bool,
        index_predicate_keys_rejected: u64,
        distinct_keys_deduped: u64,
    ) {
        self.optimization = optimization;
        self.keys_scanned = u64::try_from(keys_scanned).unwrap_or(u64::MAX);
        self.rows_materialized = u64::try_from(rows_materialized).unwrap_or(u64::MAX);
        self.rows_returned = u64::try_from(rows_returned).unwrap_or(u64::MAX);
        self.execution_time_micros = execution_time_micros;
        self.index_only = index_only;
        self.index_predicate_applied = index_predicate_applied;
        self.index_predicate_keys_rejected = index_predicate_keys_rejected;
        self.distinct_keys_deduped = distinct_keys_deduped;
        debug_assert_eq!(
            self.keys_scanned,
            u64::try_from(keys_scanned).unwrap_or(u64::MAX),
            "execution trace keys_scanned must match rows_scanned metrics input",
        );
    }

    /// Attach optional operator-level execution stats to this trace.
    pub(in crate::db) const fn set_execution_stats(&mut self, stats: Option<ExecutionStats>) {
        self.execution_stats = stats;
    }

    /// Return compact execution metrics for pre-EXPLAIN observability surfaces.
    #[must_use]
    pub const fn metrics(&self) -> ExecutionMetrics {
        ExecutionMetrics {
            rows_scanned: self.keys_scanned,
            rows_materialized: self.rows_materialized,
            execution_time_micros: self.execution_time_micros,
            index_only: self.index_only,
        }
    }

    /// Return the coarse executed access-path variant.
    #[must_use]
    pub const fn access_path_variant(&self) -> ExecutionAccessPathVariant {
        self.access_path_variant
    }

    /// Return executed order direction.
    #[must_use]
    pub const fn direction(&self) -> OrderDirection {
        self.direction
    }

    /// Return selected optimization, if any.
    #[must_use]
    pub const fn optimization(&self) -> Option<ExecutionOptimization> {
        self.optimization
    }

    /// Return number of keys scanned.
    #[must_use]
    pub const fn keys_scanned(&self) -> u64 {
        self.keys_scanned
    }

    /// Return number of rows materialized.
    #[must_use]
    pub const fn rows_materialized(&self) -> u64 {
        self.rows_materialized
    }

    /// Return number of rows returned.
    #[must_use]
    pub const fn rows_returned(&self) -> u64 {
        self.rows_returned
    }

    /// Return execution time in microseconds.
    #[must_use]
    pub const fn execution_time_micros(&self) -> u64 {
        self.execution_time_micros
    }

    /// Return whether execution remained index-only.
    #[must_use]
    pub const fn index_only(&self) -> bool {
        self.index_only
    }

    /// Return whether continuation was applied.
    #[must_use]
    pub const fn continuation_applied(&self) -> bool {
        self.continuation_applied
    }

    /// Return whether index predicate pushdown was applied.
    #[must_use]
    pub const fn index_predicate_applied(&self) -> bool {
        self.index_predicate_applied
    }

    /// Return number of keys rejected by index predicate pushdown.
    #[must_use]
    pub const fn index_predicate_keys_rejected(&self) -> u64 {
        self.index_predicate_keys_rejected
    }

    /// Return number of deduplicated keys under DISTINCT processing.
    #[must_use]
    pub const fn distinct_keys_deduped(&self) -> u64 {
        self.distinct_keys_deduped
    }

    /// Return optional operator-level execution stats for this trace.
    #[must_use]
    #[cfg_attr(
        not(test),
        expect(
            dead_code,
            reason = "execution stats are an internal diagnostics/testing surface"
        )
    )]
    pub(in crate::db) const fn execution_stats(&self) -> Option<ExecutionStats> {
        self.execution_stats
    }
}

impl ExecutionMetrics {
    /// Return number of rows scanned.
    #[must_use]
    pub const fn rows_scanned(&self) -> u64 {
        self.rows_scanned
    }

    /// Return number of rows materialized.
    #[must_use]
    pub const fn rows_materialized(&self) -> u64 {
        self.rows_materialized
    }

    /// Return execution time in microseconds.
    #[must_use]
    pub const fn execution_time_micros(&self) -> u64 {
        self.execution_time_micros
    }

    /// Return whether execution remained index-only.
    #[must_use]
    pub const fn index_only(&self) -> bool {
        self.index_only
    }
}