Skip to main content

spider_util/constants/
pipeline.rs

1//! Pipeline/output constants.
2
3/// Buffer size for CSV export pipeline.
4pub const CSV_BUFFER_SIZE: usize = 8192;
5
6/// Channel capacity for SQLite pipeline.
7pub const SQLITE_CHANNEL_CAPACITY: usize = 100;
8
9/// Default batch size for stream JSON pipeline.
10pub const STREAM_JSON_DEFAULT_BATCH_SIZE: usize = 100;