-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc(pubsub): supports PullAckRequestCount
#1071
Conversation
Signed-off-by: Jay Chung <[email protected]>
✅ Deploy Preview for keda ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
The mode chooses whether to scale using number of messages `SubscriptionSize` or using oldest unacked message age `OldestUnackedMessageAge`. | ||
The `value` determines the target average which the deployment will be scaled on. The default value is 5 for `SubscriptionSize` and 10 for `OldestUnackedMessageAge`. | ||
|
||
The `mode` chooses whether to scale using |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The `mode` chooses whether to scale using | |
`mode` defines what input scaling should be based on: |
- `SubscriptionSize`: number of messages | ||
- `OldestUnackedMessageAge`: oldest unacked message age | ||
- `PullAckRequestCount`: pull ack request count |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- `SubscriptionSize`: number of messages | |
- `OldestUnackedMessageAge`: oldest unacked message age | |
- `PullAckRequestCount`: pull ack request count | |
- `SubscriptionSize`: The number of messages | |
- `OldestUnackedMessageAge`: The age of the oldest unacknowledged message | |
- `PullAckRequestCount`: The amount of pull ack request count |
Can you elaborate what "pull ack request count" means? This might be unclear for people that are new to this scaler
@tomkerkhove Thanks for your review! I decide to close this PR first and wait for the discussion on kedacore/keda#4243 |
Checklist
Ref
kedacore/keda#4239