File size: 39,068 Bytes
95d599c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 | // _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
package replication
import (
"context"
"fmt"
"slices"
"strings"
"sync"
"time"
"github.com/weaviate/weaviate/cluster/replication/metrics"
"github.com/weaviate/weaviate/cluster/schema"
"github.com/weaviate/weaviate/usecases/config/runtime"
"github.com/weaviate/weaviate/usecases/sharding"
"github.com/cenkalti/backoff/v4"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/weaviate/weaviate/cluster/proto/api"
"github.com/weaviate/weaviate/cluster/replication/types"
"github.com/weaviate/weaviate/entities/additional"
enterrors "github.com/weaviate/weaviate/entities/errors"
"github.com/weaviate/weaviate/entities/models"
)
// asyncStatusInterval is the polling interval to check the status of the
// async replication of src->target
const (
asyncStatusInterval = 5 * time.Second
// if async status errors more than 30 times, stop retrying
asyncStatusMaxErrors = 30
// about `asyncStatusInterval` seconds per retry, 120 retries = 10 minutes for async replication
// to complete
asyncStatusMaxRetries = 120
)
// OpConsumer is an interface for consuming replication operations.
type OpConsumer interface {
// Consume starts consuming operations from the provided channel.
// The consumer processes operations, and a buffered channel is typically used to apply backpressure.
// The consumer should return an error if it fails to process any operation.
Consume(ctx context.Context, in <-chan ShardReplicationOpAndStatus) error
}
// DELETED is a constant representing a temporary deleted state of a replication operation that should not be stored in the FSM.
const DELETED = "deleted"
// errOpCancelled is an error indicating that the operation was cancelled.
var errOpCancelled = errors.New("operation cancelled")
// CopyOpConsumer is an implementation of the OpConsumer interface that processes replication operations
// by executing copy operations from a source shard to a target shard. It uses a ReplicaCopier to actually
// carry out the copy operation. Moreover, it supports configurable backoff, timeout and concurrency limits.
type CopyOpConsumer struct {
// logger is used for structured logging throughout the consumer's lifecycle.
// It provides detailed logs for each replication operation and any errors encountered.
logger *logrus.Entry
// ongoingOps is a cache of ongoing operations.
// It is used to prevent duplicate operations from being processed.
ongoingOps *OpsCache
// opsGateway is used to keep track of when task were executed and when we can retry or continue their execution next
// It is used to ensure we backoff when retrying ops and avoid thundering herd problems
opsGateway *OpsGateway
// leaderClient is responsible for interacting with the FSM to update the state of replication operations.
// It is used to update the status of operations during the replication process (e.g. update to HYDRATING state).
leaderClient types.FSMUpdater
// replicaCopier is used to handle the actual copying of replica data from the source shard to the target shard.
// It abstracts the mechanics of data replication and file copying.
replicaCopier types.ReplicaCopier
// schemaReader is used to read the schema
schemaReader schema.SchemaReader
// backoffPolicy defines the retry mechanism for failed operations.
// It allows the consumer to retry replication operations using a backoff strategy in case of failure.
backoffPolicy backoff.BackOff
// maxWorkers sets the maximum number of concurrent workers that will be used to process replication operations.
// It controls the level of parallelism in the replication process allowing multiple replication operations to
// run concurrently.
maxWorkers int
// opTimeout defines the timeout duration for each replication operation.
// It ensures that operations do not hang indefinitely and are retried or terminated after the timeout period.
opTimeout time.Duration
// tokens controls the maximum number of concurrently running consumers
tokens chan struct{}
// nodeId uniquely identifies the node on which this consumer instance is running.
nodeId string
// engineOpCallbacks defines hooks invoked at various stages of a replication operation's lifecycle
// (e.g., pending, start, complete, failure) to support metrics or custom observability logic.
engineOpCallbacks *metrics.ReplicationEngineOpsCallbacks
// asyncReplicationMinimumWait is the duration for the upper time bound for the hash beat.
asyncReplicationMinimumWait *runtime.DynamicValue[time.Duration]
}
type overrides struct {
source additional.AsyncReplicationTargetNodeOverride
target additional.AsyncReplicationTargetNodeOverride
}
func newOverrides(op ShardReplicationOpAndStatus, upperTimeBound int64) overrides {
return overrides{
source: additional.AsyncReplicationTargetNodeOverride{
CollectionID: op.Op.SourceShard.CollectionId,
ShardID: op.Op.SourceShard.ShardId,
TargetNode: op.Op.TargetShard.NodeId,
SourceNode: op.Op.SourceShard.NodeId,
UpperTimeBound: upperTimeBound,
NoDeletionResolution: true,
},
target: additional.AsyncReplicationTargetNodeOverride{
CollectionID: op.Op.SourceShard.CollectionId,
ShardID: op.Op.SourceShard.ShardId,
TargetNode: op.Op.SourceShard.NodeId,
SourceNode: op.Op.TargetShard.NodeId,
UpperTimeBound: upperTimeBound,
NoDeletionResolution: false,
},
}
}
// NewCopyOpConsumer creates a new CopyOpConsumer instance responsible for executing
// replication operations using a configurable worker pool.
//
// It uses a ReplicaCopier to perform the actual data copy.
func NewCopyOpConsumer(
logger *logrus.Logger,
leaderClient types.FSMUpdater,
replicaCopier types.ReplicaCopier,
nodeId string,
backoffPolicy backoff.BackOff,
ongoingOps *OpsCache,
opTimeout time.Duration,
maxWorkers int,
asyncReplicationMinimumWait *runtime.DynamicValue[time.Duration],
engineOpCallbacks *metrics.ReplicationEngineOpsCallbacks,
schemaReader schema.SchemaReader,
) *CopyOpConsumer {
c := &CopyOpConsumer{
logger: logger.WithFields(logrus.Fields{"component": "replication_consumer", "action": replicationEngineLogAction}),
leaderClient: leaderClient,
replicaCopier: replicaCopier,
backoffPolicy: backoffPolicy,
ongoingOps: ongoingOps,
opTimeout: opTimeout,
maxWorkers: maxWorkers,
nodeId: nodeId,
tokens: make(chan struct{}, maxWorkers),
engineOpCallbacks: engineOpCallbacks,
asyncReplicationMinimumWait: asyncReplicationMinimumWait,
schemaReader: schemaReader,
opsGateway: NewOpsGateway(),
}
return c
}
// Consume processes replication operations from the input channel, ensuring that only a limited number of consumers
// are active concurrently based on the maxWorkers value.
func (c *CopyOpConsumer) Consume(workerCtx context.Context, in <-chan ShardReplicationOpAndStatus) error {
c.logger.WithFields(logrus.Fields{"node": c.nodeId, "max_workers": c.maxWorkers, "op_timeout": c.opTimeout}).Info("starting replication operation consumer")
c.engineOpCallbacks.OnPrepareProcessing(c.nodeId)
var wg sync.WaitGroup
for {
select {
case <-workerCtx.Done():
c.logger.WithError(workerCtx.Err()).Info("worker context canceled, shutting down consumer")
// We can start waiting for ops because their context depend on the worker context that just got cancelled
wg.Wait()
return workerCtx.Err()
case op, ok := <-in:
if !ok {
c.logger.Info("operation channel closed, shutting down consumer and waiting for ops to finish")
c.ongoingOps.CancelAll()
wg.Wait()
return nil
}
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
// If the operation has been scheduled for cancellation or deletion
// This is done outside of the worker goroutine, and therefore without acquiring a token, so that
// we can cancel operations that have frozen or become unresponsive. If we were to acquire a token
// we would block the worker pool and not be able to cancel the operation leading to resource starvation.
if op.Status.ShouldCancel && !c.ongoingOps.HasBeenCancelled(op.Op.ID) {
// Update the cache to mark the operation as cancelled
c.ongoingOps.StoreHasBeenCancelled(op.Op.ID)
logger.Debug("cancelled the replication op")
if c.ongoingOps.InFlight(op.Op.ID) {
// Cancel the in-flight operation
// Is a noop, returns false if the op doesn't exist
c.ongoingOps.Cancel(op.Op.ID)
// Continue to ensure we don't accidentally re-spawn the operation in a new worker
continue
}
// Otherwise, the operation is not in-flight and should therefore be processed in a worker where clean-up happens
}
if ok, next := c.opsGateway.CanSchedule(op.Op.ID); !ok {
logger.WithFields(logrus.Fields{"next": next}).Debug("replication op skipped as not ready to schedule")
continue
}
c.engineOpCallbacks.OnOpPending(c.nodeId)
select {
// If main context is cancelled here we just continue so that we hit the shutdown logic on the next iteration
case <-workerCtx.Done():
continue
// The 'tokens' channel limits the number of concurrent workers (`maxWorkers`).
// Each worker acquires a token before processing an operation. If no tokens are available,
// the worker blocks until one is released. After completing the task, the worker releases the token,
// allowing another worker to proceed. This ensures only a limited number of workers is concurrently
// running replication operations and avoids overloading the system.
case c.tokens <- struct{}{}:
// Here we capture the op argument used by the func below as the enterrors.GoWrapper requires calling
// a function without arguments.
operation := op
opLogger := getLoggerForOpAndStatus(c.logger, operation.Op, op.Status)
shouldSkip := false
opAlreadyInFlight := c.ongoingOps.LoadOrStore(op.Op.ID)
if opAlreadyInFlight {
// Check if the operation is already in progress
// Avoid scheduling unnecessary work or incorrectly counting metrics
// for operations that are already in progress or completed.
c.logger.Debug("replication op skipped as already running")
shouldSkip = true
} else {
// Check if the operation has had its state changed between being added to the channel and being processed
// This is chatty and will likely cause a lot of unnecessary load on the leader
// For now, we need it to ensure eventual consistency between the FSM and the consumer
state, err := c.leaderClient.ReplicationGetReplicaOpStatus(workerCtx, op.Op.ID)
if err != nil {
c.logger.Error("error while checking status of replication op")
shouldSkip = true
} else if state.String() != op.Status.GetCurrent().State.String() {
c.logger.Debug("replication op skipped as state has changed")
shouldSkip = true
}
}
if op.Status.GetCurrent().State == "" {
c.logger.Debug("replication op skipped as state is empty")
shouldSkip = true
}
// TODO: Consider more optimal ways of checking that the state of the op has not changed between it being added to the channel
// and being processed here. Could use in-memory solution, e.g. using cache, or refactor consumer-producer to be event/notification-based
// For now, ensure consistency by checking the FSM through the leader
// Need to release the token to let other consumers process queued replication operations.
if shouldSkip {
opLogger.Debug("replication op skipped as already running")
// Need to release the token to let other consumers process queued replication operations.
<-c.tokens
c.engineOpCallbacks.OnOpSkipped(c.nodeId)
if !opAlreadyInFlight {
c.ongoingOps.DeleteInFlight(op.Op.ID)
}
continue
}
// Start a replication operation with a timeout for completion to prevent replication operations
// from running indefinitely
opCtx, opCancel := context.WithTimeout(workerCtx, c.opTimeout)
c.engineOpCallbacks.OnOpStart(c.nodeId)
c.ongoingOps.StoreCancel(op.Op.ID, opCancel)
c.opsGateway.ScheduleNow(op.Op.ID)
wg.Add(1)
enterrors.GoWrapper(func() {
defer func() {
<-c.tokens // Release token when completed
// Delete the operation from the ongoingOps map when the operation processing is complete
c.ongoingOps.DeleteInFlight(op.Op.ID)
wg.Done()
opCancel()
}()
// If the operation has been cancelled in the time between it being added to the channel and
// being processed, we need to cancel it in the FSM and return
if c.ongoingOps.HasBeenCancelled(op.Op.ID) {
c.logger.Info("replication op cancelled, stopping replication operation")
c.cancelOp(operation, opLogger)
return
}
opLogger.Debug("worker processing replication operation")
err := c.dispatchReplicationOp(opCtx, operation)
if err == nil {
opLogger.Debug("worker completed replication operation")
c.opsGateway.RegisterFinished(op.Op.ID)
c.engineOpCallbacks.OnOpComplete(c.nodeId)
return
}
c.opsGateway.RegisterFailure(op.Op.ID)
if errors.Is(err, context.DeadlineExceeded) {
c.engineOpCallbacks.OnOpFailed(c.nodeId)
opLogger.WithError(err).Error("replication operation timed out")
return
}
// TODO: Refactor this error handling
if errors.Is(err, context.Canceled) && c.ongoingOps.HasBeenCancelled(op.Op.ID) {
opLogger.WithError(err).Info("replication operation cancelled")
c.cancelOp(operation, opLogger)
return
}
if errors.Is(err, errOpCancelled) {
opLogger.WithError(err).Info("replication operation cancelled")
c.cancelOp(operation, opLogger)
return
}
c.engineOpCallbacks.OnOpFailed(c.nodeId)
opLogger.WithError(err).Error("replication operation failed")
}, c.logger)
}
}
}
}
// dispatchReplicationOp dispatches the replication operation to the appropriate state handler
// based on the current state of the operation.
// If the state handler returns success and a valid next state, the operation is transitioned to the next state.
// If the state handler returns an error, the operation is not transitioned and the error is returned.
func (c *CopyOpConsumer) dispatchReplicationOp(ctx context.Context, op ShardReplicationOpAndStatus) error {
switch op.Status.GetCurrentState() {
case api.REGISTERED:
return c.processStateAndTransition(ctx, op, c.processRegisteredOp)
case api.HYDRATING:
return c.processStateAndTransition(ctx, op, c.processHydratingOp)
case api.DEHYDRATING:
return c.processStateAndTransition(ctx, op, c.processDehydratingOp)
case api.FINALIZING:
return c.processStateAndTransition(ctx, op, c.processFinalizingOp)
case api.READY:
return nil
case api.CANCELLED:
return c.processStateAndTransition(ctx, op, c.processCancelledOp)
default:
getLoggerForOpAndStatus(c.logger, op.Op, op.Status).Error("unknown replication operation state")
return fmt.Errorf("unknown replication operation state: %s", op.Status.GetCurrentState())
}
}
// stateFuncHandler is a function that processes a replication operation and returns the next state and an error.
type stateFuncHandler func(ctx context.Context, op ShardReplicationOpAndStatus) (api.ShardReplicationState, error)
func (c *CopyOpConsumer) checkCancelled(logger *logrus.Entry, op ShardReplicationOpAndStatus) error {
if c.ongoingOps.HasBeenCancelled(op.Op.ID) {
logger.WithFields(logrus.Fields{"op": op}).Debug("replication op cancelled, stopping replication operation")
return errOpCancelled
}
return nil
}
// processStateAndTransition processes a replication operation and transitions it to the next state.
// It retries the operation using a backoff policy if it returns an error.
// If the operation is successful, the operation is transitioned to the next state.
// Otherwise, the operation is transitioned to the next state and the process continues.
func (c *CopyOpConsumer) processStateAndTransition(ctx context.Context, op ShardReplicationOpAndStatus, stateFuncHandler stateFuncHandler) error {
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
nextState, err := backoff.RetryWithData(func() (api.ShardReplicationState, error) {
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Error("error while processing replication operation, shutting down")
return api.ShardReplicationState(""), backoff.Permanent(ctx.Err())
}
if err := c.checkCancelled(logger, op); err != nil {
return api.ShardReplicationState(""), backoff.Permanent(fmt.Errorf("error while checking if op is cancelled: %w", err))
}
nextState, err := stateFuncHandler(ctx, op)
// If we receive an error from the state handler make sure we store it and then stop processing
if err != nil {
// If the op was cancelled for any reason, pass the error up the stack to be handled higher up
if errors.Is(err, context.Canceled) {
logger.Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), backoff.Permanent(fmt.Errorf("context cancelled: %w", err))
}
if err := c.checkCancelled(logger, op); err != nil {
return api.ShardReplicationState(""), backoff.Permanent(fmt.Errorf("error while checking if op is cancelled: %w", err))
}
logger.WithError(err).Warn("state transition handler failed")
// Otherwise, register the error with the FSM
if err := c.leaderClient.ReplicationRegisterError(ctx, op.Op.ID, err.Error()); err != nil {
logger.WithError(err).Error("failed to register error for replication operation")
}
return api.ShardReplicationState(""), err
}
if err := c.checkCancelled(logger, op); err != nil {
return api.ShardReplicationState(""), backoff.Permanent(fmt.Errorf("error while checking if op is cancelled: %w", err))
}
// No error from the state handler, update the state to the next, if this errors we will stop processing
if err := c.leaderClient.ReplicationUpdateReplicaOpStatus(ctx, op.Op.ID, nextState); err != nil {
logger.WithError(err).Errorf("failed to update replica status to '%s'", nextState)
return api.ShardReplicationState(""), fmt.Errorf("failed to update replica status to '%s': %w", nextState, err)
}
return nextState, nil
}, c.backoffPolicy)
if err != nil {
return err
}
if nextState == DELETED {
// Stop the recursion if we are in the DELETED state and don't update the state in the FSM
return nil
}
op.Status.ChangeState(nextState)
if nextState == api.READY {
// No need to continue the recursion if we are in the READY state
return nil
}
if err := c.checkCancelled(logger, op); err != nil {
return err
}
return c.dispatchReplicationOp(ctx, op)
}
// cancelOp performs clean up for the cancelled operation and notifies the FSM of the cancellation.
//
// It removes the replica shard from the target node and updates the FSM with the cancellation status.
// If the operation is being cancelled, it notifies the FSM to complete the cancellation.
// If the operation is being deleted, it notifies the FSM to remove the operation from the FSM.
// It returns an error if any of the operations fail.
//
// It exists outside of the formal state machine to allow for cancellation of operations that are in progress
// or have been cancelled but not yet processed without introducing new intermediate states to the FSM.
func (c *CopyOpConsumer) cancelOp(op ShardReplicationOpAndStatus, logger *logrus.Entry) {
defer func() {
c.ongoingOps.DeleteHasBeenCancelled(op.Op.ID)
c.engineOpCallbacks.OnOpCancelled(c.nodeId)
}()
ctx, cancel := context.WithTimeout(context.Background(), 20*time.Second) // Ensure sync shards timesout reasonbly in case of hang
defer cancel()
overrides := newOverrides(op, time.Now().UnixMilli())
c.stopAsyncReplication(ctx, op, overrides, logger)
// Ensure that the states of the shards on the nodes are in-sync with the state of the schema through a RAFT communication
// This handles cleaning up for ghost shards that are in the store but not in the schema that may have been created by index.getOptInitShard
if err := c.sync(ctx, op); err != nil {
logger.WithError(err).
WithField("op", op).
Error(fmt.Errorf("failure while syncing replica shard when cancelling the op"))
}
// If the operation is only being cancelled then notify the FSM so it can update its state
if op.Status.OnlyCancellation() {
if err := c.leaderClient.ReplicationCancellationComplete(ctx, op.Op.ID); err != nil {
logger.WithError(err).Error("failure while completing cancellation of replica operation")
}
return
}
// If the operation is being deleted then remove it from the FSM
if op.Status.ShouldDelete {
if err := c.leaderClient.ReplicationRemoveReplicaOp(ctx, op.Op.ID); err != nil {
logger.WithError(err).Error("failure while deleting replica operation")
}
return
}
}
func (c *CopyOpConsumer) startAsyncReplication(ctx context.Context, op ShardReplicationOpAndStatus, overrides overrides, logger *logrus.Entry) error {
// Ensure async replication is started on local (target) node
if err := c.replicaCopier.InitAsyncReplicationLocally(ctx, op.Op.SourceShard.CollectionId, op.Op.TargetShard.ShardId); err != nil {
logger.WithError(err).Error("failed to initialize async replication on local node")
return err
}
// Start async replication from source node to target node
if err := c.replicaCopier.AddAsyncReplicationTargetNode(ctx, overrides.target, op.Status.SchemaVersion); err != nil {
logger.WithError(err).Error("failed to add async replication from source node to target node")
return err
}
// Start async replication from target node to source node
if err := c.replicaCopier.AddAsyncReplicationTargetNode(ctx, overrides.source, op.Status.SchemaVersion); err != nil {
logger.WithError(err).Error("failed to add async replication from target node to source node")
return err
}
return nil
}
func (c *CopyOpConsumer) stopAsyncReplication(ctx context.Context, op ShardReplicationOpAndStatus, overrides overrides, logger *logrus.Entry) {
if err := c.replicaCopier.RemoveAsyncReplicationTargetNode(ctx, overrides.target); err != nil {
logger.WithError(err).Error("failure while removing async replication from source node to target node")
}
if err := c.replicaCopier.RemoveAsyncReplicationTargetNode(ctx, overrides.source); err != nil {
logger.WithError(err).Error("failure while removing async replication from target node to source node")
}
if err := c.replicaCopier.RevertAsyncReplicationLocally(ctx, op.Op.TargetShard.CollectionId, op.Op.SourceShard.ShardId); err != nil {
logger.WithError(err).Error("failure while reverting async replication on local node")
}
}
func (c *CopyOpConsumer) sync(ctx context.Context, op ShardReplicationOpAndStatus) error {
if _, err := c.leaderClient.SyncShard(ctx, op.Op.TargetShard.CollectionId, op.Op.TargetShard.ShardId, op.Op.TargetShard.NodeId); err != nil {
return err
}
if _, err := c.leaderClient.SyncShard(ctx, op.Op.SourceShard.CollectionId, op.Op.SourceShard.ShardId, op.Op.SourceShard.NodeId); err != nil {
return err
}
return nil
}
// processRegisteredOp is the state handler for the REGISTERED state.
func (c *CopyOpConsumer) processRegisteredOp(ctx context.Context, op ShardReplicationOpAndStatus) (api.ShardReplicationState, error) {
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
logger.Info("processing registered replication operation")
return api.HYDRATING, nil
}
// processHydratingOp is the state handler for the HYDRATING state.
// It copies the replica shard from the source node to the target node using file copy opetaitons and then transitions the operation to the FINALIZING state.
func (c *CopyOpConsumer) processHydratingOp(ctx context.Context, op ShardReplicationOpAndStatus) (api.ShardReplicationState, error) {
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
logger.Info("processing hydrating replication operation")
if c.schemaReader.MultiTenancy(op.Op.TargetShard.CollectionId).Enabled {
schemaVersion, err := c.leaderClient.UpdateTenants(ctx, op.Op.TargetShard.CollectionId, &api.UpdateTenantsRequest{
Tenants: []*api.Tenant{
{
Name: op.Op.SourceShard.ShardId,
Status: models.TenantActivityStatusHOT,
},
},
})
if err != nil {
logger.WithError(err).Error("failure while updating tenant to active state for hydrating operation")
return api.ShardReplicationState(""), err
}
if err := c.leaderClient.ReplicationStoreSchemaVersion(ctx, op.Op.ID, schemaVersion); err != nil {
logger.WithError(err).Error("failure while storing schema version for replication operation")
return api.ShardReplicationState(""), err
}
if err := c.leaderClient.WaitForUpdate(ctx, schemaVersion); err != nil {
logger.WithError(err).Error("failure while waiting for schema version to be applied to local node")
return api.ShardReplicationState(""), err
}
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), ctx.Err()
}
if err := c.replicaCopier.CopyReplicaFiles(ctx, op.Op.SourceShard.NodeId, op.Op.SourceShard.CollectionId, op.Op.TargetShard.ShardId, op.Status.SchemaVersion); err != nil {
logger.WithError(err).Error("failure while copying replica shard")
return api.ShardReplicationState(""), err
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), ctx.Err()
}
return api.FINALIZING, nil
}
// processFinalizingOp is the state handler for the FINALIZING state.
// It updates the sharding state and then transitions the operation to the READY state.
func (c *CopyOpConsumer) processFinalizingOp(ctx context.Context, op ShardReplicationOpAndStatus) (api.ShardReplicationState, error) {
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
logger.Info("processing finalizing replication operation")
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), ctx.Err()
}
if err := c.leaderClient.WaitForUpdate(ctx, op.Status.SchemaVersion); err != nil {
logger.WithError(err).Error("failure while waiting for schema version to be applied to local node")
return api.ShardReplicationState(""), err
}
if err := c.replicaCopier.LoadLocalShard(ctx, op.Op.SourceShard.CollectionId, op.Op.SourceShard.ShardId); err != nil {
logger.WithError(err).Error("failure while loading shard")
return api.ShardReplicationState(""), err
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), ctx.Err()
}
// Sanity check: directly query the local schema to see if the replica already exists.
// If it does we are probably recoving from a previous failure and can skip adding the replica to the sharding state again
nodes, err := c.schemaReader.ShardReplicas(op.Op.TargetShard.CollectionId, op.Op.TargetShard.ShardId)
if err != nil {
logger.WithError(err).Error("failure while getting shard replicas")
return api.ShardReplicationState(""), err
}
replicaExists := slices.Contains(nodes, op.Op.TargetShard.NodeId)
// this time will be used to make sure async replication has propagated any writes which
// were received during the hydrating phase
asyncReplicationUpperTimeBoundUnixMillis := time.Now().Add(time.Second * 5).UnixMilli()
overrides := newOverrides(op, asyncReplicationUpperTimeBoundUnixMillis)
if err := c.startAsyncReplication(ctx, op, overrides, logger); err != nil {
return api.ShardReplicationState(""), err
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("error while processing replication operation, shutting down")
return api.ShardReplicationState(""), ctx.Err()
}
if err := c.waitForAsyncReplication(ctx, op, asyncReplicationUpperTimeBoundUnixMillis, logger); err != nil {
logger.WithError(err).Error("failure while waiting for async replication to complete while finalizing")
return api.ShardReplicationState(""), err
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("error while processing replication operation, shutting down")
return api.ShardReplicationState(""), ctx.Err()
}
if !replicaExists {
if _, err := c.leaderClient.ReplicationAddReplicaToShard(ctx, op.Op.TargetShard.CollectionId, op.Op.TargetShard.ShardId, op.Op.TargetShard.NodeId, op.Op.ID); err != nil {
if strings.Contains(err.Error(), sharding.ErrReplicaAlreadyExists.Error()) {
// The replica already exists, this is not an error and it got updated after our sanity check
// due to eventual consistency of the sharding state.
logger.Debug("replica already exists, skipping")
} else {
logger.WithError(err).Error("failure while adding replica to shard")
return api.ShardReplicationState(""), err
}
}
}
switch op.Op.TransferType {
case api.COPY:
c.stopAsyncReplication(ctx, op, overrides, logger)
// sync the replica shard to ensure that the schema and store are consistent on each node
// In a COPY this happens now, in a MOVE this happens in the DEHYDRATING state
if err := c.sync(ctx, op); err != nil {
logger.WithError(err).Error("failure while syncing replica shard in finalizing state")
return api.ShardReplicationState(""), err
}
return api.READY, nil
case api.MOVE:
return api.DEHYDRATING, nil
default:
return api.ShardReplicationState(""), fmt.Errorf("unknown transfer type: %s", op.Op.TransferType)
}
}
// processDehydratingOp is the state handler for the DEHYDRATING state.
func (c *CopyOpConsumer) processDehydratingOp(ctx context.Context, op ShardReplicationOpAndStatus) (api.ShardReplicationState, error) {
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
logger.Info("processing dehydrating replication operation")
if err := c.leaderClient.WaitForUpdate(ctx, op.Status.SchemaVersion); err != nil {
logger.WithError(err).Error("failure while waiting for schema version to be applied to local node")
return api.ShardReplicationState(""), err
}
nodes, err := c.schemaReader.ShardReplicas(op.Op.SourceShard.CollectionId, op.Op.SourceShard.ShardId)
if err != nil {
logger.WithError(err).Error("failure while getting shard replicas")
return api.ShardReplicationState(""), err
}
// Async replication was started in processFinalizingOp, but here we want to "increase" the upper time bound
// to make sure any writes received by the source node before the op entered the DEHYDRATING state are
// propagated to the target node. We assume writes will complete or time out (default 90s) within the
// asyncReplicationMinimumWait time (default 100s). The source node should not receive any writes after the op
// enters the DEHYDRATING state.
asyncReplicationUpperTimeBoundUnixMillis := time.Now().Add(c.asyncReplicationMinimumWait.Get()).UnixMilli()
overrides := newOverrides(op, asyncReplicationUpperTimeBoundUnixMillis)
if slices.Contains(nodes, op.Op.SourceShard.NodeId) {
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), ctx.Err()
}
if err := c.startAsyncReplication(ctx, op, overrides, logger); err != nil {
return api.ShardReplicationState(""), err
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("error while processing replication operation, shutting down")
return api.ShardReplicationState(""), ctx.Err()
}
if err := c.waitForAsyncReplication(ctx, op, asyncReplicationUpperTimeBoundUnixMillis, logger); err != nil {
logger.WithError(err).Error("failure while waiting for async replication to complete while dehydrating")
return api.ShardReplicationState(""), err
}
if ctx.Err() != nil {
logger.WithError(ctx.Err()).Debug("context cancelled, stopping replication operation")
return api.ShardReplicationState(""), ctx.Err()
}
c.stopAsyncReplication(ctx, op, overrides, logger)
// If the replica got deleted due to eventual consistency between our sanity check and this call, the delete will be a no-op and return no error
if _, err := c.leaderClient.DeleteReplicaFromShard(ctx, op.Op.SourceShard.CollectionId, op.Op.SourceShard.ShardId, op.Op.SourceShard.NodeId); err != nil {
logger.WithError(err).Error("failure while deleting replica from shard")
return api.ShardReplicationState(""), err
}
}
// sync the replica shard to ensure that the schema and store are consistent on each node
// In a COPY this happens in the FINALIZING state, in a MOVE this happens now
if err := c.sync(ctx, op); err != nil {
logger.WithError(err).Error("failure while syncing replica shard in dehydrating state")
return api.ShardReplicationState(""), err
}
return api.READY, nil
}
func (c *CopyOpConsumer) processCancelledOp(ctx context.Context, op ShardReplicationOpAndStatus) (api.ShardReplicationState, error) {
logger := getLoggerForOpAndStatus(c.logger, op.Op, op.Status)
logger.Info("processing cancelled replication operation")
if !op.Status.ShouldDelete {
return api.ShardReplicationState(""), fmt.Errorf("replication operation with id %v is not in a state to be deleted", op.Op.ID)
}
overrides := newOverrides(op, time.Now().UnixMilli())
c.stopAsyncReplication(ctx, op, overrides, logger)
if err := c.leaderClient.ReplicationRemoveReplicaOp(ctx, op.Op.ID); err != nil {
logger.WithError(err).Error("failure while removing replica operation")
return api.ShardReplicationState(""), err
}
return DELETED, nil
}
func (c *CopyOpConsumer) handleAsyncReplErr(
err error,
retryNum int,
asyncStatusMaxErrors int,
remainingErrorsAllowed int,
logger *logrus.Entry,
) (int, error) {
remainingErrorsAllowed--
if remainingErrorsAllowed < 0 {
// If we see this error, it means that something probably went wrong with
// initializing the async replication on the source/target nodes.
logger.WithFields(logrus.Fields{"num_errors": asyncStatusMaxErrors, "num_retries": retryNum}).WithError(err).Error("errored on all attempts to get async replication status")
return remainingErrorsAllowed, backoff.Permanent(err)
}
// We expect to see this warning a few times while the hashtree's are being initialized
// on the source/target nodes, but if this errors for longer than ~asyncStatusRetries * asyncStatusInterval
// then either the hashtree is taking forever to init or something has gone wrong
logger.WithFields(logrus.Fields{"num_errors_allowed": asyncStatusMaxErrors, "num_errors_left": remainingErrorsAllowed, "num_retries_so_far": retryNum}).WithError(err).Warn("errored when getting async replication status, hashtrees may still be initializing, retrying")
return remainingErrorsAllowed, err
}
// waitForAsyncReplication waits for async replication to complete by checking the status of the async
// replication every `asyncStatusInterval` seconds.
// It returns an error if the async replication does not complete within `asyncStatusRetries` attempts.
// It returns nil if the async replication has completed.
func (c *CopyOpConsumer) waitForAsyncReplication(
ctx context.Context,
op ShardReplicationOpAndStatus,
asyncReplicationUpperTimeBoundUnixMillis int64,
logger *logrus.Entry,
) error {
remainingErrorsAllowed := asyncStatusMaxErrors
retryNum := -1
return backoff.Retry(func() error {
retryNum++
asyncReplStatusSrc, err := c.replicaCopier.AsyncReplicationStatus(
ctx,
op.Op.SourceShard.NodeId,
op.Op.TargetShard.NodeId,
op.Op.SourceShard.CollectionId,
op.Op.SourceShard.ShardId,
)
if err != nil {
remainingErrorsAllowed, err = c.handleAsyncReplErr(err, retryNum, asyncStatusMaxErrors, remainingErrorsAllowed, logger)
return err
}
asyncReplIsPastUpperTimeBoundSrc := asyncReplStatusSrc.StartDiffTimeUnixMillis >= asyncReplicationUpperTimeBoundUnixMillis
asyncReplStatusTgt, err := c.replicaCopier.AsyncReplicationStatus(
ctx,
op.Op.TargetShard.NodeId,
op.Op.SourceShard.NodeId,
op.Op.TargetShard.CollectionId,
op.Op.TargetShard.ShardId,
)
if err != nil {
remainingErrorsAllowed, err = c.handleAsyncReplErr(err, retryNum, asyncStatusMaxErrors, remainingErrorsAllowed, logger)
return err
}
asyncReplIsPastUpperTimeBoundTgt := asyncReplStatusTgt.StartDiffTimeUnixMillis >= asyncReplicationUpperTimeBoundUnixMillis
objectsPropagated := asyncReplStatusSrc.ObjectsPropagated + asyncReplStatusTgt.ObjectsPropagated
asyncReplIsPastUpperTimeBound := asyncReplIsPastUpperTimeBoundSrc && asyncReplIsPastUpperTimeBoundTgt
// It can take a few minutes for async replication to complete, this log is here to
// help monitor the progress.
logger.WithFields(logrus.Fields{
"objects_propagated": objectsPropagated,
"start_diff_time_unix_millis_src": asyncReplStatusSrc.StartDiffTimeUnixMillis,
"start_diff_time_unix_millis_tgt": asyncReplStatusTgt.StartDiffTimeUnixMillis,
"upper_time_bound_unix_millis": asyncReplicationUpperTimeBoundUnixMillis,
"async_replication_past_upper_time_bound": asyncReplIsPastUpperTimeBound,
"num_retries_so_far": retryNum,
"remaining_errors_allowed": remainingErrorsAllowed,
}).Info("async replication status")
if objectsPropagated == 0 && asyncReplIsPastUpperTimeBound {
return nil
}
// Wait until we've passed the upper time bound before starting status checks
// to avoid unnecessary status checks before the upper time bound has passed
currentTimeMillis := time.Now().UnixMilli()
if currentTimeMillis < asyncReplicationUpperTimeBoundUnixMillis {
waitDuration := time.Duration(asyncReplicationUpperTimeBoundUnixMillis-currentTimeMillis) * time.Millisecond
logger.WithFields(logrus.Fields{
"wait_duration_ms": waitDuration.Milliseconds(),
"upper_bound_ms": asyncReplicationUpperTimeBoundUnixMillis,
}).Info("waiting to reach upper time bound before starting async replication status checks")
select {
case <-ctx.Done():
return ctx.Err()
case <-time.After(waitDuration):
// Time has passed, continue below with the status checks
}
}
return errors.New("async replication not done")
}, backoff.WithContext(
backoff.WithMaxRetries(backoff.NewConstantBackOff(asyncStatusInterval), asyncStatusMaxRetries),
ctx),
)
}
|