Spaces:
Running
Running
File size: 9,632 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 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package db
import (
"context"
"fmt"
"sync"
"time"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/weaviate/weaviate/entities/backup"
"github.com/weaviate/weaviate/entities/schema"
)
type BackupState struct {
BackupID string
InProgress bool
}
// Backupable returns whether all given class can be backed up.
func (db *DB) Backupable(ctx context.Context, classes []string) error {
for _, c := range classes {
className := schema.ClassName(c)
idx := db.GetIndex(className)
if idx == nil || idx.Config.ClassName != className {
return fmt.Errorf("class %v doesn't exist", c)
}
}
return nil
}
// ListBackupable returns a list of all classes which can be backed up.
func (db *DB) ListBackupable() []string {
cs := make([]string, 0, len(db.indices))
db.indexLock.RLock()
defer db.indexLock.RUnlock()
for _, idx := range db.indices {
cls := string(idx.Config.ClassName)
cs = append(cs, cls)
}
return cs
}
// BackupDescriptors returns a channel of class descriptors.
// Class descriptor records everything needed to restore a class
// If an error happens a descriptor with an error will be written to the channel just before closing it.
func (db *DB) BackupDescriptors(ctx context.Context, bakid string, classes []string,
) <-chan backup.ClassDescriptor {
ds := make(chan backup.ClassDescriptor, len(classes))
go func() {
for _, c := range classes {
desc := backup.ClassDescriptor{Name: c}
idx := db.GetIndex(schema.ClassName(c))
if idx == nil {
desc.Error = fmt.Errorf("class %v doesn't exist any more", c)
} else if err := idx.descriptor(ctx, bakid, &desc); err != nil {
desc.Error = fmt.Errorf("backup class %v descriptor: %w", c, err)
} else {
desc.Error = ctx.Err()
}
ds <- desc
if desc.Error != nil {
break
}
}
close(ds)
}()
return ds
}
func (db *DB) ShardsBackup(
ctx context.Context, bakID, class string, shards []string,
) (_ backup.ClassDescriptor, err error) {
cd := backup.ClassDescriptor{Name: class}
idx := db.GetIndex(schema.ClassName(class))
if idx == nil {
return cd, fmt.Errorf("no index for class %q", class)
}
if err := idx.initBackup(bakID); err != nil {
return cd, fmt.Errorf("init backup state for class %q: %w", class, err)
}
defer func() {
if err != nil {
go idx.ReleaseBackup(ctx, bakID)
}
}()
sm := make(map[string]ShardLike, len(shards))
for _, shardName := range shards {
shard := idx.shards.Load(shardName)
if shard == nil {
return cd, fmt.Errorf("no shard %q for class %q", shardName, class)
}
sm[shardName] = shard
}
// prevent writing into the index during collection of metadata
idx.backupMutex.Lock()
defer idx.backupMutex.Unlock()
for shardName, shard := range sm {
if err := shard.BeginBackup(ctx); err != nil {
return cd, fmt.Errorf("class %q: shard %q: begin backup: %w", class, shardName, err)
}
sd := backup.ShardDescriptor{Name: shardName}
if err := shard.ListBackupFiles(ctx, &sd); err != nil {
return cd, fmt.Errorf("class %q: shard %q: list backup files: %w", class, shardName, err)
}
cd.Shards = append(cd.Shards, &sd)
}
return cd, nil
}
// ReleaseBackup release resources acquired by the index during backup
func (db *DB) ReleaseBackup(ctx context.Context, bakID, class string) (err error) {
fields := logrus.Fields{
"op": "release_backup",
"class": class,
"id": bakID,
}
db.logger.WithFields(fields).Debug("starting")
begin := time.Now()
defer func() {
l := db.logger.WithFields(fields).WithField("took", time.Since(begin))
if err != nil {
l.Error(err)
return
}
l.Debug("finish")
}()
idx := db.GetIndex(schema.ClassName(class))
if idx != nil {
return idx.ReleaseBackup(ctx, bakID)
}
return nil
}
func (db *DB) ClassExists(name string) bool {
return db.IndexExists(schema.ClassName(name))
}
// Returns the list of nodes where shards of class are contained.
// If there are no shards for the class, returns an empty list
// If there are shards for the class but no nodes are found, return an error
func (db *DB) Shards(ctx context.Context, class string) ([]string, error) {
unique := make(map[string]struct{})
ss := db.schemaGetter.CopyShardingState(class)
if len(ss.Physical) == 0 {
return []string{}, nil
}
for _, shard := range ss.Physical {
for _, node := range shard.BelongsToNodes {
unique[node] = struct{}{}
}
}
var (
nodes = make([]string, len(unique))
counter = 0
)
for node := range unique {
nodes[counter] = node
counter++
}
if len(nodes) == 0 {
return nil, fmt.Errorf("found %v shards, but has 0 nodes", len(ss.Physical))
}
return nodes, nil
}
func (db *DB) ListClasses(ctx context.Context) []string {
classes := db.schemaGetter.GetSchemaSkipAuth().Objects.Classes
classNames := make([]string, len(classes))
for i, class := range classes {
classNames[i] = class.Class
}
return classNames
}
// descriptor record everything needed to restore a class
func (i *Index) descriptor(ctx context.Context, backupID string, desc *backup.ClassDescriptor) (err error) {
if err := i.initBackup(backupID); err != nil {
return err
}
defer func() {
if err != nil {
go i.ReleaseBackup(ctx, backupID)
}
}()
// prevent writing into the index during collection of metadata
i.backupMutex.Lock()
defer i.backupMutex.Unlock()
if err = i.ForEachShard(func(name string, s ShardLike) error {
if err = s.BeginBackup(ctx); err != nil {
return fmt.Errorf("pause compaction and flush: %w", err)
}
var sd backup.ShardDescriptor
if err := s.ListBackupFiles(ctx, &sd); err != nil {
return fmt.Errorf("list shard %v files: %w", s.Name(), err)
}
desc.Shards = append(desc.Shards, &sd)
return nil
}); err != nil {
return err
}
if desc.ShardingState, err = i.marshalShardingState(); err != nil {
return fmt.Errorf("marshal sharding state %w", err)
}
if desc.Schema, err = i.marshalSchema(); err != nil {
return fmt.Errorf("marshal schema %w", err)
}
return nil
}
// ReleaseBackup marks the specified backup as inactive and restarts all
// async background and maintenance processes. It errors if the backup does not exist
// or is already inactive.
func (i *Index) ReleaseBackup(ctx context.Context, id string) error {
defer i.resetBackupState()
if err := i.resumeMaintenanceCycles(ctx); err != nil {
return err
}
return nil
}
func (i *Index) initBackup(id string) error {
new := &BackupState{
BackupID: id,
InProgress: true,
}
if !i.lastBackup.CompareAndSwap(nil, new) {
bid := ""
if x := i.lastBackup.Load(); x != nil {
bid = x.BackupID
}
return errors.Errorf(
"cannot create new backup, backup ‘%s’ is not yet released, this "+
"means its contents have not yet been fully copied to its destination, "+
"try again later", bid)
}
return nil
}
func (i *Index) resetBackupState() {
i.lastBackup.Store(nil)
}
func (i *Index) resumeMaintenanceCycles(ctx context.Context) (lastErr error) {
i.ForEachShard(func(name string, shard ShardLike) error {
if err := shard.resumeMaintenanceCycles(ctx); err != nil {
lastErr = err
i.logger.WithField("shard", name).WithField("op", "resume_maintenance").Error(err)
}
time.Sleep(time.Millisecond * 10)
return nil
})
return lastErr
}
func (i *Index) marshalShardingState() ([]byte, error) {
b, err := i.getSchema.CopyShardingState(i.Config.ClassName.String()).JSON()
if err != nil {
return nil, errors.Wrap(err, "marshal sharding state")
}
return b, nil
}
func (i *Index) marshalSchema() ([]byte, error) {
schema := i.getSchema.GetSchemaSkipAuth()
b, err := schema.GetClass(i.Config.ClassName).MarshalBinary()
if err != nil {
return nil, errors.Wrap(err, "marshal schema")
}
return b, err
}
const (
mutexRetryDuration = time.Millisecond * 500
mutexNotifyDuration = 20 * time.Second
)
// backupMutex is an adapter built around rwmutex that facilitates cooperative blocking between write and read locks
type backupMutex struct {
sync.RWMutex
log logrus.FieldLogger
retryDuration time.Duration
notifyDuration time.Duration
}
// LockWithContext attempts to acquire a write lock while respecting the provided context.
// It reports whether the lock acquisition was successful or if the context has been cancelled.
func (m *backupMutex) LockWithContext(ctx context.Context) error {
return m.lock(ctx, m.TryLock)
}
func (m *backupMutex) lock(ctx context.Context, tryLock func() bool) error {
if tryLock() {
return nil
}
curTime := time.Now()
t := time.NewTicker(m.retryDuration)
defer t.Stop()
for {
select {
case <-ctx.Done():
return ctx.Err()
case <-t.C:
if tryLock() {
return nil
}
if time.Since(curTime) > m.notifyDuration {
curTime = time.Now()
m.log.Info("backup process waiting for ongoing writes to finish")
}
}
}
}
func (s *backupMutex) RLockGuard(reader func() error) error {
s.RLock()
defer s.RUnlock()
return reader()
}
|