Databricks SDK for JavaScript
    Preparing search index...

    Interface FileArrivalTriggerConfiguration

    interface FileArrivalTriggerConfiguration {
        minTimeBetweenTriggersSeconds?: number;
        url?: string;
        waitAfterLastChangeSeconds?: number;
    }
    Index

    Properties

    minTimeBetweenTriggersSeconds?: number

    If set, the trigger starts a run only after the specified amount of time passed since the last time the trigger fired. The minimum allowed value is 60 seconds

    url?: string

    URL to be monitored for file arrivals. The path must point to the root or a subpath of the external location.

    waitAfterLastChangeSeconds?: number

    If set, the trigger starts a run only after no file activity has occurred for the specified amount of time. This makes it possible to wait for a batch of incoming files to arrive before triggering a run. The minimum allowed value is 60 seconds.