Spaces:
Running
Running
File size: 18,268 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 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 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package hnsw
import (
"context"
"fmt"
"runtime/debug"
"sync"
"time"
"github.com/pkg/errors"
"github.com/weaviate/weaviate/adapters/repos/db/helpers"
"github.com/weaviate/weaviate/adapters/repos/db/vector/cache"
"github.com/weaviate/weaviate/adapters/repos/db/vector/compressionhelpers"
"github.com/weaviate/weaviate/entities/cyclemanager"
"github.com/weaviate/weaviate/entities/storobj"
)
type breakCleanUpTombstonedNodesFunc func() bool
// Delete attaches a tombstone to an item so it can be periodically cleaned up
// later and the edges reassigned
func (h *hnsw) Delete(ids ...uint64) error {
h.compressActionLock.RLock()
defer h.compressActionLock.RUnlock()
h.deleteVsInsertLock.Lock()
defer h.deleteVsInsertLock.Unlock()
h.deleteLock.Lock()
defer h.deleteLock.Unlock()
before := time.Now()
defer h.metrics.TrackDelete(before, "total")
if err := h.addTombstone(ids...); err != nil {
return err
}
for _, id := range ids {
h.metrics.DeleteVector()
// Adding a tombstone might not be enough in some cases, if the tombstoned
// entry was the entrypoint this might lead to issues for following inserts:
// On a nearly empty graph the entrypoint might be the only viable element to
// connect to, however, because the entrypoint itself is tombstones
// connections to it are impossible. So, unless we find a new entrypoint,
// subsequent inserts might end up isolated (without edges) in the graph.
// This is especially true if the tombstoned entrypoint is the only node in
// the graph. In this case we must reset the graph, so it acts like an empty
// one. Otherwise we'd insert the next id and have only one possible node to
// connect it to (the entrypoint). With that one being tombstoned, the new
// node would be guaranteed to have zero edges
node := h.nodeByID(id)
if node == nil {
// node was already deleted/cleaned up
continue
}
if h.getEntrypoint() == id {
beforeDeleteEP := time.Now()
defer h.metrics.TrackDelete(beforeDeleteEP, "delete_entrypoint")
denyList := h.tombstonesAsDenyList()
if onlyNode, err := h.resetIfOnlyNode(node, denyList); err != nil {
return errors.Wrap(err, "reset index")
} else if !onlyNode {
if err := h.deleteEntrypoint(node, denyList); err != nil {
return errors.Wrap(err, "delete entrypoint")
}
}
}
}
return nil
}
func (h *hnsw) resetIfEmpty() (empty bool, err error) {
h.resetLock.Lock()
defer h.resetLock.Unlock()
h.Lock()
defer h.Unlock()
empty = func() bool {
h.shardedNodeLocks.RLock(h.entryPointID)
defer h.shardedNodeLocks.RUnlock(h.entryPointID)
return h.isEmptyUnlocked()
}()
// It can happen that between calls of isEmptyUnlocked and resetUnlocked
// values of h.nodes will change (due to locks being RUnlocked and Locked again)
// This is acceptable in order to avoid long Locking of all striped locks
if empty {
h.shardedNodeLocks.LockAll()
defer h.shardedNodeLocks.UnlockAll()
return true, h.resetUnlocked()
}
return false, nil
}
func (h *hnsw) resetIfOnlyNode(needle *vertex, denyList helpers.AllowList) (onlyNode bool, err error) {
h.resetLock.Lock()
defer h.resetLock.Unlock()
h.Lock()
defer h.Unlock()
onlyNode = func() bool {
h.shardedNodeLocks.RLockAll()
defer h.shardedNodeLocks.RUnlockAll()
return h.isOnlyNodeUnlocked(needle, denyList)
}()
// It can happen that between calls of isOnlyNodeUnlocked and resetUnlocked
// values of h.nodes will change (due to locks being RUnlocked and Locked again)
// This is acceptable in order to avoid long Locking of all striped locks
if onlyNode {
h.shardedNodeLocks.LockAll()
defer h.shardedNodeLocks.UnlockAll()
return true, h.resetUnlocked()
}
return false, nil
}
func (h *hnsw) resetUnlocked() error {
h.resetCtxCancel()
resetCtx, resetCtxCancel := context.WithCancel(context.Background())
h.resetCtx = resetCtx
h.resetCtxCancel = resetCtxCancel
h.entryPointID = 0
h.currentMaximumLayer = 0
h.initialInsertOnce = &sync.Once{}
h.nodes = make([]*vertex, cache.InitialSize)
return h.commitLog.Reset()
}
func (h *hnsw) tombstonesAsDenyList() helpers.AllowList {
deleteList := helpers.NewAllowList()
h.tombstoneLock.Lock()
defer h.tombstoneLock.Unlock()
tombstones := h.tombstones
for id := range tombstones {
deleteList.Insert(id)
}
return deleteList
}
func (h *hnsw) getEntrypoint() uint64 {
h.RLock()
defer h.RUnlock()
return h.entryPointID
}
func (h *hnsw) copyTombstonesToAllowList(breakCleanUpTombstonedNodes breakCleanUpTombstonedNodesFunc) (ok bool, deleteList helpers.AllowList) {
h.resetLock.Lock()
defer h.resetLock.Unlock()
if breakCleanUpTombstonedNodes() {
return false, nil
}
h.RLock()
lenOfNodes := uint64(len(h.nodes))
h.RUnlock()
h.tombstoneLock.Lock()
defer h.tombstoneLock.Unlock()
deleteList = helpers.NewAllowList()
for id := range h.tombstones {
if lenOfNodes <= id {
// we're trying to delete an id outside the possible range, nothing to do
continue
}
deleteList.Insert(id)
}
if deleteList.IsEmpty() {
return false, nil
}
return true, deleteList
}
// CleanUpTombstonedNodes removes nodes with a tombstone and reassigns
// edges that were previously pointing to the tombstoned nodes
func (h *hnsw) CleanUpTombstonedNodes(shouldAbort cyclemanager.ShouldAbortCallback) error {
_, err := h.cleanUpTombstonedNodes(shouldAbort)
return err
}
func (h *hnsw) cleanUpTombstonedNodes(shouldAbort cyclemanager.ShouldAbortCallback) (bool, error) {
defer func() {
err := recover()
if err != nil {
h.logger.WithField("panic", err).Errorf("class %s: tombstone cleanup panicked", h.className)
debug.PrintStack()
}
}()
h.metrics.StartCleanup(1)
defer h.metrics.EndCleanup(1)
h.resetLock.Lock()
resetCtx := h.resetCtx
h.resetLock.Unlock()
breakCleanUpTombstonedNodes := func() bool {
return resetCtx.Err() != nil || shouldAbort()
}
executed := false
ok, deleteList := h.copyTombstonesToAllowList(breakCleanUpTombstonedNodes)
if !ok {
return executed, nil
}
executed = true
if ok, err := h.reassignNeighborsOf(deleteList, breakCleanUpTombstonedNodes); err != nil {
return executed, err
} else if !ok {
return executed, nil
}
if ok, err := h.replaceDeletedEntrypoint(deleteList, breakCleanUpTombstonedNodes); err != nil {
return executed, err
} else if !ok {
return executed, nil
}
if ok, err := h.removeTombstonesAndNodes(deleteList, breakCleanUpTombstonedNodes); err != nil {
return executed, err
} else if !ok {
return executed, nil
}
if _, err := h.resetIfEmpty(); err != nil {
return executed, err
}
return executed, nil
}
func (h *hnsw) replaceDeletedEntrypoint(deleteList helpers.AllowList, breakCleanUpTombstonedNodes breakCleanUpTombstonedNodesFunc) (ok bool, err error) {
h.resetLock.Lock()
defer h.resetLock.Unlock()
if breakCleanUpTombstonedNodes() {
return false, nil
}
it := deleteList.Iterator()
for id, ok := it.Next(); ok; id, ok = it.Next() {
if h.getEntrypoint() == id {
// this a special case because:
//
// 1. we need to find a new entrypoint, if this is the last point on this
// level, we need to find an entrypoint on a lower level
// 2. there is a risk that this is the only node in the entire graph. In
// this case we must reset the graph
h.shardedNodeLocks.RLock(id)
node := h.nodes[id]
h.shardedNodeLocks.RUnlock(id)
if err := h.deleteEntrypoint(node, deleteList); err != nil {
return false, errors.Wrap(err, "delete entrypoint")
}
}
}
return true, nil
}
func (h *hnsw) reassignNeighborsOf(deleteList helpers.AllowList, breakCleanUpTombstonedNodes breakCleanUpTombstonedNodesFunc) (ok bool, err error) {
h.RLock()
size := len(h.nodes)
h.RUnlock()
for n := 0; n < size; n++ {
if ok, err := h.reassignNeighbor(uint64(n), deleteList, breakCleanUpTombstonedNodes); err != nil {
return false, errors.Wrap(err, "reassign neighbor edges")
} else if !ok {
return false, nil
}
}
return true, nil
}
func (h *hnsw) reassignNeighbor(neighbor uint64, deleteList helpers.AllowList, breakCleanUpTombstonedNodes breakCleanUpTombstonedNodesFunc) (ok bool, err error) {
h.resetLock.Lock()
defer h.resetLock.Unlock()
if breakCleanUpTombstonedNodes() {
return false, nil
}
h.RLock()
h.shardedNodeLocks.RLock(neighbor)
neighborNode := h.nodes[neighbor]
h.shardedNodeLocks.RUnlock(neighbor)
currentEntrypoint := h.entryPointID
currentMaximumLayer := h.currentMaximumLayer
h.RUnlock()
if neighborNode == nil || deleteList.Contains(neighborNode.id) {
return true, nil
}
var neighborVec []float32
var compressorDistancer compressionhelpers.CompressorDistancer
if h.compressed.Load() {
compressorDistancer = h.compressor.NewDistancerFromID(neighbor)
} else {
neighborVec, err = h.cache.Get(context.Background(), neighbor)
}
if err != nil {
var e storobj.ErrNotFound
if errors.As(err, &e) {
h.handleDeletedNode(e.DocID)
return true, nil
} else {
// not a typed error, we can recover from, return with err
return false, errors.Wrap(err, "get neighbor vec")
}
}
neighborNode.Lock()
neighborLevel := neighborNode.level
if !connectionsPointTo(neighborNode.connections, deleteList) {
// nothing needs to be changed, skip
neighborNode.Unlock()
return true, nil
}
neighborNode.Unlock()
entryPointID, err := h.findBestEntrypointForNode(currentMaximumLayer,
neighborLevel, currentEntrypoint, neighborVec, compressorDistancer)
if err != nil {
return false, errors.Wrap(err, "find best entrypoint")
}
if entryPointID == neighbor {
// if we use ourselves as entrypoint and delete all connections in the
// next step, we won't find any neighbors, so we need to use an
// alternative entryPoint in this round
if h.isOnlyNode(&vertex{id: neighbor}, deleteList) {
neighborNode.Lock()
// delete all existing connections before re-assigning
neighborLevel = neighborNode.level
neighborNode.connections = make([][]uint64, neighborLevel+1)
neighborNode.Unlock()
if err := h.commitLog.ClearLinks(neighbor); err != nil {
return false, err
}
return true, nil
}
tmpDenyList := deleteList.DeepCopy()
tmpDenyList.Insert(entryPointID)
alternative, level := h.findNewLocalEntrypoint(tmpDenyList, currentMaximumLayer,
entryPointID)
if level > neighborLevel {
neighborNode.Lock()
// reset connections according to level
neighborNode.connections = make([][]uint64, level+1)
neighborNode.Unlock()
}
neighborLevel = level
entryPointID = alternative
}
neighborNode.markAsMaintenance()
neighborNode.Lock()
// delete all existing connections before re-assigning
for level := range neighborNode.connections {
neighborNode.connections[level] = neighborNode.connections[level][:0]
}
neighborNode.Unlock()
if err := h.commitLog.ClearLinks(neighbor); err != nil {
return false, err
}
if err := h.findAndConnectNeighbors(neighborNode, entryPointID, neighborVec, compressorDistancer,
neighborLevel, currentMaximumLayer, deleteList); err != nil {
return false, errors.Wrap(err, "find and connect neighbors")
}
neighborNode.unmarkAsMaintenance()
h.metrics.CleanedUp()
return true, nil
}
func connectionsPointTo(connections [][]uint64, needles helpers.AllowList) bool {
for _, atLevel := range connections {
for _, pointer := range atLevel {
if needles.Contains(pointer) {
return true
}
}
}
return false
}
// deleteEntrypoint deletes the current entrypoint and replaces it with a new
// one. It respects the attached denyList, so that it doesn't assign another
// node which also has a tombstone and is also in the process of being cleaned
// up
func (h *hnsw) deleteEntrypoint(node *vertex, denyList helpers.AllowList) error {
if h.isOnlyNode(node, denyList) {
// no point in finding another entrypoint if this is the only node
return nil
}
node.Lock()
level := node.level
id := node.id
node.Unlock()
newEntrypoint, level, ok := h.findNewGlobalEntrypoint(denyList, level, id)
if !ok {
return nil
}
h.Lock()
h.entryPointID = newEntrypoint
h.currentMaximumLayer = level
h.Unlock()
if err := h.commitLog.SetEntryPointWithMaxLayer(newEntrypoint, level); err != nil {
return err
}
return nil
}
// returns entryPointID, level and whether a change occurred
func (h *hnsw) findNewGlobalEntrypoint(denyList helpers.AllowList, targetLevel int,
oldEntrypoint uint64,
) (uint64, int, bool) {
if h.getEntrypoint() != oldEntrypoint {
// entrypoint has already been changed (this could be due to a new import
// for example, nothing to do for us
return 0, 0, false
}
for l := targetLevel; l >= 0; l-- {
// ideally we can find a new entrypoint at the same level of the
// to-be-deleted node. However, there is a chance it was the only node on
// that level, in that case we need to look at the next lower level for a
// better candidate
h.RLock()
maxNodes := len(h.nodes)
h.RUnlock()
for i := 0; i < maxNodes; i++ {
if h.getEntrypoint() != oldEntrypoint {
// entrypoint has already been changed (this could be due to a new import
// for example, nothing to do for us
return 0, 0, false
}
if denyList.Contains(uint64(i)) {
continue
}
h.shardedNodeLocks.RLock(uint64(i))
candidate := h.nodes[i]
h.shardedNodeLocks.RUnlock(uint64(i))
if candidate == nil {
continue
}
candidate.Lock()
candidateLevel := candidate.level
candidate.Unlock()
if candidateLevel != l {
// not reaching up to the current level, skip in hope of finding another candidate
continue
}
// we have a node that matches
return uint64(i), l, true
}
}
// we made it through the entire graph and didn't find a new entrypoint all
// the way down to level 0. This can only mean the graph is empty, which is
// unexpected. This situation should have been prevented by the deleteLock.
panic(fmt.Sprintf(
"class %s: shard %s: findNewEntrypoint called on an empty hnsw graph",
h.className, h.shardName))
}
// returns entryPointID, level and whether a change occurred
func (h *hnsw) findNewLocalEntrypoint(denyList helpers.AllowList, targetLevel int,
oldEntrypoint uint64,
) (uint64, int) {
if h.getEntrypoint() != oldEntrypoint {
// the current global entrypoint is different from our local entrypoint, so
// we can just use the global one, as the global one is guaranteed to be
// present on every level, i.e. it is always chosen from the highest
// currently available level
return h.getEntrypoint(), h.currentMaximumLayer
}
h.RLock()
maxNodes := len(h.nodes)
h.RUnlock()
for l := targetLevel; l >= 0; l-- {
// ideally we can find a new entrypoint at the same level of the
// to-be-deleted node. However, there is a chance it was the only node on
// that level, in that case we need to look at the next lower level for a
// better candidate
for i := 0; i < maxNodes; i++ {
if denyList.Contains(uint64(i)) {
continue
}
h.shardedNodeLocks.RLock(uint64(i))
candidate := h.nodes[i]
h.shardedNodeLocks.RUnlock(uint64(i))
if candidate == nil {
continue
}
candidate.Lock()
candidateLevel := candidate.level
candidate.Unlock()
if candidateLevel != l {
// not reaching up to the current level, skip in hope of finding another candidate
continue
}
// we have a node that matches
return uint64(i), l
}
}
panic(fmt.Sprintf(
"class %s: shard %s: findNewLocalEntrypoint called on an empty hnsw graph",
h.className, h.shardName))
}
func (h *hnsw) isOnlyNode(needle *vertex, denyList helpers.AllowList) bool {
h.RLock()
h.shardedNodeLocks.RLockAll()
defer h.RUnlock()
defer h.shardedNodeLocks.RUnlockAll()
return h.isOnlyNodeUnlocked(needle, denyList)
}
func (h *hnsw) isOnlyNodeUnlocked(needle *vertex, denyList helpers.AllowList) bool {
for _, node := range h.nodes {
if node == nil || node.id == needle.id || denyList.Contains(node.id) {
continue
}
return false
}
return true
}
func (h *hnsw) hasTombstone(id uint64) bool {
h.tombstoneLock.RLock()
defer h.tombstoneLock.RUnlock()
_, ok := h.tombstones[id]
return ok
}
func (h *hnsw) addTombstone(ids ...uint64) error {
h.tombstoneLock.Lock()
defer h.tombstoneLock.Unlock()
for _, id := range ids {
h.metrics.AddTombstone()
h.tombstones[id] = struct{}{}
if err := h.commitLog.AddTombstone(id); err != nil {
return err
}
}
return nil
}
func (h *hnsw) removeTombstonesAndNodes(deleteList helpers.AllowList, breakCleanUpTombstonedNodes breakCleanUpTombstonedNodesFunc) (ok bool, err error) {
it := deleteList.Iterator()
for id, ok := it.Next(); ok; id, ok = it.Next() {
h.metrics.RemoveTombstone()
h.tombstoneLock.Lock()
delete(h.tombstones, id)
h.tombstoneLock.Unlock()
h.resetLock.Lock()
if !breakCleanUpTombstonedNodes() {
h.shardedNodeLocks.Lock(id)
h.nodes[id] = nil
h.shardedNodeLocks.Unlock(id)
if h.compressed.Load() {
h.compressor.Delete(context.TODO(), id)
} else {
h.cache.Delete(context.TODO(), id)
}
if err := h.commitLog.DeleteNode(id); err != nil {
h.resetLock.Unlock()
return false, err
}
}
h.resetLock.Unlock()
if err := h.commitLog.RemoveTombstone(id); err != nil {
return false, err
}
}
return true, nil
}
|