Interface: WorkerOptions
Defined in: glide-mq/src/types.ts:97
Extends
Extended by
Properties
backoffStrategies?
optional backoffStrategies?: Record<string, (attemptsMade, err) => number>;Defined in: glide-mq/src/types.ts:113
batch?
optional batch?: BatchOptions;Defined in: glide-mq/src/types.ts:121
Enable batch processing. When set, the processor receives an array of jobs.
blockTimeout?
optional blockTimeout?: number;Defined in: glide-mq/src/types.ts:108
client?
optional client?: Client;Defined in: glide-mq/src/types.ts:71
Pre-existing GLIDE client for non-blocking commands. When provided, the component does NOT own this client - close() will not destroy it. Must not be used for blocking reads (XREADGROUP BLOCK / XREAD BLOCK).
Inherited from
commandClient?
optional commandClient?: Client;Defined in: glide-mq/src/types.ts:104
Pre-existing GLIDE client for non-blocking commands (alias for client). The blocking client for XREADGROUP is always auto-created from connection. connection is required even when this is set. Provide either commandClient or client, not both.
compression?
optional compression?: "none" | "gzip";Defined in: glide-mq/src/types.ts:76
Enable transparent compression of job data. Default: 'none'.
Inherited from
concurrency?
optional concurrency?: number;Defined in: glide-mq/src/types.ts:105
connection?
optional connection?: ConnectionOptions;Defined in: glide-mq/src/types.ts:65
Connection options for creating a new client. Required unless client is provided.
Inherited from
deadLetterQueue?
optional deadLetterQueue?: DeadLetterQueueOptions;Defined in: glide-mq/src/types.ts:74
Dead letter queue configuration. Jobs that exhaust retries are moved here.
Inherited from
events?
optional events?: boolean;Defined in: glide-mq/src/types.ts:125
Emit events to Valkey event stream on job completion/activation. Default: true. Set to false to skip XADD events in hot path (~1 fewer redis.call per job). TS-side EventEmitter ('completed', 'failed', etc.) is unaffected.
Overrides
globalConcurrency?
optional globalConcurrency?: number;Defined in: glide-mq/src/types.ts:106
limiter?
optional limiter?: object;Defined in: glide-mq/src/types.ts:112
duration
duration: number;max
max: number;lockDuration?
optional lockDuration?: number;Defined in: glide-mq/src/types.ts:117
Lock duration in ms. The worker sends a heartbeat every lockDuration/2. Jobs with a recent heartbeat are not reclaimed as stalled. Default: 30000 (30s).
maxStalledCount?
optional maxStalledCount?: number;Defined in: glide-mq/src/types.ts:110
metrics?
optional metrics?: boolean;Defined in: glide-mq/src/types.ts:128
Record per-minute timing metrics in Valkey on job completion. Default: true. Set to false to skip HINCRBY metrics recording (~1-2 fewer redis.call per job).
prefetch?
optional prefetch?: number;Defined in: glide-mq/src/types.ts:107
prefix?
optional prefix?: string;Defined in: glide-mq/src/types.ts:72
Inherited from
promotionInterval?
optional promotionInterval?: number;Defined in: glide-mq/src/types.ts:111
sandbox?
optional sandbox?: SandboxOptions;Defined in: glide-mq/src/types.ts:119
Sandbox options for file-path processors. Only used when processor is a string.
serializer?
optional serializer?: Serializer;Defined in: glide-mq/src/types.ts:85
Custom serializer for job data and return values. Default: JSON.
Important: The same serializer must be used across all Queue, Worker, and FlowProducer instances that operate on the same queue. A mismatch causes silent data corruption - the consumer will see {} and the job's deserializationFailed flag will be true.
Inherited from
stalledInterval?
optional stalledInterval?: number;Defined in: glide-mq/src/types.ts:109