KEDA HTTP Add-On

Documentation for the KEDA HTTP add-on

View project on GitHub

FAQ

Why does this project route HTTP requests?

In order to autoscale a workload, KEDA-HTTP needs to be involved with routing HTTP requests. However, the project is minimally involved with routing and we’re working on ways to get out of the “critical path” of an HTTP request as much as possible. For more information, please see our scope document.

How is this project similar or different from Osiris?

Osiris and KEDA-HTTP have similar features:

However, Osiris and KEDA-HTTP differ in several ways:

  • Autoscaling concerns are implemented separately from the application resources - Service, Ingress, Deployment, StatefulSet, /scale and more in KEDA-HTTP. With Osiris, those concerns are baked into each app resource.
  • The KEDA-HTTP operator can automatically deploy and configure networking and compute resources necessary for an HTTP application to autoscale. Osiris does not have this functionality.
  • Osiris is currently archived in GitHub.

How is this project similar or different from Knative?

Knative Serving and KEDA-HTTP both have core support for autoscaling, including scale-to-zero of compute workloads. KEDA-HTTP is focused solely on deploying production-grade autoscaling HTTP applications, while Knative builds in additional functionality:

Additionally, Knative supports a service mesh, while KEDA-HTTP does not out of the box (support for that is forthcoming).

How is this project similar or different from OpenFaaS

OpenFaaS and KEDA-HTTP both can deploy and autoscale HTTP workloads onto Kubernetes, but they have several important differences that make them suitable for different use cases:

  • OpenFaaS requires the use of a CLI to deploy code to production.
  • OpenFaaS primarily supports the event-based “functions as a service” pattern. This means:
    • You deploy code, in a supported language, to handle an HTTP request and OpenFaaS takes care of serving and invoking your code for you.
    • You deploy complete containers with your HTTP server process in them to KEDA-HTTP.
  • You don’t need to build a container image to deploy code to OpenFaaS, while you do to deploy to KEDA-HTTP.
  • OpenFaaS can run either on or off Kubernetes, while KEDA-HTTP is Kubernetes-only.
  • OpenFaaS requires several additional components when running in Kubernetes, like Prometheus. The documentation refers to this as the PLONK stack.

Go back to landing page