Databricks SDK for JavaScript
    Preparing search index...

    Interface TableTriggerConfiguration

    interface TableTriggerConfiguration {
        condition?: TableTriggerConfiguration_Condition;
        minTimeBetweenTriggersSeconds?: number;
        tableNames?: string[];
        waitAfterLastChangeSeconds?: number;
    }
    Index

    Properties

    The table(s) condition based on which to trigger a job run.

    minTimeBetweenTriggersSeconds?: number

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

    tableNames?: string[]

    A list of tables to monitor for changes. The table name must be in the format catalog_name.schema_name.table_name.

    waitAfterLastChangeSeconds?: number

    If set, the trigger starts a run only after no table updates have occurred for the specified time and can be used to wait for a series of table updates before triggering a run. The minimum allowed value is 60 seconds.