Scale to Zero
OpenFaaS PRO offers an additional component that can be used to scale idle functions to zero replicas. When scaled to zero, functions do not consume CPU or memory, and are then scaled back to the minimum desired amount of replicas upon first use.
Installation
You can enable Scale to Zero using arkade or helm.
Learn how to enable Scale to Zero using the helm chart.
Usage
Once enabled in your cluster, you can opt functions into being scaled to zero by adding the following label to stack.yml.
Create a new function:
export OPENFAAS_PREFIX=ghcr.io/openfaas
faas-cli new --lang go daily-job
Now add the labels:
version: 1.0
provider:
name: openfaas
gateway: http://127.0.0.1:8080
functions:
daily-job:
labels:
com.openfaas.scale.zero: true
lang: go
handler: ./daily-job
image: ghcr.io/openfaas:daily-job
Once you have deployed and invoked your function, you should see it start to appear in the logs:
kubectl logs -n openfaas deploy/faas-idler -f
Open another terminal to monitor the replicas of your function:
kubectl get -n openfaas-fn deploy/daily-job -w
After the chosen scale to zero period, you will see its replicas scale to zero.
Then, you can invoke the function and you’ll see the function scale up and get invoked again:
echo | faas-cli invoke daily-job
You can learn more about OpenFaaS auto-scaling here: autoscaling