pub struct Ingester {
pub expire_after: f32,
pub stale_after_seconds: f32,
pub incomplete_expire_after_seconds: f32,
pub incomplete_stale_after_seconds: f32,
pub sampling_at: HashMap<Priority, i64>,
pub max_inflight: u64,
pub cache_dtl: u32,
pub always_create_submission: bool,
}
Expand description
Ingester Configuration
Fields§
§expire_after: f32
Period, in seconds, in which a task should be expired
stale_after_seconds: f32
Drop a task altogether after this many seconds
incomplete_expire_after_seconds: f32
How long should scores be kept before expiry
incomplete_stale_after_seconds: f32
How long should scores be cached in the ingester
sampling_at: HashMap<Priority, i64>
Thresholds at certain buckets before sampling
max_inflight: u64
How many files to send to dispatcher concurrently
cache_dtl: u32
How long are files results cached
always_create_submission: bool
Always create submissions even on cache hit?
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ingester
impl<'de> Deserialize<'de> for Ingester
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Ingester
impl RefUnwindSafe for Ingester
impl Send for Ingester
impl Sync for Ingester
impl Unpin for Ingester
impl UnwindSafe for Ingester
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more