| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| package replication |
|
|
| import ( |
| "encoding/json" |
| "errors" |
| "fmt" |
|
|
| "github.com/weaviate/weaviate/entities/models" |
| "github.com/weaviate/weaviate/usecases/sharding" |
|
|
| "github.com/go-openapi/strfmt" |
| "github.com/prometheus/client_golang/prometheus" |
|
|
| cmd "github.com/weaviate/weaviate/cluster/proto/api" |
| "github.com/weaviate/weaviate/cluster/replication/types" |
| "github.com/weaviate/weaviate/cluster/schema" |
| ) |
|
|
| var ErrBadRequest = errors.New("bad request") |
|
|
| type Manager struct { |
| replicationFSM *ShardReplicationFSM |
| schemaReader schema.SchemaReader |
| } |
|
|
| func NewManager(schemaReader schema.SchemaReader, reg prometheus.Registerer) *Manager { |
| replicationFSM := NewShardReplicationFSM(reg) |
| return &Manager{ |
| replicationFSM: replicationFSM, |
| schemaReader: schemaReader, |
| } |
| } |
|
|
| func (m *Manager) GetReplicationFSM() *ShardReplicationFSM { |
| return m.replicationFSM |
| } |
|
|
| func (m *Manager) Snapshot() ([]byte, error) { |
| return m.replicationFSM.Snapshot() |
| } |
|
|
| func (m *Manager) Restore(bytes []byte) error { |
| return m.replicationFSM.Restore(bytes) |
| } |
|
|
| func (m *Manager) Replicate(logId uint64, c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationReplicateShardRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| if err := ValidateReplicationReplicateShard(m.schemaReader, req); err != nil { |
| return err |
| } |
|
|
| |
| return m.replicationFSM.Replicate(logId, req) |
| } |
|
|
| func (m *Manager) RegisterError(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationRegisterErrorRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| if err := m.replicationFSM.RegisterError(req); err != nil { |
| if errors.Is(err, ErrMaxErrorsReached) { |
| uuid, err := m.GetReplicationOpUUIDFromId(req.Id) |
| if err != nil { |
| return fmt.Errorf("failed to get op uuid from id %d: %w", req.Id, err) |
| } |
| return m.replicationFSM.CancelReplication(&cmd.ReplicationCancelRequest{ |
| Uuid: uuid, |
| }) |
| } |
| return err |
| } |
| return nil |
| } |
|
|
| func (m *Manager) GetReplicationOpUUIDFromId(id uint64) (strfmt.UUID, error) { |
| return m.replicationFSM.GetReplicationOpUUIDFromId(id) |
| } |
|
|
| func (m *Manager) UpdateReplicateOpState(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationUpdateOpStateRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.UpdateReplicationOpStatus(req) |
| } |
|
|
| func (m *Manager) StoreSchemaVersion(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationStoreSchemaVersionRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| return m.replicationFSM.StoreSchemaVersion(req) |
| } |
|
|
| func (m *Manager) GetReplicationDetailsByReplicationId(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationDetailsRequest{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| op, ok := m.replicationFSM.GetOpByUuid(subCommand.Uuid) |
| if !ok { |
| return nil, fmt.Errorf("%w: %s", types.ErrReplicationOperationNotFound, subCommand.Uuid) |
| } |
|
|
| response := makeReplicationDetailsResponse(&op.Op, &op.Status) |
| payload, err := json.Marshal(response) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response for replication operation '%s': %w", op.Op.UUID, err) |
| } |
|
|
| return payload, nil |
| } |
|
|
| func (m *Manager) GetReplicationOperationState(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationOperationStateRequest{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| op, ok := m.replicationFSM.GetOpById(subCommand.Id) |
| if !ok { |
| return nil, fmt.Errorf("unable to retrieve replication operation '%d' status", subCommand.Id) |
| } |
|
|
| response := cmd.ReplicationOperationStateResponse{ |
| State: op.Status.GetCurrent().State, |
| } |
| payload, err := json.Marshal(response) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response for replication operation '%d': %w", subCommand.Id, err) |
| } |
|
|
| return payload, nil |
| } |
|
|
| func (m *Manager) GetReplicationDetailsByCollection(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationDetailsRequestByCollection{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| responses := []cmd.ReplicationDetailsResponse{} |
| ops, ok := m.replicationFSM.GetOpsForCollection(subCommand.Collection) |
| if !ok { |
| return nil, fmt.Errorf("%w: %s", types.ErrReplicationOperationNotFound, subCommand.Collection) |
| } |
|
|
| for _, op := range ops { |
| responses = append(responses, makeReplicationDetailsResponse(&op.Op, &op.Status)) |
| } |
|
|
| payload, err := json.Marshal(responses) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response: %w", err) |
| } |
| return payload, nil |
| } |
|
|
| func (m *Manager) GetReplicationDetailsByCollectionAndShard(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationDetailsRequestByCollectionAndShard{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| responses := []cmd.ReplicationDetailsResponse{} |
| ops, ok := m.replicationFSM.GetOpsForCollectionAndShard(subCommand.Collection, subCommand.Shard) |
| if !ok { |
| return nil, fmt.Errorf("%w: %s", types.ErrReplicationOperationNotFound, subCommand.Collection) |
| } |
|
|
| for _, op := range ops { |
| responses = append(responses, makeReplicationDetailsResponse(&op.Op, &op.Status)) |
| } |
|
|
| payload, err := json.Marshal(responses) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response: %w", err) |
| } |
| return payload, nil |
| } |
|
|
| func (m *Manager) GetReplicationDetailsByTargetNode(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationDetailsRequestByTargetNode{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| responses := []cmd.ReplicationDetailsResponse{} |
| ops, ok := m.replicationFSM.GetOpsForTargetNode(subCommand.Node) |
| if !ok { |
| return nil, fmt.Errorf("%w: %s", types.ErrReplicationOperationNotFound, subCommand.Node) |
| } |
|
|
| for _, op := range ops { |
| responses = append(responses, makeReplicationDetailsResponse(&op.Op, &op.Status)) |
| } |
|
|
| payload, err := json.Marshal(responses) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response: %w", err) |
| } |
| return payload, nil |
| } |
|
|
| func (m *Manager) GetAllReplicationDetails(c *cmd.QueryRequest) ([]byte, error) { |
| statusByOps := m.replicationFSM.GetStatusByOps() |
| responses := make([]cmd.ReplicationDetailsResponse, 0, len(statusByOps)) |
| for op, status := range statusByOps { |
| responses = append(responses, makeReplicationDetailsResponse(&op, &status)) |
| } |
|
|
| payload, err := json.Marshal(responses) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response: %w", err) |
| } |
| return payload, nil |
| } |
|
|
| func (m *Manager) QueryShardingStateByCollection(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationQueryShardingStateByCollectionRequest{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| shards := make(map[string][]string) |
| var err error |
|
|
| err = m.schemaReader.Read(subCommand.Collection, func(_ *models.Class, state *sharding.State) error { |
| if state == nil { |
| return fmt.Errorf("%w: %s", types.ErrNotFound, subCommand.Collection) |
| } |
| for _, physical := range state.Physical { |
| shards[physical.Name] = append([]string(nil), physical.BelongsToNodes...) |
| } |
| return nil |
| }) |
| if err != nil { |
| return nil, wrapClassNotFoundErr(err, subCommand.Collection) |
| } |
|
|
| response := cmd.ShardingState{ |
| Collection: subCommand.Collection, |
| Shards: shards, |
| } |
| payload, err := json.Marshal(response) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response: %w", err) |
| } |
| return payload, nil |
| } |
|
|
| func (m *Manager) QueryShardingStateByCollectionAndShard(c *cmd.QueryRequest) ([]byte, error) { |
| subCommand := cmd.ReplicationQueryShardingStateByCollectionAndShardRequest{} |
| if err := json.Unmarshal(c.SubCommand, &subCommand); err != nil { |
| return nil, fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| var ( |
| shards map[string][]string |
| err error |
| ) |
|
|
| err = m.schemaReader.Read(subCommand.Collection, func(_ *models.Class, state *sharding.State) error { |
| if state == nil { |
| return fmt.Errorf("%w: %s", types.ErrNotFound, subCommand.Collection) |
| } |
|
|
| for _, physical := range state.Physical { |
| if physical.Name == subCommand.Shard { |
| shards = map[string][]string{ |
| physical.Name: append([]string(nil), physical.BelongsToNodes...), |
| } |
| return nil |
| } |
| } |
| return fmt.Errorf("%w: %s", types.ErrNotFound, subCommand.Shard) |
| }) |
| if err != nil { |
| return nil, wrapClassNotFoundErr(err, subCommand.Collection) |
| } |
|
|
| response := cmd.ShardingState{ |
| Collection: subCommand.Collection, |
| Shards: shards, |
| } |
| payload, err := json.Marshal(response) |
| if err != nil { |
| return nil, fmt.Errorf("could not marshal query response: %w", err) |
| } |
| return payload, nil |
| } |
|
|
| |
| |
| |
| |
| |
| |
| func wrapClassNotFoundErr(err error, collection string) error { |
| if err == nil { |
| return nil |
| } |
| if errors.Is(err, schema.ErrClassNotFound) { |
| return fmt.Errorf("%w: %s", types.ErrNotFound, collection) |
| } |
| return err |
| } |
|
|
| func makeReplicationDetailsResponse(op *ShardReplicationOp, status *ShardReplicationOpStatus) cmd.ReplicationDetailsResponse { |
| return cmd.ReplicationDetailsResponse{ |
| Uuid: op.UUID, |
| Id: op.ID, |
| ShardId: op.SourceShard.ShardId, |
| Collection: op.SourceShard.CollectionId, |
| SourceNodeId: op.SourceShard.NodeId, |
| TargetNodeId: op.TargetShard.NodeId, |
| TransferType: op.TransferType.String(), |
| Uncancelable: status.UnCancellable, |
| ScheduledForCancel: status.ShouldCancel, |
| ScheduledForDelete: status.ShouldDelete, |
| Status: status.GetCurrent().ToAPIFormat(), |
| StatusHistory: status.GetHistory().ToAPIFormat(), |
| } |
| } |
|
|
| func (m *Manager) CancelReplication(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationCancelRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.CancelReplication(req) |
| } |
|
|
| func (m *Manager) DeleteReplication(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationDeleteRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.DeleteReplication(req) |
| } |
|
|
| func (m *Manager) DeleteAllReplications(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationDeleteAllRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.DeleteAllReplications(req) |
| } |
|
|
| func (m *Manager) RemoveReplicaOp(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationRemoveOpRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.RemoveReplicationOp(req) |
| } |
|
|
| func (m *Manager) ReplicationCancellationComplete(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationCancellationCompleteRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.CancellationComplete(req) |
| } |
|
|
| func (m *Manager) DeleteReplicationsByCollection(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationsDeleteByCollectionRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.DeleteReplicationsByCollection(req.Collection) |
| } |
|
|
| func (m *Manager) DeleteReplicationsByTenants(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationsDeleteByTenantsRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| |
| return m.replicationFSM.DeleteReplicationsByTenants(req.Collection, req.Tenants) |
| } |
|
|
| func (m *Manager) ForceDeleteAll(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationForceDeleteAllRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| return m.replicationFSM.ForceDeleteAll() |
| } |
|
|
| func (m *Manager) ForceDeleteByCollection(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationForceDeleteByCollectionRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| return m.replicationFSM.ForceDeleteByCollection(req.Collection) |
| } |
|
|
| func (m *Manager) ForceDeleteByCollectionAndShard(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationForceDeleteByCollectionAndShardRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| return m.replicationFSM.ForceDeleteByCollectionAndShard(req.Collection, req.Shard) |
| } |
|
|
| func (m *Manager) ForceDeleteByTargetNode(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationForceDeleteByTargetNodeRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| return m.replicationFSM.ForceDeleteByTargetNode(req.Node) |
| } |
|
|
| func (m *Manager) ForceDeleteByUuid(c *cmd.ApplyRequest) error { |
| req := &cmd.ReplicationForceDeleteByUuidRequest{} |
| if err := json.Unmarshal(c.SubCommand, req); err != nil { |
| return fmt.Errorf("%w: %w", ErrBadRequest, err) |
| } |
|
|
| return m.replicationFSM.ForceDeleteByUuid(req.Uuid) |
| } |
|
|