Skip to content

Commit c017ba7

Browse files
committed
Force volumes to unique nodes for production environments
1 parent 211062e commit c017ba7

File tree

6 files changed

+155
-4
lines changed

6 files changed

+155
-4
lines changed

examples/production-cluster.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
apiVersion: "database.arangodb.com/v1alpha"
2+
kind: "ArangoDeployment"
3+
metadata:
4+
name: "production-cluster"
5+
spec:
6+
mode: Cluster
7+
image: arangodb/arangodb:3.3.10
8+
environment: Production

pkg/apis/deployment/v1alpha/environment.go

+5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ func (e Environment) Validate() error {
4747
}
4848
}
4949

50+
// IsProduction returns true when the given environment is a production environment.
51+
func (e Environment) IsProduction() bool {
52+
return e == EnvironmentProduction
53+
}
54+
5055
// NewEnvironment returns a reference to a string with given value.
5156
func NewEnvironment(input Environment) *Environment {
5257
return &input

pkg/deployment/resources/pvcs.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ func (r *Resources) EnsurePVCs() error {
4343
owner := apiObject.AsOwner()
4444
iterator := r.context.GetServerGroupIterator()
4545
status := r.context.GetStatus()
46+
enforceAntiAffinity := r.context.GetSpec().GetEnvironment().IsProduction()
4647

4748
if err := iterator.ForeachServerGroup(func(group api.ServerGroup, spec api.ServerGroupSpec, status *api.MemberStatusList) error {
4849
for _, m := range *status {
@@ -51,7 +52,7 @@ func (r *Resources) EnsurePVCs() error {
5152
role := group.AsRole()
5253
resources := spec.Resources
5354
finalizers := r.createPVCFinalizers(group)
54-
if err := k8sutil.CreatePersistentVolumeClaim(kubecli, m.PersistentVolumeClaimName, deploymentName, ns, storageClassName, role, resources, finalizers, owner); err != nil {
55+
if err := k8sutil.CreatePersistentVolumeClaim(kubecli, m.PersistentVolumeClaimName, deploymentName, ns, storageClassName, role, enforceAntiAffinity, resources, finalizers, owner); err != nil {
5556
return maskAny(err)
5657
}
5758
}

pkg/storage/pv_creator.go

+130-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import (
3232
"sort"
3333
"strconv"
3434
"strings"
35+
"time"
3536

3637
"k8s.io/apimachinery/pkg/api/resource"
3738

@@ -41,6 +42,8 @@ import (
4142

4243
api "github.com/arangodb/kube-arangodb/pkg/apis/storage/v1alpha"
4344
"github.com/arangodb/kube-arangodb/pkg/storage/provisioner"
45+
"github.com/arangodb/kube-arangodb/pkg/util/constants"
46+
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
4447
)
4548

4649
const (
@@ -72,7 +75,24 @@ func (ls *LocalStorage) createPVs(ctx context.Context, apiObject *api.ArangoLoca
7275
clients[i], clients[j] = clients[j], clients[i]
7376
})
7477

78+
var nodeClientMap map[string]provisioner.API
7579
for i, claim := range unboundClaims {
80+
// Find deployment name & role in the claim (if any)
81+
deplName, role, enforceAniAffinity := getDeploymentInfo(claim)
82+
allowedClients := clients
83+
if enforceAniAffinity && deplName != "" {
84+
// Select nodes to choose from such that no volume in group lands on the same node
85+
if nodeClientMap == nil {
86+
nodeClientMap = createNodeClientMap(ctx, clients)
87+
}
88+
var err error
89+
allowedClients, err = ls.filterAllowedNodes(nodeClientMap, deplName, role)
90+
if err != nil {
91+
log.Warn().Err(err).Msg("Failed to filter allowed nodes")
92+
continue // We'll try this claim again later
93+
}
94+
}
95+
7696
// Find size of PVC
7797
volSize := defaultVolumeSize
7898
if reqStorage := claim.Spec.Resources.Requests.StorageEphemeral(); reqStorage != nil {
@@ -81,7 +101,7 @@ func (ls *LocalStorage) createPVs(ctx context.Context, apiObject *api.ArangoLoca
81101
}
82102
}
83103
// Create PV
84-
if err := ls.createPV(ctx, apiObject, clients, i, volSize); err != nil {
104+
if err := ls.createPV(ctx, apiObject, allowedClients, i, volSize, claim, deplName, role); err != nil {
85105
log.Error().Err(err).Msg("Failed to create PersistentVolume")
86106
}
87107
}
@@ -90,7 +110,7 @@ func (ls *LocalStorage) createPVs(ctx context.Context, apiObject *api.ArangoLoca
90110
}
91111

92112
// createPV creates a PersistentVolume.
93-
func (ls *LocalStorage) createPV(ctx context.Context, apiObject *api.ArangoLocalStorage, clients []provisioner.API, clientsOffset int, volSize int64) error {
113+
func (ls *LocalStorage) createPV(ctx context.Context, apiObject *api.ArangoLocalStorage, clients []provisioner.API, clientsOffset int, volSize int64, claim v1.PersistentVolumeClaim, deploymentName, role string) error {
94114
log := ls.deps.Log
95115
// Try clients
96116
for clientIdx := 0; clientIdx < len(clients); clientIdx++ {
@@ -131,6 +151,10 @@ func (ls *LocalStorage) createPV(ctx context.Context, apiObject *api.ArangoLocal
131151
v1.AlphaStorageNodeAffinityAnnotation: nodeAff,
132152
nodeNameAnnotation: info.NodeName,
133153
},
154+
Labels: map[string]string{
155+
k8sutil.LabelKeyArangoDeployment: deploymentName,
156+
k8sutil.LabelKeyRole: role,
157+
},
134158
},
135159
Spec: v1.PersistentVolumeSpec{
136160
Capacity: v1.ResourceList{
@@ -147,6 +171,13 @@ func (ls *LocalStorage) createPV(ctx context.Context, apiObject *api.ArangoLocal
147171
},
148172
StorageClassName: apiObject.Spec.StorageClass.Name,
149173
VolumeMode: &volumeMode,
174+
ClaimRef: &v1.ObjectReference{
175+
Kind: "PersistentVolumeClaim",
176+
APIVersion: "",
177+
Name: claim.GetName(),
178+
Namespace: claim.GetNamespace(),
179+
UID: claim.GetUID(),
180+
},
150181
},
151182
}
152183
// Attach PV to ArangoLocalStorage
@@ -159,6 +190,16 @@ func (ls *LocalStorage) createPV(ctx context.Context, apiObject *api.ArangoLocal
159190
Str("name", pvName).
160191
Str("node-name", info.NodeName).
161192
Msg("Created PersistentVolume")
193+
194+
// Bind claim to volume
195+
if err := ls.bindClaimToVolume(claim, pv.GetName()); err != nil {
196+
// Try to delete the PV now
197+
if err := ls.deps.KubeCli.CoreV1().PersistentVolumes().Delete(pv.GetName(), &metav1.DeleteOptions{}); err != nil {
198+
log.Error().Err(err).Msg("Failed to delete PV after binding PVC failed")
199+
}
200+
return maskAny(err)
201+
}
202+
162203
return nil
163204
}
164205
}
@@ -204,3 +245,90 @@ func createNodeAffinity(nodeName string) (string, error) {
204245
}
205246
return string(encoded), nil
206247
}
248+
249+
// createNodeClientMap creates a map from node name to API.
250+
// Clients that do not respond properly on a GetNodeInfo request are
251+
// ignored.
252+
func createNodeClientMap(ctx context.Context, clients []provisioner.API) map[string]provisioner.API {
253+
result := make(map[string]provisioner.API)
254+
for _, c := range clients {
255+
if info, err := c.GetNodeInfo(ctx); err == nil {
256+
result[info.NodeName] = c
257+
}
258+
}
259+
return result
260+
}
261+
262+
// getDeploymentInfo returns the name of the deployment that created the given claim,
263+
// the role of the server that the claim is used for and the value for `enforceAntiAffinity`.
264+
// If not found, empty strings are returned.
265+
// Returns deploymentName, role, enforceAntiAffinity.
266+
func getDeploymentInfo(pvc v1.PersistentVolumeClaim) (string, string, bool) {
267+
deploymentName := pvc.GetLabels()[k8sutil.LabelKeyArangoDeployment]
268+
role := pvc.GetLabels()[k8sutil.LabelKeyRole]
269+
enforceAntiAffinity, _ := strconv.ParseBool(pvc.GetAnnotations()[constants.AnnotationEnforceAntiAffinity]) // If annotation empty, this will yield false.
270+
return deploymentName, role, enforceAntiAffinity
271+
}
272+
273+
// filterAllowedNodes returns those clients that do not yet have a volume for the given deployment name & role.
274+
func (ls *LocalStorage) filterAllowedNodes(clients map[string]provisioner.API, deploymentName, role string) ([]provisioner.API, error) {
275+
// Find all PVs for given deployment & role
276+
list, err := ls.deps.KubeCli.CoreV1().PersistentVolumes().List(metav1.ListOptions{
277+
LabelSelector: fmt.Sprintf("%s=%s,%s=%s", k8sutil.LabelKeyArangoDeployment, deploymentName, k8sutil.LabelKeyRole, role),
278+
})
279+
if err != nil {
280+
return nil, maskAny(err)
281+
}
282+
excludedNodes := make(map[string]struct{})
283+
for _, pv := range list.Items {
284+
nodeName := pv.GetAnnotations()[nodeNameAnnotation]
285+
excludedNodes[nodeName] = struct{}{}
286+
}
287+
result := make([]provisioner.API, 0, len(clients))
288+
for nodeName, c := range clients {
289+
if _, found := excludedNodes[nodeName]; !found {
290+
result = append(result, c)
291+
}
292+
}
293+
return result, nil
294+
}
295+
296+
// bindClaimToVolume tries to bind the given claim to the volume with given name.
297+
// If the claim has been updated, the function retries several times.
298+
func (ls *LocalStorage) bindClaimToVolume(claim v1.PersistentVolumeClaim, volumeName string) error {
299+
log := ls.deps.Log.With().Str("pvc-name", claim.GetName()).Str("volume-name", volumeName).Logger()
300+
pvcs := ls.deps.KubeCli.CoreV1().PersistentVolumeClaims(claim.GetNamespace())
301+
302+
for attempt := 0; attempt < 10; attempt++ {
303+
// Backoff if needed
304+
time.Sleep(time.Millisecond * time.Duration(10*attempt))
305+
306+
// Fetch latest version of claim
307+
updated, err := pvcs.Get(claim.GetName(), metav1.GetOptions{})
308+
if k8sutil.IsNotFound(err) {
309+
return maskAny(err)
310+
} else if err != nil {
311+
log.Warn().Err(err).Msg("Failed to load updated PersistentVolumeClaim")
312+
continue
313+
}
314+
315+
// Check claim. If already bound, bail out
316+
if !pvcNeedsVolume(*updated) {
317+
return maskAny(fmt.Errorf("PersistentVolumeClaim '%s' no longer needs a volume", claim.GetName()))
318+
}
319+
320+
// Try to bind
321+
updated.Spec.VolumeName = volumeName
322+
if _, err := pvcs.Update(updated); k8sutil.IsConflict(err) {
323+
// Claim modified already, retry
324+
log.Debug().Err(err).Msg("PersistentVolumeClaim has been modified. Retrying.")
325+
} else if err != nil {
326+
log.Error().Err(err).Msg("Failed to bind PVC to volume")
327+
return maskAny(err)
328+
}
329+
log.Debug().Msg("Bound volume to PersistentVolumeClaim")
330+
return nil
331+
}
332+
log.Error().Msg("All attempts to bind PVC to volume failed")
333+
return maskAny(fmt.Errorf("All attempts to bind PVC to volume failed"))
334+
}

pkg/util/constants/constants.go

+2
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ const (
4848
FinalizerPodAgencyServing = "agent.database.arangodb.com/agency-serving" // Finalizer added to Agents, indicating the need for keeping enough agents alive
4949
FinalizerPVCMemberExists = "pvc.database.arangodb.com/member-exists" // Finalizer added to PVCs, indicating the need to keep is as long as its member exists
5050
FinalizerDeplReplStopSync = "replication.database.arangodb.com/stop-sync" // Finalizer added to ArangoDeploymentReplication, indicating the need to stop synchronization
51+
52+
AnnotationEnforceAntiAffinity = "database.arangodb.com/enforce-anti-affinity" // Key of annotation added to PVC. Value is a boolean "true" or "false"
5153
)

pkg/util/k8sutil/pvc.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@
2323
package k8sutil
2424

2525
import (
26+
"strconv"
27+
2628
"k8s.io/api/core/v1"
2729
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2830
"k8s.io/client-go/kubernetes"
31+
32+
"github.com/arangodb/kube-arangodb/pkg/util/constants"
2933
)
3034

3135
// IsPersistentVolumeClaimMarkedForDeletion returns true if the pod has been marked for deletion.
@@ -42,14 +46,17 @@ func CreatePersistentVolumeClaimName(deploymentName, role, id string) string {
4246
// CreatePersistentVolumeClaim creates a persistent volume claim with given name and configuration.
4347
// If the pvc already exists, nil is returned.
4448
// If another error occurs, that error is returned.
45-
func CreatePersistentVolumeClaim(kubecli kubernetes.Interface, pvcName, deploymentName, ns, storageClassName, role string, resources v1.ResourceRequirements, finalizers []string, owner metav1.OwnerReference) error {
49+
func CreatePersistentVolumeClaim(kubecli kubernetes.Interface, pvcName, deploymentName, ns, storageClassName, role string, enforceAntiAffinity bool, resources v1.ResourceRequirements, finalizers []string, owner metav1.OwnerReference) error {
4650
labels := LabelsForDeployment(deploymentName, role)
4751
volumeMode := v1.PersistentVolumeFilesystem
4852
pvc := &v1.PersistentVolumeClaim{
4953
ObjectMeta: metav1.ObjectMeta{
5054
Name: pvcName,
5155
Labels: labels,
5256
Finalizers: finalizers,
57+
Annotations: map[string]string{
58+
constants.AnnotationEnforceAntiAffinity: strconv.FormatBool(enforceAntiAffinity),
59+
},
5360
},
5461
Spec: v1.PersistentVolumeClaimSpec{
5562
AccessModes: []v1.PersistentVolumeAccessMode{

0 commit comments

Comments
 (0)