Databricks SDK for JavaScript
    Preparing search index...

    BackoffPolicy implements an exponential backoff policy. The delay between retries is randomly computed between 0 and the "exponential delay" as recommended in Exponential Backoff And Jitter. The retry delay starts from initial and grows exponentially by factor at every retry. The maximum retry delay is capped by maximum.

    There is no parameter to limit the number of retries. This is intended as such logic should be implemented upstream (e.g. in a Retrier).

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    factor: number

    Factor by which the delay is multiplied after each retry.

    initial: number

    Initial delay in milliseconds.

    maximum: number

    Maximum delay in milliseconds.

    Methods