Using Topology Spread Constraints to Spread Resources
ClusterResourcePlacement
API to fine-tune Fleet scheduling decisionsThis how-to guide discusses how to use topology spread constraints to fine-tune how Fleet picks clusters for resource placement.
Topology spread constraints are features in the ClusterResourcePlacement
API, specifically
the scheduling policy section. Generally speaking, these constraints can help you spread
resources evenly across different groups of clusters in your fleet; or in other words, it
assures that Fleet will not pick too many clusters from one group, and too little from another.
You can use topology spread constraints to, for example:
- achieve high-availability for your database backend by making sure that there is at least one database replica in each region; or
- verify if your application can support clusters of different configurations; or
- eliminate resource utilization hotspots in your infrastructure through spreading jobs evenly across sections.
Specifying a topology spread constraint
A topology spread constraint consists of three fields:
topologyKey
is a label key which Fleet uses to split your clusters from a fleet into different groups.Specifically, clusters are grouped by the label values they have. For example, if you have three clusters in a fleet:
- cluster
bravelion
with the labelsystem=critical
andregion=east
; and - cluster
smartfish
with the labelsystem=critical
andregion=west
; and - cluster
jumpingcat
with the labelsystem=normal
andregion=east
,
and you use
system
as the topology key, the clusters will be split into 2 groups:- group 1 with cluster
bravelion
andsmartfish
, as they both have the valuecritical
for labelsystem
; and - group 2 with cluster
jumpingcat
, as it has the valuenormal
for labelsystem
.
Note that the splitting concerns only one label
system
; other labels, such asregion
, do not count.If a cluster does not have the given topology key, it does not belong to any group. Fleet may still pick this cluster, as placing resources on it does not violate the associated topology spread constraint.
This is a required field.
- cluster
maxSkew
specifies how unevenly resource placements are spread in your fleet.The skew of a set of resource placements are defined as the difference in count of resource placements between the group with the most and the group with the least, as split by the topology key.
For example, in the fleet described above (3 clusters, 2 groups):
- if Fleet picks two clusters from group A, but none from group B, the skew would be
2 - 0 = 2
; however, - if Fleet picks one cluster from group A and one from group B, the skew would be
1 - 1 = 0
.
The minimum value of
maxSkew
is 1. The less you set this value with, the more evenly resource placements are spread in your fleet.This is a required field.
Note
Naturally,
maxSkew
only makes sense when there are no less than two groups. If you set a topology key that will not split the Fleet at all (i.e., all clusters with the given topology key has exactly the same value), the associated topology spread constraint will take no effect.- if Fleet picks two clusters from group A, but none from group B, the skew would be
whenUnsatisfiable
specifies what Fleet would do when it exhausts all options to satisfy the topology spread constraint; that is, picking any cluster in the fleet would lead to a violation.Two options are available:
DoNotSchedule
: with this option, Fleet would guarantee that the topology spread constraint will be enforced all time; scheduling may fail if there is simply no possible way to satisfy the topology spread constraint.ScheduleAnyway
: with this option, Fleet would enforce the topology spread constraint in a best-effort manner; Fleet may, however, pick clusters that would violate the topology spread constraint if there is no better option.
This is an optional field; if you do not specify a value, Fleet will use
DoNotSchedule
by default.
Below is an example of topology spread constraint, which tells Fleet to pick clusters evenly
from different groups, split based on the value of the label system
:
apiVersion: placement.kubernetes-fleet.io/v1beta1
kind: ClusterResourcePlacement
metadata:
name: crp
spec:
resourceSelectors:
- ...
policy:
placementType: PickN
numberOfClusters: 3
topologySpreadConstraints:
- maxSkew: 2
topologyKey: system
whenUnsatisfiable: DoNotSchedule
How Fleet enforces topology spread constraints: topology spread scores
When you specify some topology spread constraints in the scheduling policy of
a ClusterResourcePlacement
object, Fleet will start picking clusters one at a time.
More specifically, Fleet will:
for each cluster in the fleet, evaluate how skew would change if resources were placed on it.
Depending on the current spread of resource placements, there are three possible outcomes:
- placing resources on the cluster reduces the skew by 1; or
- placing resources on the cluster has no effect on the skew; or
- placing resources on the cluster increases the skew by 1.
Fleet would then assign a topology spread score to the cluster:
if the provisional placement reduces the skew by 1, the cluster receives a topology spread score of 1; or
if the provisional placement has no effect on the skew, the cluster receives a topology spread score of 0; or
if the provisional placement increases the skew by 1, but does not yet exceed the max skew specified in the constraint, the cluster receives a topology spread score of -1; or
if the provisional placement increases the skew by 1, and has exceeded the max skew specified in the constraint,
- for topology spread constraints with the
ScheduleAnyway
effect, the cluster receives a topology spread score of -1000; and - for those with the
DoNotSchedule
effect, the cluster will be removed from resource placement consideration.
- for topology spread constraints with the
rank the clusters based on the topology spread score and other factors (e.g., affinity), pick the one that is most appropriate.
repeat the process, until all the needed count of clusters are found.
Below is an example that illustrates the process:
Suppose you have a fleet of 4 clusters:
- cluster
bravelion
, with labelregion=east
andsystem=critical
; and - cluster
smartfish
, with labelregion=east
; and - cluster
jumpingcat
, with labelregion=west
, andsystem=critical
; and - cluster
flyingpenguin
, with labelregion=west
,
And you have created a ClusterResourcePlacement
as follows:
apiVersion: placement.kubernetes-fleet.io/v1beta1
kind: ClusterResourcePlacement
metadata:
name: crp
spec:
resourceSelectors:
- ...
policy:
placementType: PickN
numberOfClusters: 2
topologySpreadConstraints:
- maxSkew: 1
topologyKey: region
whenUnsatisfiable: DoNotSchedule
Fleet will first scan all the 4 clusters in the fleet; they all have the region
label, with
two different values east
and west
(2 cluster in each of them). This divides the clusters
into two groups, the east
and the west
At this stage, no cluster has been picked yet, so there is no resource placement at all. The
current skew is thus 0, and placing resources on any of them would increase the skew by 1. This
is still below the maxSkew
threshold given, so all clusters would receive a topology spread
score of -1.
Fleet could not find the most appropriate cluster based on the topology spread score so far,
so it would resort to other measures for ranking clusters. This would lead Fleet to pick cluster
smartfish
.
Note
See Using
ClusterResourcePlacement
to Place Resources How-To Guide for more information on how Fleet picks clusters.
Now, one cluster has been picked, and one more is needed by the ClusterResourcePlacement
object (as the numberOfClusters
field is set to 2). Fleet scans the left 3 clusters again,
and this time, since smartfish
from group east
has been picked, any more resource placement
on clusters from group east
would increase the skew by 1 more, and would lead to violation
of the topology spread constraint; Fleet will then assign the topology spread score of -1000 to
cluster bravelion
, which is in group east
. On the contrary, picking a cluster from any
cluster in group west
would reduce the skew by 1, so Fleet assigns the topology spread score
of 1 to cluster jumpingcat
and flyingpenguin
.
With the higher topology spread score, jumpingcat
and flyingpenguin
become the leading
candidate in ranking. They have the same topology spread score, and based on the rules Fleet
has for picking clusters, jumpingcat
would be picked finally.
Using multiple topology spread constraints
You can, if necessary, use multiple topology spread constraints. Fleet will evaluate each of them
separately, and add up topology spread scores for each cluster for the final ranking. A cluster
would be removed from resource placement consideration if placing resources on it would violate
any one of the DoNotSchedule
topology spread constraints.
Below is an example where two topology spread constraints are used:
apiVersion: placement.kubernetes-fleet.io/v1beta1
kind: ClusterResourcePlacement
metadata:
name: crp
spec:
resourceSelectors:
- ...
policy:
placementType: PickN
numberOfClusters: 2
topologySpreadConstraints:
- maxSkew: 2
topologyKey: region
whenUnsatisfiable: DoNotSchedule
- maxSkew: 3
topologyKey: environment
whenUnsatisfiable: ScheduleAnyway
Note
It might be very difficult to find candidate clusters when multiple topology spread constraints are added. Considering using the
ScheduleAnyway
effect to add some leeway to the scheduling, if applicable.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can further improve.
Sorry to hear that. Please tell us how we can fix the experience for you.