| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| 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" |
| ) |
|
|
| |
| |
| |
| 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) |
| |
| 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) |
| } |
|
|
| |
| |
| |
| |
| 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 |
| } |
|
|