@s2-dev/streamstore - v0.18.1
    Preparing search index...

    Type Alias RetryConfig

    Retry configuration for handling transient failures.

    type RetryConfig = {
        appendRetryPolicy?: AppendRetryPolicy;
        maxAttempts?: number;
        requestTimeoutMillis?: number;
        retryBackoffDurationMillis?: number;
    }
    Index

    Properties

    appendRetryPolicy?: AppendRetryPolicy

    Policy for retrying append operations.

    "all"
    
    maxAttempts?: number

    Total number of attempts, including the initial try. Must be >= 1. A value of 1 means no retries.

    3
    
    requestTimeoutMillis?: number

    Maximum time in milliseconds to wait for an append ack before considering the attempt timed out and applying retry logic.

    Used by retrying append sessions. When unset, defaults to 5000ms.

    retryBackoffDurationMillis?: number

    Base delay in milliseconds between retry attempts. Fixed delay per attempt with jitter applied.

    100