IBM / sliding-window-aggregators

Reference implementations of sliding window aggregation algorithms
Apache License 2.0
43 stars 16 forks source link

An adapter to simulate bulk operations using multiple singleton operations #59

Closed ktangwon closed 3 years ago

ktangwon commented 3 years ago

@hirzel Does bulkEvict(t) evict the record at timestamp exactly t as well?

hirzel commented 3 years ago

Yes, it evicts all records whose timestamps are <= t. In other words, it evicts up to and including t.

ktangwon commented 3 years ago

Great. That's also what BulkAdapter does. Thanks for confirming the expected behavior.