- 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
16 lines
349 B
YAML
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
|