Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add KEDA autoscaling support for Langfuse components
This PR adds KEDA (Kubernetes Event-driven Autoscaling) support for both Langfuse web and worker components, providing more flexible autoscaling options beyond the standard Horizontal Pod Autoscaler (HPA).
Changes
KEDA is a single-purpose and lightweight component that can be added into any Kubernetes cluster. KEDA works alongside standard Kubernetes components like the Horizontal Pod Autoscaler and can extend functionality without overwriting or duplication.
Many companies prefer KEDA over traditional HPA
Important
Add KEDA autoscaling support for Langfuse web and worker components, ensuring exclusivity with HPA.
values.yaml
.scaled-object.yaml
for both web and worker to define KEDA ScaledObject resources.deployment.yaml
for web and worker to conditionally set replicas based on KEDA and HPA status.hpa.yaml
for web and worker to disable HPA when KEDA is enabled.This description was created by
for 475c92a. It will automatically update as commits are pushed.