1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// SPDX-License-Identifier: BUSL-1.1 pub mod before; pub mod classify; pub mod collector; pub mod error_blame; pub mod partition; pub mod when_filter; /// Configuration for trigger batch processing. pub struct BatchConfig { /// Maximum rows per trigger batch (default 1024). pub batch_size: usize, } impl Default for BatchConfig { fn default() -> Self { Self { batch_size: 1024 } } }