Provision in advance/Pre heat #4852
-
I am using Keda 2.11 for scaling pods based on messages in AWS SQS. My Scaled obj definition looks like: `apiVersion: keda.sh/v1alpha1
Is there a way to always scale at calculated value + Constant. For example when there are no messages it will scale at Constant. When there are 2 messages it will scale to 2 + Constant. That would mean we will be always over provisioned by Constant pods. This will help me not have any delay when processing messages. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
Correct, my worker processes 1 message at a time. |
Beta Was this translation helpful? Give feedback.
Correct, my worker processes 1 message at a time.
I'd rather not use jobs since there is caching in deployments which I would lose when running a job per message. Hoping to save time implementing custom api server.