Files
homelab/k8s/apps/messaging/memory-queues/processing-queue.yaml
T
rock af6fc84a18 feat: add memory service queues (processing, indexing, dlq)
- processing-queue: high-throughput, auto-scaling (1-4 shards)
- indexing-queue: FIFO with deduplication (1-2 shards)
- memory-dlq: dead letter queue for redelivery failures
- ArgoCD Application (wave 7) to auto-sync queue lifecycle
2026-09-05 01:05:01 -07:00

16 lines
349 B
YAML

apiVersion: kmsvc.io/v1
kind: Queue
metadata:
name: memory-processing
namespace: sqs
spec:
fifoQueue: false
visibilityTimeoutSeconds: 120
messageRetentionPeriodSeconds: 604800 # 7 days
maxReceiveCount: 3
deadLetterTargetQueue: memory-dlq
partitionsPerShard: 3
minShards: 1
maxShards: 4
shardSplitThresholdBytesPerSec: 5242880