obeli-sk-wasm-workers 0.41.5

Internal package of obelisk
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
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
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
use super::workflow_worker::JoinNextBlockingStrategy;
use crate::{
    activity::cancel_registry::CancelRegistry,
    workflow::{
        event_history::UpsertStubOrReplayInterrupt,
        replay_advance::{JoinSetCloseCancellations, is_closing_join_next},
    },
};
use async_trait::async_trait;
use chrono::{DateTime, Utc};
use concepts::{
    ComponentId, ExecutionId, JoinSetId,
    prefixed_ulid::{DelayId, ExecutionIdDerived},
    storage::{
        self, AppendRequest, AppendResponseToExecution, BacktraceInfo, CreateRequest, DbConnection,
        DbErrorRead, DbErrorWrite, LogInfoAppendRow, ResponseCursor, ResponseSubscriptionEnd,
        ResponseWithCursor, SubscribeToResponsesError, Version,
    },
};
use db_common::JoinSetResponseId;
use std::pin::Pin;
use std::{any::Any, future::Future};
use tracing::{debug, instrument, warn};

#[async_trait]
pub(crate) trait WorkflowDbConnection: Send + Any {
    fn as_any(self: Box<Self>) -> Box<dyn Any>;

    fn execution_id(&self) -> &ExecutionId;

    fn try_defer_application_log(&mut self, row: LogInfoAppendRow) -> bool;

    async fn append_backtrace(&mut self, backtrace: BacktraceInfo) -> Result<(), DbErrorWrite>;

    async fn append_non_blocking(
        &mut self,
        non_blocking_event: CacheableDbEvent,
        called_at: DateTime<Utc>,
    ) -> Result<(), DbErrorWrite>;

