File size: 15,132 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 | // _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
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)
}
// Validate that the command is valid and can be applied with the current schema
if err := ValidateReplicationReplicateShard(m.schemaReader, req); err != nil {
return err
}
// Store the shard replication op in the FSM
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)
}
// Store an op's error emitted by the consumer in the FSM
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)
}
// Store the updated shard replication op in the FSM
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
}
// wrapClassNotFoundErr normalizes errors from SchemaReader.Read so the HTTP layer
// maps them to the correct HTTP status.
// - If the collection is missing, Read returns schema.ErrClassNotFound and does
// not invoke the callback. This wraps it as types.ErrNotFound with the collection
// name so it maps to HTTP 404.
// - Errors returned by the callback (e.g., shard not found) are passed through unchanged.
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)
}
// Trigger cancellation of the replication operation in the FSM
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)
}
// Trigger deletion of the replication operation in the FSM
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)
}
// Trigger deletion of all replication operation in the FSM
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)
}
// Remove the replication operation itself from the FSM
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)
}
// Mark the replication operation as cancelled in the FSM
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)
}
// Trigger deletion of all replication operations for the specified class in the FSM
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)
}
// Trigger deletion of all replication operations for the specified class in the FSM
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)
}
|