panic if replication config could not be read from disk (#15685)

If replication config could not be read from bucket metadata for some
reason, issue a panic so that unexpected replication outcomes can
be avoided for replicated buckets.

For similar reasons, adding a panic while fetching object-lock config
if it failed for reason other than non-existence of config.
This commit is contained in:
Poorna 2022-09-13 21:23:33 -07:00 committed by GitHub
parent e152b2a975
commit a0fb0c1835
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View File

@ -19,6 +19,7 @@ package cmd
import ( import (
"context" "context"
"errors"
"math" "math"
"net/http" "net/http"
@ -46,11 +47,14 @@ func (sys *BucketObjectLockSys) Get(bucketName string) (r objectlock.Retention,
config, _, err := globalBucketMetadataSys.GetObjectLockConfig(bucketName) config, _, err := globalBucketMetadataSys.GetObjectLockConfig(bucketName)
if err != nil { if err != nil {
if _, ok := err.(BucketObjectLockConfigNotFound); ok { if errors.Is(err, BucketObjectLockConfigNotFound{Bucket: bucketName}) {
return r, nil return r, nil
} }
if errors.Is(err, errInvalidArgument) {
return r, err
}
logger.CriticalIf(context.Background(), err)
return r, err return r, err
} }
return config.ToRetention(), nil return config.ToRetention(), nil
} }

View File

@ -81,6 +81,12 @@ func getReplicationConfig(ctx context.Context, bucketName string) (rc *replicati
} }
rCfg, _, err := globalBucketMetadataSys.GetReplicationConfig(ctx, bucketName) rCfg, _, err := globalBucketMetadataSys.GetReplicationConfig(ctx, bucketName)
if err != nil {
if errors.Is(err, BucketReplicationConfigNotFound{Bucket: bucketName}) || errors.Is(err, errInvalidArgument) {
return rCfg, err
}
logger.CriticalIf(ctx, err)
}
return rCfg, err return rCfg, err
} }
@ -2325,7 +2331,7 @@ func QueueReplicationHeal(ctx context.Context, bucket string, oi ObjectInfo) {
if oi.VersionID == "" || oi.ModTime.IsZero() { if oi.VersionID == "" || oi.ModTime.IsZero() {
return return
} }
rcfg, _, _ := globalBucketMetadataSys.GetReplicationConfig(ctx, bucket) rcfg, _ := getReplicationConfig(ctx, bucket)
tgts, _ := globalBucketTargetSys.ListBucketTargets(ctx, bucket) tgts, _ := globalBucketTargetSys.ListBucketTargets(ctx, bucket)
queueReplicationHeal(ctx, bucket, oi, replicationConfig{ queueReplicationHeal(ctx, bucket, oi, replicationConfig{
Config: rcfg, Config: rcfg,