Spaces:
Running
Running
File size: 9,295 Bytes
b110593 |
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 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package objects
import (
"context"
"fmt"
"strings"
"sync"
"github.com/go-openapi/strfmt"
"github.com/weaviate/weaviate/entities/additional"
"github.com/weaviate/weaviate/entities/models"
"github.com/weaviate/weaviate/entities/schema"
"github.com/weaviate/weaviate/entities/schema/crossref"
)
// AddReferences Class Instances in batch to the connected DB
func (b *BatchManager) AddReferences(ctx context.Context, principal *models.Principal,
refs []*models.BatchReference, repl *additional.ReplicationProperties,
) (BatchReferences, error) {
err := b.authorizer.Authorize(principal, "update", "batch/*")
if err != nil {
return nil, err
}
unlock, err := b.locks.LockSchema()
if err != nil {
return nil, NewErrInternal("could not acquire lock: %v", err)
}
defer unlock()
b.metrics.BatchRefInc()
defer b.metrics.BatchRefDec()
return b.addReferences(ctx, principal, refs, repl)
}
func (b *BatchManager) addReferences(ctx context.Context, principal *models.Principal,
refs []*models.BatchReference, repl *additional.ReplicationProperties,
) (BatchReferences, error) {
if err := b.validateReferenceForm(refs); err != nil {
return nil, NewErrInvalidUserInput("invalid params: %v", err)
}
batchReferences := b.validateReferencesConcurrently(ctx, principal, refs)
if err := b.autodetectToClass(ctx, principal, batchReferences); err != nil {
return nil, err
}
if res, err := b.vectorRepo.AddBatchReferences(ctx, batchReferences, repl); err != nil {
return nil, NewErrInternal("could not add batch request to connector: %v", err)
} else {
return res, nil
}
}
func (b *BatchManager) validateReferenceForm(refs []*models.BatchReference) error {
if len(refs) == 0 {
return fmt.Errorf("length cannot be 0, need at least one reference for batching")
}
return nil
}
func (b *BatchManager) validateReferencesConcurrently(ctx context.Context,
principal *models.Principal, refs []*models.BatchReference,
) BatchReferences {
c := make(chan BatchReference, len(refs))
wg := new(sync.WaitGroup)
// Generate a goroutine for each separate request
for i, ref := range refs {
wg.Add(1)
go b.validateReference(ctx, principal, wg, ref, i, &c)
}
wg.Wait()
close(c)
return referencesChanToSlice(c)
}
// autodetectToClass gets the class name of the referenced class through the schema definition
func (b *BatchManager) autodetectToClass(ctx context.Context,
principal *models.Principal, batchReferences BatchReferences,
) error {
classPropTarget := make(map[string]string)
scheme, err := b.schemaManager.GetSchema(principal)
if err != nil {
return NewErrInvalidUserInput("get schema: %v", err)
}
for i, ref := range batchReferences {
// get to class from property datatype
if ref.To.Class != "" || ref.Err != nil {
continue
}
className := string(ref.From.Class)
propName := schema.LowercaseFirstLetter(string(ref.From.Property))
target, ok := classPropTarget[className+propName]
if !ok {
class := scheme.FindClassByName(ref.From.Class)
if class == nil {
batchReferences[i].Err = fmt.Errorf("class %s does not exist", className)
continue
}
prop, err := schema.GetPropertyByName(class, propName)
if err != nil {
batchReferences[i].Err = fmt.Errorf("property %s does not exist for class %s", propName, className)
continue
}
if len(prop.DataType) > 1 {
continue // can't auto-detect for multi-target
}
target = prop.DataType[0] // datatype is the name of the class that is referenced
classPropTarget[className+propName] = target
}
batchReferences[i].To.Class = target
}
return nil
}
func (b *BatchManager) validateReference(ctx context.Context, principal *models.Principal,
wg *sync.WaitGroup, ref *models.BatchReference, i int, resultsC *chan BatchReference,
) {
defer wg.Done()
var validateErrors []error
source, err := crossref.ParseSource(string(ref.From))
if err != nil {
validateErrors = append(validateErrors, err)
} else if !source.Local {
validateErrors = append(validateErrors, fmt.Errorf("source class must always point to the local peer, but got %s",
source.PeerName))
}
target, err := crossref.Parse(string(ref.To))
if err != nil {
validateErrors = append(validateErrors, err)
} else if !target.Local {
validateErrors = append(validateErrors, fmt.Errorf("importing network references in batch is not possible. "+
"Please perform a regular non-batch import for network references, got peer %s",
target.PeerName))
}
// target id must be lowercase
target.TargetID = strfmt.UUID(strings.ToLower(target.TargetID.String()))
if len(validateErrors) == 0 {
err = nil
} else {
err = joinErrors(validateErrors)
}
if err == nil && shouldValidateMultiTenantRef(ref.Tenant, source, target) {
// can only validate multi-tenancy when everything above succeeds
err = validateReferenceMultiTenancy(ctx, principal,
b.schemaManager, b.vectorRepo, source, target, ref.Tenant)
}
*resultsC <- BatchReference{
From: source,
To: target,
Err: err,
OriginalIndex: i,
Tenant: ref.Tenant,
}
}
func validateReferenceMultiTenancy(ctx context.Context,
principal *models.Principal, schemaManager schemaManager,
repo VectorRepo, source *crossref.RefSource, target *crossref.Ref,
tenant string,
) error {
if source == nil || target == nil {
return fmt.Errorf("can't validate multi-tenancy for nil refs")
}
sourceClass, targetClass, err := getReferenceClasses(
ctx, principal, schemaManager, source.Class.String(), target.Class)
if err != nil {
return err
}
sourceEnabled := schema.MultiTenancyEnabled(sourceClass)
targetEnabled := schema.MultiTenancyEnabled(targetClass)
if !sourceEnabled && targetEnabled {
return fmt.Errorf("invalid reference: cannot reference a multi-tenant " +
"enabled class from a non multi-tenant enabled class")
}
if sourceEnabled && !targetEnabled {
if err := validateTenantRefObject(ctx, repo, sourceClass, source.TargetID, tenant); err != nil {
return fmt.Errorf("source: %w", err)
}
if err := validateTenantRefObject(ctx, repo, targetClass, target.TargetID, ""); err != nil {
return fmt.Errorf("target: %w", err)
}
}
// if both classes have MT enabled but different tenant keys,
// no cross-tenant references can be made
if sourceEnabled && targetEnabled {
if err := validateTenantRefObject(ctx, repo, sourceClass, source.TargetID, tenant); err != nil {
return fmt.Errorf("source: %w", err)
}
if err := validateTenantRefObject(ctx, repo, targetClass, target.TargetID, tenant); err != nil {
return fmt.Errorf("target: %w", err)
}
}
return nil
}
func getReferenceClasses(ctx context.Context,
principal *models.Principal, schemaManager schemaManager,
classFrom, classTo string,
) (sourceClass *models.Class, targetClass *models.Class, err error) {
if classFrom == "" || classTo == "" {
err = fmt.Errorf("references involving a multi-tenancy enabled class " +
"requires class name in the beacon url")
return
}
sourceClass, err = schemaManager.GetClass(ctx, principal, classFrom)
if err != nil {
err = fmt.Errorf("get source class %q: %w", classFrom, err)
return
}
if sourceClass == nil {
err = fmt.Errorf("source class %q not found in schema", classFrom)
return
}
targetClass, err = schemaManager.GetClass(ctx, principal, classTo)
if err != nil {
err = fmt.Errorf("get target class %q: %w", classTo, err)
return
}
if targetClass == nil {
err = fmt.Errorf("target class %q not found in schema", classTo)
return
}
return
}
// validateTenantRefObject ensures that object exist for the given tenant key.
// This asserts that no cross-tenant references can occur,
// as a class+id which belongs to a different
// tenant will not be found in the searched tenant shard
func validateTenantRefObject(ctx context.Context, repo VectorRepo,
class *models.Class, ID strfmt.UUID, tenant string,
) error {
exists, err := repo.Exists(ctx, class.Class, ID, nil, tenant)
if err != nil {
return fmt.Errorf("get object %s/%s: %w", class.Class, ID, err)
}
if !exists {
return fmt.Errorf("object %s/%s not found for tenant %q", class.Class, ID, tenant)
}
return nil
}
func referencesChanToSlice(c chan BatchReference) BatchReferences {
result := make([]BatchReference, len(c))
for reference := range c {
result[reference.OriginalIndex] = reference
}
return result
}
func joinErrors(errors []error) error {
errorStrings := []string{}
for _, err := range errors {
if err != nil {
errorStrings = append(errorStrings, err.Error())
}
}
if len(errorStrings) == 0 {
return nil
}
return fmt.Errorf(strings.Join(errorStrings, ", "))
}
|