    // Caller must trigger flushing before this call.
    async fn append_blocking(
        &mut self,
        version: Version,
        execution_id: ExecutionId,
        req: AppendRequest,
        wasm_backtrace: Option<storage::WasmBacktrace>,
        component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite>;

    #[expect(clippy::too_many_arguments)]
    async fn append_join_set_close(
        &mut self,
        version: Version,
        cancel_registry: &CancelRegistry,
        execution_id: ExecutionId,
        req: AppendRequest,
        cancellations: Option<JoinSetCloseCancellations>,
        wasm_backtrace: Option<storage::WasmBacktrace>,
        component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite>;

    async fn append_batch(
        &mut self,
        version: Version,
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        execution_id: ExecutionId,
        wasm_backtrace: Option<storage::WasmBacktrace>,
        component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite>;

    #[expect(clippy::too_many_arguments)]
    async fn append_batch_with_delay_response(
        &mut self,
        version: Version,
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        execution_id: ExecutionId,
        join_set_id: JoinSetId,
        delay_id: DelayId,
        wasm_backtrace: Option<storage::WasmBacktrace>,
        component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite>;

    #[expect(clippy::too_many_arguments)]
    async fn append_batch_create_new_execution(
        &mut self,
        version: Version,
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        execution_id: ExecutionId,
        child_req: Vec<CreateRequest>,
        wasm_backtrace: Option<storage::WasmBacktrace>,
        component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite>;

    // `stub_backtrace` is display-only, keyed to the parent's future stub-event version so persist skips it.
    async fn upsert_stub_response(
        &mut self,
        execution_id: ExecutionIdDerived,
        version: Version,
        req: AppendRequest,
        response: AppendResponseToExecution,
        current_time: DateTime<Utc>,
        stub_backtrace: Option<BacktraceInfo>,
    ) -> Result<(), UpsertStubOrReplayInterrupt>;

    // Part of writing stub response: start with this read, then attempt to write the response in `EventHistory::append_to_db_non_blocking`.
    async fn get_stub_create_request(
        &self,
        execution_id: &ExecutionId,
    ) -> Result<CreateRequest, DbErrorRead>;

    async fn subscribe_to_next_responses(
        &self,
        execution_id: &ExecutionId,
        last_response: ResponseCursor,
        subscription_end_fut: Pin<Box<dyn Future<Output = ResponseSubscriptionEnd> + Send>>,
    ) -> Result<Vec<ResponseWithCursor>, SubscribeToResponsesError>;

    async fn flush_non_blocking_event_cache(
        &mut self,
        current_time: DateTime<Utc>,
    ) -> Result<(), DbErrorWrite>;

    fn captured_writes_collected(&self) -> Option<usize> {
        None
    }
}

pub(crate) struct CachingDbConnection {
    db_connection: Box<dyn DbConnection>,
    execution_id: ExecutionId,
    pub(crate) caching_buffer: Option<CachingBuffer>,
}
impl CachingDbConnection {
    pub(crate) fn new(
        db_connection: Box<dyn DbConnection>,
        execution_id: ExecutionId,
        caching_buffer: Option<CachingBuffer>,
    ) -> CachingDbConnection {
        CachingDbConnection {
            db_connection,
            execution_id,
            caching_buffer,
        }
    }
}

pub(crate) enum CacheableDbEvent {
    SubmitChildExecution {
        request: AppendRequest,
        version: Version,
        child_req: CreateRequest,
        backtrace: Option<BacktraceInfo>,
    },
    /// `SubmitChildExecution` where the intent failed (function not found or params parsing error).
    /// Only persists the history event, no child execution created.
    SubmitChildExecutionError {
        request: AppendRequest,
        version: Version,
        backtrace: Option<BacktraceInfo>,
    },
    Schedule {
        request: AppendRequest,
        version: Version,
        child_req: CreateRequest,
        backtrace: Option<BacktraceInfo>,
    },
    /// Schedule where the intent failed (function not found or params parsing error).
    /// Only persists the history event, no child execution created.
    ScheduleError {
        request: AppendRequest,
        version: Version,
        backtrace: Option<BacktraceInfo>,
    },
    JoinSetCreate {
        request: AppendRequest,
        version: Version,
        backtrace: Option<BacktraceInfo>,
    },
    Persist {
        request: AppendRequest,
        version: Version,
        backtrace: Option<BacktraceInfo>,
    },
    SubmitDelay {
        request: AppendRequest,
        version: Version,
        backtrace: Option<BacktraceInfo>,
    },
    JoinNextTry {
        request: AppendRequest,
        version: Version,
        backtrace: Option<BacktraceInfo>,
    },
}

#[expect(
    clippy::large_enum_variant,
    reason = "boxing every non-blocking event would add an allocation to the hot path"
)]
enum CachedDbWrite {
    NonBlocking(CacheableDbEvent),
    BatchWithDelayResponse {
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        version: Version,
        join_set_id: JoinSetId,
        delay_id: DelayId,
    },
}

pub(crate) struct CachingBuffer {
    write_batch_size: usize,
    writes: Vec<CachedDbWrite>,
}
impl CachingBuffer {
    pub(crate) fn new(
        join_next_blocking_strategy: JoinNextBlockingStrategy,
    ) -> Option<CachingBuffer> {
        let non_blocking_event_batch_size = match join_next_blocking_strategy {
            JoinNextBlockingStrategy::Await {
                non_blocking_event_batching,
                subscription_interruption: _,
            } => non_blocking_event_batching as usize,
            JoinNextBlockingStrategy::Interrupt => 0,
        };
        if non_blocking_event_batch_size == 0 {
            None
        } else {
            Some(CachingBuffer {
                write_batch_size: non_blocking_event_batch_size,
                writes: Vec::with_capacity(non_blocking_event_batch_size),
            })
        }
    }
}

#[async_trait]
impl WorkflowDbConnection for CachingDbConnection {
    fn as_any(self: Box<Self>) -> Box<dyn Any> {
        self
    }

    fn execution_id(&self) -> &ExecutionId {
        &self.execution_id
    }

    fn try_defer_application_log(&mut self, _row: LogInfoAppendRow) -> bool {
        false
    }

    async fn append_backtrace(&mut self, _backtrace: BacktraceInfo) -> Result<(), DbErrorWrite> {
        unreachable!("CachingDbConnection never captures backtraces")
    }

    async fn append_non_blocking(
        &mut self,
        non_blocking_event: CacheableDbEvent,
        called_at: DateTime<Utc>,
    ) -> Result<(), DbErrorWrite> {
        if let Some(caching_buffer) = &mut self.caching_buffer {
            caching_buffer
                .writes
                .push(CachedDbWrite::NonBlocking(non_blocking_event));
            self.flush_non_blocking_event_cache_if_full(called_at)
                .await?;
        } else {
            // No caching_buffer here, so no flushing before the write.
            match non_blocking_event {
                CacheableDbEvent::Schedule {
                    request,
                    version,
                    child_req,
                    backtrace: _,
                }
                | CacheableDbEvent::SubmitChildExecution {
                    request,
                    version,
                    child_req,
                    backtrace: _,
                } => {
                    let next_version = self
                        .db_connection
                        .append_batch_create_new_execution(
                            called_at,
                            vec![request],
                            self.execution_id.clone(),
                            version.clone(),
                            vec![child_req],
                            vec![],
                        )
                        .await?;
                    assert_eq!(version.increment(), next_version);
                }
                CacheableDbEvent::JoinSetCreate {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::Persist {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::SubmitDelay {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::JoinNextTry {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::ScheduleError {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::SubmitChildExecutionError {
                    request,
                    version,
                    backtrace: _,
                } => {
                    let next_version = self
                        .db_connection
                        .append(self.execution_id.clone(), version.clone(), request)
                        .await?;
                    assert_eq!(version.increment(), next_version);
                }
            }
        }
        Ok(())
    }

    // Caller must trigger flushing before this call.
    async fn append_blocking(
        &mut self,
        version: Version,
        execution_id: ExecutionId,
        req: AppendRequest,
        _wasm_backtrace: Option<storage::WasmBacktrace>,
        _component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite> {
        self.flush_non_blocking_event_cache(req.created_at).await?;
        let next_version = self
            .db_connection
            .append(execution_id, version.clone(), req)
            .await?;
        assert_eq!(version.increment(), next_version);
        Ok(())
    }

    async fn append_batch(
        &mut self,
        version: Version,
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        execution_id: ExecutionId,
        _wasm_backtrace: Option<storage::WasmBacktrace>,
        _component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite> {
        self.flush_non_blocking_event_cache(current_time).await?;
        self.db_connection
            .append_batch(current_time, batch, execution_id, version)
            .await?;
        Ok(())
    }

    async fn append_batch_with_delay_response(
        &mut self,
        version: Version,
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        execution_id: ExecutionId,
        join_set_id: JoinSetId,
        delay_id: DelayId,
        _wasm_backtrace: Option<storage::WasmBacktrace>,
        _component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite> {
        if let Some(caching_buffer) = &mut self.caching_buffer {
            caching_buffer
                .writes
                .push(CachedDbWrite::BatchWithDelayResponse {
                    current_time,
                    batch,
                    version,
                    join_set_id,
                    delay_id,
                });
            self.flush_non_blocking_event_cache_if_full(current_time)
                .await?;
        } else {
            self.db_connection
                .append_batch_with_delay_response(
                    current_time,
                    batch,
                    execution_id,
                    version,
                    join_set_id,
                    delay_id,
                )
                .await?;
        }
        Ok(())
    }

    async fn append_join_set_close(
        &mut self,
        version: Version,
        cancel_registry: &CancelRegistry,
        execution_id: ExecutionId,
        req: AppendRequest,
        cancellations: Option<JoinSetCloseCancellations>,
        wasm_backtrace: Option<storage::WasmBacktrace>,
        component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite> {
        assert_eq!(self.execution_id, execution_id);
        assert!(
            is_closing_join_next(&req),
            "append_join_set_close must append JoinNext(closing=true)"
        );
        self.flush_non_blocking_event_cache(req.created_at).await?;

        // Activities and delays are cancelled in reverse order of creation.
        if let Some(cancellations) = cancellations {
            for response_id in cancellations.iterate_in_cancellation_order() {
                match response_id {
                    JoinSetResponseId::ChildExecutionId(child_execution_id_derived) => {
                        let res = cancel_registry
                            .cancel_activity(
                                self.db_connection.as_ref(),
                                &ExecutionId::Derived(child_execution_id_derived.clone()),
                                cancellations.cancelled_at,
                            )
                            .await;
                        if let Err(err) = res {
                            debug!(
                                "Ignoring failure to cancel activity {child_execution_id_derived} - {err:?}"
                            );
                        }
                    }
                    JoinSetResponseId::DelayId(delay_id) => {
                        let res = storage::cancel_delay(
                            self.db_connection.as_ref(),
                            delay_id.clone(),
                            cancellations.cancelled_at,
                        )
                        .await;
                        if let Err(err) = res {
                            debug!("Ignoring failure to cancel delay {delay_id} - {err:?}");
                        }
                    }
                }
            }
            // Signal cancellable children; the driver drives their close and the
            // `Cancelled` response wakes our await.
            for child_id in cancellations.cancellable_child_ids() {
                let res = self
                    .db_connection
                    .cancel_workflow_with_retries(
                        &ExecutionId::Derived(child_id.clone()),
                        cancellations.cancelled_at,
                    )
                    .await;
                if let Err(err) = res {
                    debug!("Ignoring failure to signal cancellable child {child_id} - {err:?}");
                }
            }
        }

        self.append_blocking(version, execution_id, req, wasm_backtrace, component_id)
            .await
    }

    async fn append_batch_create_new_execution(
        &mut self,
        version: Version,
        current_time: DateTime<Utc>,
        batch: Vec<AppendRequest>,
        execution_id: ExecutionId,
        child_req: Vec<CreateRequest>,
        _wasm_backtrace: Option<storage::WasmBacktrace>,
        _component_id: &ComponentId,
    ) -> Result<(), DbErrorWrite> {
        self.flush_non_blocking_event_cache(current_time).await?;
        let expected_next_version =
            Version(version.0 + u32::try_from(batch.len()).expect("max 3 won't overflow"));
        let next_version = self
            .db_connection
            .append_batch_create_new_execution(
                current_time,
                batch,
                execution_id,
                version,
                child_req,
                vec![],
            )
            .await?;
        assert_eq!(next_version, expected_next_version); // must hold, assumed when creating the backtrace `version_max_excluding`

        Ok(())
    }

    async fn upsert_stub_response(
        &mut self,
        execution_id: ExecutionIdDerived,
        version: Version,
        req: AppendRequest,
        response: AppendResponseToExecution,
        current_time: DateTime<Utc>,
        _stub_backtrace: Option<BacktraceInfo>,
    ) -> Result<(), UpsertStubOrReplayInterrupt> {
        // This write bypasses the cache (it must return the conflict result
        // immediately), so flush first to keep it ordered after any buffered write.
        // Without this a self-fulfilled stub, whose child `submit` is still buffered,
        // creates the child here and again when the buffer flushes.
        self.flush_non_blocking_event_cache(current_time)
            .await
            .map_err(UpsertStubOrReplayInterrupt::DbError)?;
        self.db_connection
            .upsert_stub_response(execution_id, version, req, response, current_time)
            .await
            .map_err(|err| match err {
                concepts::storage::DbErrorStubResponse::StubConflict => {
                    UpsertStubOrReplayInterrupt::StubConflict
                }
                concepts::storage::DbErrorStubResponse::Write(db_err) => {
                    UpsertStubOrReplayInterrupt::DbError(db_err)
                }
            })
    }

    async fn get_stub_create_request(
        &self,
        execution_id: &ExecutionId,
    ) -> Result<CreateRequest, DbErrorRead> {
        if let Some(caching_buffer) = &self.caching_buffer
            && let Some(found) = caching_buffer.writes.iter().find_map(|event| match event {
                CachedDbWrite::NonBlocking(CacheableDbEvent::SubmitChildExecution {
                    request: _,
                    version: _,
                    child_req,
                    backtrace: _,
                }) if child_req.execution_id == *execution_id => Some(child_req.clone()),
                _ => None,
            })
        {
            return Ok(found);
        }

        self.db_connection.get_create_request(execution_id).await
    }

    async fn subscribe_to_next_responses(
        &self,
        execution_id: &ExecutionId,
        last_response: ResponseCursor,
        subscription_end_fut: Pin<Box<dyn Future<Output = ResponseSubscriptionEnd> + Send>>,
    ) -> Result<Vec<ResponseWithCursor>, SubscribeToResponsesError> {
        self.db_connection
            .subscribe_to_next_responses(execution_id, last_response, subscription_end_fut)
            .await
    }

    #[instrument(level = tracing::Level::DEBUG, skip(self))]
    // A write needs flushing when continuing requires an actor outside the in-memory
    // workflow state to observe it.
    async fn flush_non_blocking_event_cache(
        &mut self,
        current_time: DateTime<Utc>,
    ) -> Result<(), DbErrorWrite> {
        if let Some(caching_buffer) = &mut self.caching_buffer
            && !caching_buffer.writes.is_empty()
        {
            debug!("Flushing the non-blocking event cache started");
            let cached_writes = std::mem::take(&mut caching_buffer.writes);
            let mut non_blocking_batch = Vec::new();
            for cached_write in cached_writes {
                match cached_write {
                    CachedDbWrite::NonBlocking(non_blocking) => {
                        non_blocking_batch.push(non_blocking);
                    }
                    CachedDbWrite::BatchWithDelayResponse {
                        current_time,
                        batch,
                        version,
                        join_set_id,
                        delay_id,
                    } => {
                        self.flush_non_blocking_batch(current_time, &mut non_blocking_batch)
                            .await?;
                        self.db_connection
                            .append_batch_with_delay_response(
                                current_time,
                                batch,
                                self.execution_id.clone(),
                                version,
                                join_set_id,
                                delay_id,
                            )
                            .await?;
                    }
                }
            }
            self.flush_non_blocking_batch(current_time, &mut non_blocking_batch)
                .await?;

            debug!("Flushing the non-blocking event cache finished");
        }
        Ok(())
    }
}

impl CachingDbConnection {
    async fn flush_non_blocking_batch(
        &self,
        current_time: DateTime<Utc>,
        non_blocking_batch: &mut Vec<CacheableDbEvent>,
    ) -> Result<(), DbErrorWrite> {
        if non_blocking_batch.is_empty() {
            return Ok(());
        }

        let mut batches = Vec::with_capacity(non_blocking_batch.len());
        let mut childs = Vec::with_capacity(non_blocking_batch.len());
        let mut first_version = None;
        for non_blocking in non_blocking_batch.drain(..) {
            match non_blocking {
                CacheableDbEvent::SubmitChildExecution {
                    request,
                    version,
                    child_req,
                    backtrace: _,
                }
                | CacheableDbEvent::Schedule {
                    request,
                    version,
                    child_req,
                    backtrace: _,
                } => {
                    if first_version.is_none() {
                        first_version.replace(version);
                    }
                    childs.push(child_req);
                    batches.push(request);
                }
                CacheableDbEvent::JoinSetCreate {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::Persist {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::SubmitDelay {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::JoinNextTry {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::ScheduleError {
                    request,
                    version,
                    backtrace: _,
                }
                | CacheableDbEvent::SubmitChildExecutionError {
                    request,
                    version,
                    backtrace: _,
                } => {
                    if first_version.is_none() {
                        first_version.replace(version);
                    }
                    batches.push(request);
                }
            }
        }
        assert!(!batches.is_empty());
        self.db_connection
            .append_batch_create_new_execution(
                current_time,
                batches,
                self.execution_id.clone(),
                first_version.expect("checked that non_blocking_batch is not empty"),
                childs,
                vec![],
            )
            .await?;
        Ok(())
    }
}

impl Drop for CachingDbConnection {
    fn drop(&mut self) {
        if let Some(caching_buffer) = &self.caching_buffer
            && !caching_buffer.writes.is_empty()
        {
            warn!(
                execution_id = %self.execution_id,
                cache_len = caching_buffer.writes.len(),
                "CachingDbConnection dropped with non-empty cache"
            );
        }
    }
}

impl CachingDbConnection {
    async fn flush_non_blocking_event_cache_if_full(
        &mut self,
        current_time: DateTime<Utc>,
    ) -> Result<(), DbErrorWrite> {
        if let Some(caching_buffer) = &self.caching_buffer {
            let too_many = caching_buffer.writes.len() >= caching_buffer.write_batch_size;
            if too_many {
                self.flush_non_blocking_event_cache(current_time).await?;
            }
        }
        Ok(())
    }
}