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
This commit is contained in:
2026-09-05 01:05:01 -07:00
parent ed644b2c83
commit af6fc84a18
5 changed files with 71 additions and 0 deletions
@@ -0,0 +1,14 @@
apiVersion: kmsvc.io/v1
kind: Queue
metadata:
name: memory-indexing
namespace: sqs
spec:
fifoQueue: true
visibilityTimeoutSeconds: 60
messageRetentionPeriodSeconds: 2592000 # 30 days
maxReceiveCount: 5
partitionsPerShard: 1
minShards: 1
maxShards: 2
delaySeconds: 0