pub struct MemoryDecayJob {
pub decay_lambda: f32,
/* private fields */
}Expand description
Periodic job that updates recency_weight for all records in a table.
The weight decays exponentially with age:
recency_weight = exp(-lambda * days_since_last_access)
Where days_since_last_access is computed from the last_accessed_at
column (ISO 8601 string or Unix timestamp string in the record).
§Usage
ⓘ
let job = MemoryDecayJob::new(catalog, store, policy, lambda: 0.1);
let updated = job.run(&table).await?;
println!("{updated} files updated");Fields§
§decay_lambda: f32Exponential decay rate. Higher lambda → faster decay. Typical values: 0.05 (slow) to 0.5 (aggressive).
Implementations§
Source§impl MemoryDecayJob
impl MemoryDecayJob
pub fn new( catalog: Arc<dyn CatalogProvider>, store: Arc<dyn Store>, policy: VectorStoragePolicy, decay_lambda: f32, ) -> Self
Sourcepub async fn run(&self, table: &TableIdent) -> AilakeResult<usize>
pub async fn run(&self, table: &TableIdent) -> AilakeResult<usize>
Run decay update across all data files in the table’s current snapshot.
Returns the number of files that were rewritten (files missing the
last_accessed_at column are skipped).
Auto Trait Implementations§
impl !RefUnwindSafe for MemoryDecayJob
impl !UnwindSafe for MemoryDecayJob
impl Freeze for MemoryDecayJob
impl Send for MemoryDecayJob
impl Sync for MemoryDecayJob
impl Unpin for MemoryDecayJob
impl UnsafeUnpin for MemoryDecayJob
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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