Replies: 6 comments 5 replies
-
@tidunguyen the HTTP Addon just creates a |
Beta Was this translation helpful? Give feedback.
-
Facing similar situation. I need to add a trigger based on messages in a queue. It is possible that both the http and message based trigger to happen at the same time. Is there any recommendations on how to either use additional triggers on http scaledobject or have multiple scaled objects that do not interfere with each other? |
Beta Was this translation helpful? Give feedback.
-
In our scenario we would use the http-add-on to trigger scale up. Processing requests take a long time, so is solved with polling directly to the respective pod instead. Is there a way to keep pods alive until their cpu usage drops down? |
Beta Was this translation helpful? Give feedback.
-
I am trying to save on costs when no one uses the preview environments. Can anything support suspending the cronjobs when API is at zero or mirroring scale down to another deployment? Possibly something like this:
|
Beta Was this translation helpful? Give feedback.
-
I have a similar request. I would like to use the Http-Add-On to scale the app TO ZERO during inactivity periods, but once "awake" I would like to scale based on other metrics, like avg response time... is it possible? To avoid flapping, the http scaler would have a Max of 1 and a min of 0, because the "one" triggers, the app will start pumping other metrics which would control the "from 1 to Max" |
Beta Was this translation helpful? Give feedback.
-
I had a similar idea to wake up the deployment based on the http-scaler and then scale based on cpu. This walkthrough describes how to combine HTTPScaledObject with other ScaledObjects: https://github.com/kedacore/http-add-on/blob/main/docs/walkthrough.md#integrating-http-add-on-scaler-with-other-keda-scalers |
Beta Was this translation helpful? Give feedback.
-
I want to use multiple triggers for my deployment. How can I combine this tool with other Keda triggers so that my app can be activated whenever any trigger run.
I tried to edit the auto-created ScaledObject created by this controller and managed to trigger the app. However, it does not work as expected in several cases. For example:
What is the idiomatic way to do this or this use case is not yet supported and is supposed to give undefined behaviors?
Beta Was this translation helpful? Give feedback.
All reactions