1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/pkg/replication/deployment_replication.go
2024-02-08 15:25:48 +01:00

399 lines
13 KiB
Go

//
// DISCLAIMER
//
// Copyright 2016-2024 ArangoDB GmbH, Cologne, Germany
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package replication
import (
"context"
"fmt"
"reflect"
"sync/atomic"
"time"
"github.com/rs/zerolog"
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/tools/record"
"github.com/arangodb/arangosync-client/client"
api "github.com/arangodb/kube-arangodb/pkg/apis/replication/v1"
"github.com/arangodb/kube-arangodb/pkg/logging"
"github.com/arangodb/kube-arangodb/pkg/util/errors"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil/kerrors"
"github.com/arangodb/kube-arangodb/pkg/util/kclient"
"github.com/arangodb/kube-arangodb/pkg/util/retry"
"github.com/arangodb/kube-arangodb/pkg/util/timer"
"github.com/arangodb/kube-arangodb/pkg/util/trigger"
)
var logger = logging.Global().RegisterAndGetLogger("deployment-replication", logging.Info)
// Config holds configuration settings for a DeploymentReplication
type Config struct {
Namespace string
}
// Dependencies holds dependent services for a DeploymentReplication
type Dependencies struct {
Client kclient.Client
EventRecorder record.EventRecorder
}
// deploymentReplicationEvent strongly typed type of event
type deploymentReplicationEventType string
const (
eventArangoDeploymentReplicationUpdated deploymentReplicationEventType = "DeploymentReplicationUpdated"
)
// seploymentReplicationEvent holds an event passed from the controller to the deployment replication.
type deploymentReplicationEvent struct {
Type deploymentReplicationEventType
DeploymentReplication *api.ArangoDeploymentReplication
}
const (
deploymentReplicationEventQueueSize = 100
minInspectionInterval = time.Second // Ensure we inspect the generated resources no less than with this interval
maxInspectionInterval = time.Minute // Ensure we inspect the generated resources no less than with this interval
cancellationInterval = time.Second * 5
)
// DeploymentReplication is the in process state of an ArangoDeploymentReplication.
type DeploymentReplication struct {
log logging.Logger
lastLog time.Time
apiObject *api.ArangoDeploymentReplication // API object
status api.DeploymentReplicationStatus // Internal status of the CR
config Config
deps Dependencies
metrics Metrics
eventCh chan *deploymentReplicationEvent
stopCh chan struct{}
stopped int32
inspectTrigger trigger.Trigger
recentInspectionErrors int
clientCache client.ClientCache
}
// New creates a new DeploymentReplication from the given API object.
func New(config Config, deps Dependencies, apiObject *api.ArangoDeploymentReplication) (*DeploymentReplication, error) {
if err := apiObject.Spec.Validate(); err != nil {
return nil, errors.WithStack(err)
}
dr := &DeploymentReplication{
apiObject: apiObject,
status: *(apiObject.Status.DeepCopy()),
config: config,
deps: deps,
eventCh: make(chan *deploymentReplicationEvent, deploymentReplicationEventQueueSize),
stopCh: make(chan struct{}),
}
dr.log = logger.WrapObj(dr)
localInventory.Add(dr)
go dr.run()
return dr, nil
}
// Update the deployment replication.
// This sends an update event in the event queue.
func (dr *DeploymentReplication) Update(apiObject *api.ArangoDeploymentReplication) {
dr.send(&deploymentReplicationEvent{
Type: eventArangoDeploymentReplicationUpdated,
DeploymentReplication: apiObject,
})
}
// Delete the deployment replication.
// Called when the CR was deleted by the user.
func (dr *DeploymentReplication) Delete() {
dr.log.Info("deployment replication is deleted by user")
if atomic.CompareAndSwapInt32(&dr.stopped, 0, 1) {
close(dr.stopCh)
}
}
// send given event into the deployment replication event queue.
func (dr *DeploymentReplication) send(ev *deploymentReplicationEvent) {
select {
case dr.eventCh <- ev:
l, ecap := len(dr.eventCh), cap(dr.eventCh)
if l > int(float64(ecap)*0.8) {
dr.log.
Int("used", l).
Int("capacity", ecap).
Warn("event queue buffer is almost full")
}
case <-dr.stopCh:
}
}
// run is the core the core worker.
// It processes the event queue and polls the state of generated
// resource on a regular basis.
func (dr *DeploymentReplication) run() {
log := dr.log
// Add finalizers
if err := dr.addFinalizers(); err != nil {
log.Err(err).Warn("Failed to add finalizers")
}
inspectionInterval := maxInspectionInterval
dr.inspectTrigger.Trigger()
for {
select {
case <-dr.stopCh:
// We're being stopped.
return
case event := <-dr.eventCh:
// Got event from event queue
switch event.Type {
case eventArangoDeploymentReplicationUpdated:
if err := dr.handleArangoDeploymentReplicationUpdatedEvent(event); err != nil {
dr.failOnError(err, "Failed to handle deployment replication update")
return
}
default:
panic("unknown event type" + event.Type)
}
case <-dr.inspectTrigger.Done():
inspectionInterval = dr.inspectDeploymentReplication(inspectionInterval)
case <-timer.After(inspectionInterval):
// Trigger inspection
dr.inspectTrigger.Trigger()
// Backoff with next interval
inspectionInterval = time.Duration(float64(inspectionInterval) * 1.5)
if inspectionInterval > maxInspectionInterval {
inspectionInterval = maxInspectionInterval
}
}
}
}
// handleArangoDeploymentReplicationUpdatedEvent is called when the deployment replication is updated by the user.
func (dr *DeploymentReplication) handleArangoDeploymentReplicationUpdatedEvent(event *deploymentReplicationEvent) error {
log := dr.log.Str("deployoment-replication", event.DeploymentReplication.GetName())
repls := dr.deps.Client.Arango().ReplicationV1().ArangoDeploymentReplications(dr.apiObject.GetNamespace())
// Get the most recent version of the deployment replication from the API server
current, err := repls.Get(context.Background(), dr.apiObject.GetName(), meta.GetOptions{})
if err != nil {
log.Err(err).Debug("Failed to get current version of deployment replication from API server")
if kerrors.IsNotFound(err) {
return nil
}
return errors.WithStack(err)
}
newAPIObject := current.DeepCopy()
newAPIObject.Spec.SetDefaults()
newAPIObject.Status = dr.status
resetFields := dr.apiObject.Spec.ResetImmutableFields(&newAPIObject.Spec)
if len(resetFields) > 0 {
log.Strs("fields", resetFields...).Debug("Found modified immutable fields")
}
if err := newAPIObject.Spec.Validate(); err != nil {
dr.createEvent(k8sutil.NewErrorEvent("Validation failed", err, dr.apiObject))
// Try to reset object
if err := dr.updateCRSpec(dr.apiObject.Spec); err != nil {
log.Err(err).Error("Restore original spec failed")
dr.createEvent(k8sutil.NewErrorEvent("Restore original failed", err, dr.apiObject))
}
return nil
}
if len(resetFields) > 0 {
for _, fieldName := range resetFields {
log.Str("field", fieldName).Debug("Reset immutable field")
dr.createEvent(k8sutil.NewImmutableFieldEvent(fieldName, dr.apiObject))
}
}
// Save updated spec
if err := dr.updateCRSpec(newAPIObject.Spec); err != nil {
return errors.WithStack(errors.Errorf("failed to update ArangoDeploymentReplication spec: %v", err))
}
// Trigger inspect
dr.inspectTrigger.Trigger()
return nil
}
// createEvent creates a given event.
// On error, the error is logged.
func (dr *DeploymentReplication) createEvent(evt *k8sutil.Event) {
dr.deps.EventRecorder.Event(evt.InvolvedObject, evt.Type, evt.Reason, evt.Message)
}
// Update the status of the API object from the internal status.
// Has no effect if object is being deleted.
func (dr *DeploymentReplication) updateCRStatus() error {
if dr.apiObject.DeletionTimestamp != nil {
// Object is being removed so nothing can be changed in the resource.
// The field DeploymentReplication.status is updated automatically here.
return nil
}
if reflect.DeepEqual(dr.apiObject.Status, dr.status) {
// Nothing has changed
return nil
}
// Send update to API server
log := dr.log
repls := dr.deps.Client.Arango().ReplicationV1().ArangoDeploymentReplications(dr.apiObject.GetNamespace())
update := dr.apiObject.DeepCopy()
attempt := 0
for {
attempt++
update.Status = dr.status
newAPIObject, err := repls.Update(context.Background(), update, meta.UpdateOptions{})
if err == nil {
// Update internal object
dr.apiObject = newAPIObject
return nil
}
if attempt < 10 && kerrors.IsConflict(err) {
// API object may have been changed already,
// Reload api object and try again
var current *api.ArangoDeploymentReplication
current, err = repls.Get(context.Background(), update.GetName(), meta.GetOptions{})
if err == nil {
update = current.DeepCopy()
continue
}
}
if err != nil {
log.Err(err).Debug("failed to patch ArangoDeploymentReplication status")
return errors.WithStack(errors.Errorf("failed to patch ArangoDeploymentReplication status: %v", err))
}
}
}
// Update the spec part of the API object (d.currentObject)
// to the given object, while preserving the status.
// On success, d.currentObject is updated.
func (dr *DeploymentReplication) updateCRSpec(newSpec api.DeploymentReplicationSpec) error {
log := dr.log
repls := dr.deps.Client.Arango().ReplicationV1().ArangoDeploymentReplications(dr.apiObject.GetNamespace())
// Send update to API server
update := dr.apiObject.DeepCopy()
attempt := 0
for {
attempt++
update.Spec = newSpec
update.Status = dr.status
newAPIObject, err := repls.Update(context.Background(), update, meta.UpdateOptions{})
if err == nil {
// Update internal object
dr.apiObject = newAPIObject
return nil
}
if attempt < 10 && kerrors.IsConflict(err) {
// API object may have been changed already,
// Reload api object and try again
var current *api.ArangoDeploymentReplication
current, err = repls.Get(context.Background(), update.GetName(), meta.GetOptions{})
if err == nil {
update = current.DeepCopy()
continue
}
}
if err != nil {
log.Err(err).Debug("failed to patch ArangoDeploymentReplication spec")
return errors.WithStack(errors.Errorf("failed to patch ArangoDeploymentReplication spec: %v", err))
}
}
}
// failOnError reports the given error and sets the deployment replication status to failed.
func (dr *DeploymentReplication) failOnError(err error, msg string) {
if err != nil {
dr.log.Err(err).Error(msg)
dr.status.Reason = fmt.Sprintf("%s: %s", msg, err.Error())
} else {
dr.log.Error(msg)
dr.status.Reason = msg
}
dr.reportFailedStatus()
}
func (dr *DeploymentReplication) reportInvalidConfigError(isRecoverable bool, err error, msg string) {
details := fmt.Sprintf("%s: %s", msg, err.Error())
if !isRecoverable {
dr.status.Phase = api.DeploymentReplicationPhaseFailed
dr.status.Reason = details
}
dr.status.Conditions.Update(api.ConditionTypeConfigured, false, api.ConditionConfiguredReasonInvalid, details)
if err = dr.updateCRStatus(); err != nil {
dr.log.Err(err).Warn("Failed to update status")
}
}
// reportFailedStatus sets the status of the deployment replication to Failed and keeps trying to forward
// that to the API server.
func (dr *DeploymentReplication) reportFailedStatus() {
repls := dr.deps.Client.Arango().ReplicationV1().ArangoDeploymentReplications(dr.apiObject.GetNamespace())
op := func() error {
dr.status.Phase = api.DeploymentReplicationPhaseFailed
err := dr.updateCRStatus()
if err == nil || kerrors.IsNotFound(err) {
// Status has been updated
return nil
}
if !kerrors.IsConflict(err) {
dr.log.Err(err).Warn("retry report status: fail to update")
return errors.WithStack(err)
}
depl, err := repls.Get(context.Background(), dr.apiObject.Name, meta.GetOptions{})
if err != nil {
// Update (PUT) will return conflict even if object is deleted since we have UID set in object.
// Because it will check UID first and return something like:
// "Precondition failed: UID in precondition: 0xc42712c0f0, UID in object meta: ".
if kerrors.IsNotFound(err) {
return nil
}
dr.log.Err(err).Warn("retry report status: fail to get latest version")
return errors.WithStack(err)
}
dr.apiObject = depl
return errors.WithStack(errors.Errorf("retry needed"))
}
retry.Retry(op, time.Hour*24*365)
}
func (dr *DeploymentReplication) WrapLogger(in *zerolog.Event) *zerolog.Event {
return in.Str("namespace", dr.apiObject.GetNamespace()).Str("name", dr.apiObject.GetName())
}