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
The filters, especially range filters should be monkeypatched from timestream such that instead of doing a full stream they set gte/lte range settings for the stream at the level-version level.
This should make a big difference for subset ranges.
The text was updated successfully, but these errors were encountered:
@aredridel I think that's a great start (merged 👍 ) and could be used to make something like:
db.ts('data').range(start,end)
Would automatically do
db.ts('data',{minVersion: start,maxVersion: end})
I'm still keen on working on query optimizers for the filters though. One example where this could be useful is a saved query could be later limited via a range() and still optimized, e.g.
The filters, especially range filters should be monkeypatched from timestream such that instead of doing a full stream they set gte/lte range settings for the stream at the level-version level.
This should make a big difference for subset ranges.
The text was updated successfully, but these errors were encountered: