An autoscaler for Jitsi instances (jibri
, sip-jibri
, jigasi
, JVB
, nomad
), which are deployed in one of the following ways:
- as a parameterized Nomad batch job
- as an Instance in Oracle Cloud
- as a Droplet in Digital Ocean
- custom deployment model
The autoscaler manages multiple groups
of instances, each having a type
(jibri
, sip-jibri
, jigasi
, JVB
, nomad
) and being deployed in a specific cloud
(oracle
, digitalocean
, custom
).
The autoscaler knows the Jitsi instances status and communicates with them via the jitsi-autoscaler-sidecar, which needs to be co-located on each Jitsi instance. The sidecar periodically checks in with the autoscaler via a REST call and sends its status. As a response of the check-in operation, the sidecar receives commands from the autoscaler, such as: terminate or reconfigure the Jitsi instance.
graph LR
subgraph jitsi-instance1
autoscaler-sidecar1-- Get status/stress -->jitsi-component1
end
subgraph jitsi-instance2
autoscaler-sidecar2-- Get status/stress -->jitsi-component2
end
autoscaler-sidecar2-- Send status/stress -->Autoscaler
Autoscaler-. Reply with command .->autoscaler-sidecar2
autoscaler-sidecar1-- Send status/stress -->Autoscaler
Autoscaler-. Reply with command .->autoscaler-sidecar1
Autoscaler-- Launch/Read Instances -->CloudProvider
Autoscaler<-- Groups, Instances, Stress over time, Jobs -->Redis
For each group
, the autoscaler periodically does the following processing:
Launch
: checks how many instances the group has and compares them with the group'sdesired
count. Based on this, it will either launch new instances, or ask the sidecar of those instances to kill themAutoscale
: checks the metrics which are periodically sent by the sidecar, and according to the group'sscalingOptions
, decides whether to increase or decrease the group'sdesired
countSanity
: checks if the instances seen by the autoscaler via their sidecar match the ones found directly in the cloud provider
graph LR
subgraph Autoscaler
JobManager-- Process Launch Job -->InstanceLauncher
JobManager-- Process Scale Job -->AutoscaleProcessor
JobManager-- Process Sanity Job -->SanityLoop
end
JobManager-- Add Jobs per group and job type -->BeeQueue/Redis
BeeQueue/Redis-- Read Job -->JobManager
AutoscaleProcessor-- Read group and stress values -->Redis
AutoscaleProcessor-- Save new desired -->Redis
InstanceLauncher-- Read group and instances -->Redis
InstanceLauncher-- Mark instance as terminated -->Redis
InstanceLauncher-- Launch instance -->CloudProvider
SanityLoop-- Read group -->Redis
SanityLoop-- Read cloud instances --> CloudProvider
SanityLoop-- Save untracked --> Redis
The autoscaler exposes a REST API for CRUD operations over groups, as well as orchestrating specific behaviour for one or a set of groups.
For each group
you can enable/disable types of behaviour via the following properties:
enableLaunch
- whether theLaunch
processing is enabledenableAutoScale
- whether theAutoscale
processing is enabledenableScheduler
- whether afull-scaling
update (seePUT /groups/options/full-scaling
) will also update this group; this kind of update is usually done by an external scheduler, wanting to do bulk group scale up/down at a certain timeenableUntrackedThrottle
- whether launching new instances will happen only if there aren't too many untracked instancesenableReconfiguration
- whether thereconfiguration
action is enabled (seePOST /groups/:name/actions/reconfigure-instances
)
Additionally, the autoscaler provides REST APIs for introspection covering:
- Group
report
- current status of the group (e.g. how many instances are available, how many are used etc.), together with the status of the instances managed by the group - Group/Instance
Audit
- past actions of the group/instance, e.g. history of autoscaling decisions, history of launch/terminate operations etc
npm install
npm run build
You can find the build in dist/
. There's only one bundled file there - main.js
.
npm run build
npm run start
or after the build is done:
node dist/main.js
You must specify the path to a groups.json
file as an environment variable. We read the groups for autoscaling from there.
To run the demo docker-compose setup, all config must be added to the config/ directory. The following commands may then be used:
docker-compose -f demo/docker-compose.yml build
docker-compose -f demo/docker-compose.yml up
docker-compose -f demo/docker-compose.yml down