Databricks SDK for JavaScript
    Preparing search index...

    A rolling time window with an optional delay. This is the SQL-spec-aligned replacement for ContinuousWindow: delay is the non-negative counterpart of the legacy non-positive ContinuousWindow.offset.

    interface RollingWindow {
        delay?: Duration;
        windowDuration?: Duration;
    }
    Index

    Properties

    delay?: Duration

    The delay applied to the end of the rolling window (must be non-negative). For example, delay=1d shifts the window end 1 day before the evaluation time.

    windowDuration?: Duration

    The duration of the rolling window (must be positive).