Databricks SDK for JavaScript
    Preparing search index...

    Interface BackoffPolicyOptions

    Options for configuring a BackoffPolicy.

    interface BackoffPolicyOptions {
        factor?: number;
        initial?: number;
        maximum?: number;
    }
    Index

    Properties

    factor?: number

    Factor by which the delay is multiplied after each retry. The value must be greater or equal to 1. If not, it defaults to 2.

    initial?: number

    Initial delay in milliseconds; defaults to 1000.

    maximum?: number

    Maximum delay in milliseconds; defaults to 60000.