Type alias RedisJobOptions

RedisJobOptions: BaseJobOptions & {
    de?: string;
    deid?: string;
    fpof?: boolean;
    idof?: boolean;
    kl?: number;
    omc?: boolean;
    rdof?: boolean;
    tm?: string;
}

These fields are the ones stored in Redis with smaller keys for compactness.

Type declaration

  • Optional de?: string

    Deduplication identifier.

    Deprecated

    use deid

  • Optional deid?: string

    Debounce identifier.

  • Optional fpof?: boolean

    If true, moves parent to failed.

  • Optional idof?: boolean

    If true, moves the jobId from its parent dependencies to failed dependencies when it fails after all attempts.

  • Optional kl?: number

    Maximum amount of log entries that will be preserved

  • Optional omc?: boolean

    Omit Context Propagation

  • Optional rdof?: boolean

    If true, removes the job from its parent dependencies when it fails after all attempts.

  • Optional tm?: string

    TelemetryMetadata, provide for context propagation.

Generated using TypeDoc