You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2023. It is now read-only.
we set the LastUpdate field based on the timestamp of the data, but compare it against wall clock time.
so if a user creates a new series, and starts writing data from a month ago until now, or when writing data just generally lags behind current clock time by more than 2*updateInterval, we will constantly update the index (both in memory and cassandra) with every point that we receive.
maybe something to think about when working on #559
The text was updated successfully, but these errors were encountered:
we could keep track of the number of points too since we last updated cassandra. and only update if $lastUpdate-time-clause AND update was at least X points ago
compare LastUpdate against timestamp of current point, not against wall clock time.
we set the LastUpdate field based on the timestamp of the data, but compare it against wall clock time.
so if a user creates a new series, and starts writing data from a month ago until now, or when writing data just generally lags behind current clock time by more than 2*updateInterval, we will constantly update the index (both in memory and cassandra) with every point that we receive.
maybe something to think about when working on #559
The text was updated successfully, but these errors were encountered: