File size: 4,546 Bytes
e89cd08 | 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 | // _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2025 Weaviate B.V. All rights reserved.
//
// CONTACT: hello@weaviate.io
//
package objects
import (
"context"
"fmt"
"github.com/weaviate/weaviate/entities/schema"
"github.com/weaviate/weaviate/entities/versioned"
"github.com/go-openapi/strfmt"
"github.com/weaviate/weaviate/entities/additional"
"github.com/weaviate/weaviate/entities/classcache"
"github.com/weaviate/weaviate/entities/dto"
"github.com/weaviate/weaviate/entities/models"
"github.com/weaviate/weaviate/usecases/auth/authorization"
"github.com/weaviate/weaviate/usecases/memwatch"
)
// UpdateObject updates object of class.
// If the class contains a network ref, it has a side effect on the schema: The schema will be updated to
// include this particular network ref class.
func (m *Manager) UpdateObject(ctx context.Context, principal *models.Principal,
class string, id strfmt.UUID, updates *models.Object,
repl *additional.ReplicationProperties,
) (*models.Object, error) {
className := schema.UppercaseClassName(updates.Class)
className, _ = m.resolveAlias(className)
updates.Class = className
if err := m.authorizer.Authorize(ctx, principal, authorization.UPDATE, authorization.Objects(updates.Class, updates.Tenant, updates.ID)); err != nil {
return nil, err
}
ctx = classcache.ContextWithClassCache(ctx)
// we don't reveal any info that the end users cannot get through the structure of the data anyway
fetchedClasses, err := m.schemaManager.GetCachedClassNoAuth(ctx, className)
if err != nil {
return nil, err
}
m.metrics.UpdateObjectInc()
defer m.metrics.UpdateObjectDec()
if err := m.allocChecker.CheckAlloc(memwatch.EstimateObjectMemory(updates)); err != nil {
m.logger.WithError(err).Errorf("memory pressure: cannot process update object")
return nil, fmt.Errorf("cannot process update object: %w", err)
}
return m.updateObjectToConnectorAndSchema(ctx, principal, class, id, updates, repl, fetchedClasses)
}
func (m *Manager) updateObjectToConnectorAndSchema(ctx context.Context,
principal *models.Principal, className string, id strfmt.UUID, updates *models.Object,
repl *additional.ReplicationProperties, fetchedClasses map[string]versioned.Class,
) (*models.Object, error) {
if cls := m.schemaManager.ResolveAlias(className); cls != "" {
className = cls
}
if id != updates.ID {
return nil, NewErrInvalidUserInput("invalid update: field 'id' is immutable")
}
obj, err := m.getObjectFromRepo(ctx, className, id, additional.Properties{}, repl, updates.Tenant)
if err != nil {
return nil, err
}
maxSchemaVersion := fetchedClasses[className].Version
schemaVersion, err := m.autoSchemaManager.autoSchema(ctx, principal, false, fetchedClasses, updates)
if err != nil {
return nil, NewErrInvalidUserInput("invalid object: %v", err)
}
if schemaVersion > maxSchemaVersion {
maxSchemaVersion = schemaVersion
}
m.logger.
WithField("object", "kinds_update_requested").
WithField("original", obj).
WithField("updated", updates).
WithField("id", id).
Debug("received update kind request")
class := fetchedClasses[className].Class
prevObj := obj.Object()
err = m.validateObjectAndNormalizeNames(ctx, repl, updates, prevObj, fetchedClasses)
if err != nil {
return nil, NewErrInvalidUserInput("invalid object: %v", err)
}
// Set the original creation timestamp before call to put,
// otherwise it is lost. This is because `class` is unmarshalled
// directly from the request body, therefore `CreationTimeUnix`
// inherits the zero value.
updates.CreationTimeUnix = obj.Created
updates.LastUpdateTimeUnix = m.timeSource.Now()
err = m.modulesProvider.UpdateVector(ctx, updates, class, m.findObject, m.logger)
if err != nil {
return nil, NewErrInternal("update object: %v", err)
}
if err := m.schemaManager.WaitForUpdate(ctx, maxSchemaVersion); err != nil {
return nil, fmt.Errorf("error waiting for local schema to catch up to version %d: %w", maxSchemaVersion, err)
}
vectors, multiVectors, err := dto.GetVectors(updates.Vectors)
if err != nil {
return nil, fmt.Errorf("put object: cannot get vectors: %w", err)
}
err = m.vectorRepo.PutObject(ctx, updates, updates.Vector, vectors, multiVectors, repl, maxSchemaVersion)
if err != nil {
return nil, fmt.Errorf("put object: %w", err)
}
return updates, nil
}
|