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
Is this functionality that exists? If I understand it correctly, this would allow you to use the sliding windows features of pipelinedb but you could feed archived data through the stream all at once.
@MichaelXavier no, this functionality isn't available yet. But you can still use your own timestamp columns to define sliding windows using the explicit syntax:
CREATE CONTINUOUS VIEW v AS
SELECT count(*) FROM stream
WHERE my_timestamp > clock_timestamp() - interval '1 hour';
This will create a sliding window over one hour with respect to the my_timestamp column.
No description provided.
The text was updated successfully, but these errors were encountered: