2023-01-03 11:16:39 -05:00
|
|
|
// Copyright (c) 2015-2022 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/gob"
|
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
"net/url"
|
2023-09-29 03:58:54 -04:00
|
|
|
"sort"
|
2023-01-03 11:16:39 -05:00
|
|
|
"strconv"
|
2024-01-09 23:34:04 -05:00
|
|
|
"time"
|
2023-01-03 11:16:39 -05:00
|
|
|
|
2024-01-09 23:34:04 -05:00
|
|
|
"github.com/minio/madmin-go/v3"
|
2023-01-03 11:16:39 -05:00
|
|
|
xhttp "github.com/minio/minio/internal/http"
|
|
|
|
"github.com/minio/minio/internal/rest"
|
2023-09-04 15:57:37 -04:00
|
|
|
"github.com/minio/pkg/v2/sync/errgroup"
|
2023-06-23 14:48:23 -04:00
|
|
|
"golang.org/x/exp/slices"
|
2023-01-03 11:16:39 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
var errPeerOffline = errors.New("peer is offline")
|
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
type peerS3Client interface {
|
|
|
|
ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error)
|
2024-01-09 23:34:04 -05:00
|
|
|
HealBucket(ctx context.Context, bucket string, opts madmin.HealOpts) (madmin.HealResultItem, error)
|
2023-06-23 14:48:23 -04:00
|
|
|
GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (BucketInfo, error)
|
|
|
|
MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error
|
|
|
|
DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error
|
|
|
|
|
|
|
|
GetHost() string
|
|
|
|
SetPools([]int)
|
|
|
|
GetPools() []int
|
|
|
|
}
|
|
|
|
|
|
|
|
type localPeerS3Client struct {
|
|
|
|
host string
|
|
|
|
pools []int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *localPeerS3Client) GetHost() string {
|
|
|
|
return l.host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *localPeerS3Client) SetPools(p []int) {
|
|
|
|
l.pools = make([]int, len(p))
|
|
|
|
copy(l.pools, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l localPeerS3Client) GetPools() []int {
|
|
|
|
return l.pools
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l localPeerS3Client) ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) {
|
|
|
|
return listBucketsLocal(ctx, opts)
|
|
|
|
}
|
|
|
|
|
2024-01-09 23:34:04 -05:00
|
|
|
func (l localPeerS3Client) HealBucket(ctx context.Context, bucket string, opts madmin.HealOpts) (madmin.HealResultItem, error) {
|
|
|
|
return healBucketLocal(ctx, bucket, opts)
|
|
|
|
}
|
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
func (l localPeerS3Client) GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (BucketInfo, error) {
|
|
|
|
return getBucketInfoLocal(ctx, bucket, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l localPeerS3Client) MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error {
|
|
|
|
return makeBucketLocal(ctx, bucket, opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l localPeerS3Client) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error {
|
|
|
|
return deleteBucketLocal(ctx, bucket, opts)
|
|
|
|
}
|
|
|
|
|
2023-01-03 11:16:39 -05:00
|
|
|
// client to talk to peer Nodes.
|
2023-06-23 14:48:23 -04:00
|
|
|
type remotePeerS3Client struct {
|
|
|
|
host string
|
|
|
|
pools []int
|
2023-01-03 11:16:39 -05:00
|
|
|
restClient *rest.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper to restClient.Call to handle network errors, in case of network error the connection is marked disconnected
|
|
|
|
// permanently. The only way to restore the connection is at the xl-sets layer by xlsets.monitorAndConnectEndpoints()
|
|
|
|
// after verifying format.json
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client *remotePeerS3Client) call(method string, values url.Values, body io.Reader, length int64) (respBody io.ReadCloser, err error) {
|
2023-01-03 11:16:39 -05:00
|
|
|
return client.callWithContext(GlobalContext, method, values, body, length)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrapper to restClient.Call to handle network errors, in case of network error the connection is marked disconnected
|
|
|
|
// permanently. The only way to restore the connection is at the xl-sets layer by xlsets.monitorAndConnectEndpoints()
|
|
|
|
// after verifying format.json
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client *remotePeerS3Client) callWithContext(ctx context.Context, method string, values url.Values, body io.Reader, length int64) (respBody io.ReadCloser, err error) {
|
2023-01-03 11:16:39 -05:00
|
|
|
if values == nil {
|
|
|
|
values = make(url.Values)
|
|
|
|
}
|
|
|
|
|
|
|
|
respBody, err = client.restClient.Call(ctx, method, values, body, length)
|
|
|
|
if err == nil {
|
|
|
|
return respBody, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
err = toStorageErr(err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// S3PeerSys - S3 peer call system.
|
|
|
|
type S3PeerSys struct {
|
2023-06-23 14:48:23 -04:00
|
|
|
peerClients []peerS3Client // Excludes self
|
|
|
|
poolsCount int
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewS3PeerSys - creates new S3 peer calls.
|
|
|
|
func NewS3PeerSys(endpoints EndpointServerPools) *S3PeerSys {
|
|
|
|
return &S3PeerSys{
|
2023-06-23 14:48:23 -04:00
|
|
|
peerClients: newPeerS3Clients(endpoints.GetNodes()),
|
|
|
|
poolsCount: len(endpoints),
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-09 23:34:04 -05:00
|
|
|
// HealBucket - heals buckets at node level
|
|
|
|
func (sys *S3PeerSys) HealBucket(ctx context.Context, bucket string, opts madmin.HealOpts) (madmin.HealResultItem, error) {
|
|
|
|
g := errgroup.WithNErrs(len(sys.peerClients))
|
|
|
|
|
|
|
|
healBucketResults := make([]madmin.HealResultItem, len(sys.peerClients))
|
|
|
|
for idx, client := range sys.peerClients {
|
|
|
|
idx := idx
|
|
|
|
client := client
|
|
|
|
g.Go(func() error {
|
|
|
|
if client == nil {
|
|
|
|
return errPeerOffline
|
|
|
|
}
|
|
|
|
res, err := client.HealBucket(ctx, bucket, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
healBucketResults[idx] = res
|
|
|
|
return nil
|
|
|
|
}, idx)
|
|
|
|
}
|
|
|
|
|
|
|
|
errs := g.Wait()
|
|
|
|
|
|
|
|
for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ {
|
|
|
|
perPoolErrs := make([]error, 0, len(sys.peerClients))
|
|
|
|
for i, client := range sys.peerClients {
|
|
|
|
if slices.Contains(client.GetPools(), poolIdx) {
|
|
|
|
perPoolErrs = append(perPoolErrs, errs[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
quorum := len(perPoolErrs) / 2
|
|
|
|
if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, quorum); poolErr != nil {
|
|
|
|
return madmin.HealResultItem{}, poolErr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, err := range errs {
|
|
|
|
if err == nil {
|
|
|
|
return healBucketResults[i], nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return madmin.HealResultItem{}, toObjectErr(errVolumeNotFound, bucket)
|
|
|
|
}
|
|
|
|
|
2023-09-29 03:58:54 -04:00
|
|
|
// ListBuckets lists buckets across all nodes and returns a consistent view:
|
|
|
|
// - Return an error when a pool cannot return N/2+1 valid bucket information
|
|
|
|
// - For each pool, check if the bucket exists in N/2+1 nodes before including it in the final result
|
|
|
|
func (sys *S3PeerSys) ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) {
|
2023-01-04 02:39:40 -05:00
|
|
|
g := errgroup.WithNErrs(len(sys.peerClients))
|
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
nodeBuckets := make([][]BucketInfo, len(sys.peerClients))
|
2023-01-04 02:39:40 -05:00
|
|
|
|
|
|
|
for idx, client := range sys.peerClients {
|
|
|
|
idx := idx
|
|
|
|
client := client
|
|
|
|
g.Go(func() error {
|
|
|
|
if client == nil {
|
|
|
|
return errPeerOffline
|
|
|
|
}
|
|
|
|
localBuckets, err := client.ListBuckets(ctx, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-23 14:48:23 -04:00
|
|
|
nodeBuckets[idx] = localBuckets
|
2023-01-04 02:39:40 -05:00
|
|
|
return nil
|
|
|
|
}, idx)
|
|
|
|
}
|
|
|
|
|
2023-10-20 20:50:21 -04:00
|
|
|
errs := g.Wait()
|
2023-01-04 02:39:40 -05:00
|
|
|
|
2023-09-29 03:58:54 -04:00
|
|
|
// The list of buckets in a map to avoid duplication
|
|
|
|
resultMap := make(map[string]BucketInfo)
|
2023-01-04 02:39:40 -05:00
|
|
|
|
2023-09-29 03:58:54 -04:00
|
|
|
for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ {
|
|
|
|
perPoolErrs := make([]error, 0, len(sys.peerClients))
|
|
|
|
for i, client := range sys.peerClients {
|
|
|
|
if slices.Contains(client.GetPools(), poolIdx) {
|
|
|
|
perPoolErrs = append(perPoolErrs, errs[i])
|
|
|
|
}
|
|
|
|
}
|
2023-10-20 20:50:21 -04:00
|
|
|
quorum := len(perPoolErrs) / 2
|
2023-09-29 03:58:54 -04:00
|
|
|
if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, quorum); poolErr != nil {
|
|
|
|
return nil, poolErr
|
2023-01-04 11:53:58 -05:00
|
|
|
}
|
2023-09-29 03:58:54 -04:00
|
|
|
|
|
|
|
bucketsMap := make(map[string]int)
|
|
|
|
for idx, buckets := range nodeBuckets {
|
|
|
|
if buckets == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !slices.Contains(sys.peerClients[idx].GetPools(), poolIdx) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
for _, bi := range buckets {
|
|
|
|
_, ok := resultMap[bi.Name]
|
|
|
|
if ok {
|
|
|
|
// Skip it, this bucket is found in another pool
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
bucketsMap[bi.Name]++
|
2023-10-20 20:50:21 -04:00
|
|
|
if bucketsMap[bi.Name] >= quorum {
|
2023-09-29 03:58:54 -04:00
|
|
|
resultMap[bi.Name] = bi
|
|
|
|
}
|
2023-01-04 11:53:58 -05:00
|
|
|
}
|
2023-01-04 02:39:40 -05:00
|
|
|
}
|
2024-01-09 23:34:04 -05:00
|
|
|
// loop through buckets and see if some with lost quorum
|
|
|
|
// these could be stale buckets lying around, queue a heal
|
|
|
|
// of such a bucket. This is needed here as we identify such
|
|
|
|
// buckets here while listing buckets. As part of regular
|
|
|
|
// globalBucketMetadataSys.Init() call would get a valid
|
|
|
|
// buckets only and not the quourum lost ones like this, so
|
|
|
|
// explicit call
|
|
|
|
for bktName, count := range bucketsMap {
|
|
|
|
if count < quorum {
|
|
|
|
// Queue a bucket heal task
|
|
|
|
globalMRFState.addPartialOp(partialOperation{
|
|
|
|
bucket: bktName,
|
|
|
|
queued: time.Now(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2023-01-04 02:39:40 -05:00
|
|
|
}
|
|
|
|
|
2023-09-29 03:58:54 -04:00
|
|
|
result := make([]BucketInfo, 0, len(resultMap))
|
|
|
|
for _, bi := range resultMap {
|
|
|
|
result = append(result, bi)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(result, func(i, j int) bool {
|
|
|
|
return result[i].Name < result[j].Name
|
|
|
|
})
|
|
|
|
|
2023-01-04 11:53:58 -05:00
|
|
|
return result, nil
|
2023-01-04 02:39:40 -05:00
|
|
|
}
|
|
|
|
|
2023-01-03 11:16:39 -05:00
|
|
|
// GetBucketInfo returns bucket stat info about bucket on disk across all peers
|
|
|
|
func (sys *S3PeerSys) GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (binfo BucketInfo, err error) {
|
|
|
|
g := errgroup.WithNErrs(len(sys.peerClients))
|
|
|
|
|
2023-04-12 18:44:16 -04:00
|
|
|
bucketInfos := make([]BucketInfo, len(sys.peerClients))
|
2023-01-03 11:16:39 -05:00
|
|
|
for idx, client := range sys.peerClients {
|
|
|
|
idx := idx
|
|
|
|
client := client
|
|
|
|
g.Go(func() error {
|
|
|
|
if client == nil {
|
|
|
|
return errPeerOffline
|
|
|
|
}
|
|
|
|
bucketInfo, err := client.GetBucketInfo(ctx, bucket, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-04-12 18:44:16 -04:00
|
|
|
bucketInfos[idx] = bucketInfo
|
2023-01-03 11:16:39 -05:00
|
|
|
return nil
|
|
|
|
}, idx)
|
|
|
|
}
|
|
|
|
|
2023-04-12 18:44:16 -04:00
|
|
|
errs := g.Wait()
|
|
|
|
|
2023-10-20 20:50:21 -04:00
|
|
|
for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ {
|
|
|
|
perPoolErrs := make([]error, 0, len(sys.peerClients))
|
|
|
|
for i, client := range sys.peerClients {
|
|
|
|
if slices.Contains(client.GetPools(), poolIdx) {
|
|
|
|
perPoolErrs = append(perPoolErrs, errs[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
quorum := len(perPoolErrs) / 2
|
|
|
|
if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, quorum); poolErr != nil {
|
|
|
|
return BucketInfo{}, poolErr
|
|
|
|
}
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
2023-04-07 01:42:10 -04:00
|
|
|
|
2023-04-12 18:44:16 -04:00
|
|
|
for i, err := range errs {
|
|
|
|
if err == nil {
|
|
|
|
return bucketInfos[i], nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return BucketInfo{}, toObjectErr(errVolumeNotFound, bucket)
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client *remotePeerS3Client) ListBuckets(ctx context.Context, opts BucketOptions) ([]BucketInfo, error) {
|
2023-01-04 02:39:40 -05:00
|
|
|
v := url.Values{}
|
|
|
|
v.Set(peerS3BucketDeleted, strconv.FormatBool(opts.Deleted))
|
|
|
|
|
|
|
|
respBody, err := client.call(peerS3MethodListBuckets, v, nil, -1)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer xhttp.DrainBody(respBody)
|
|
|
|
|
|
|
|
var buckets []BucketInfo
|
|
|
|
err = gob.NewDecoder(respBody).Decode(&buckets)
|
|
|
|
return buckets, err
|
|
|
|
}
|
|
|
|
|
2024-01-09 23:34:04 -05:00
|
|
|
func (client *remotePeerS3Client) HealBucket(ctx context.Context, bucket string, opts madmin.HealOpts) (madmin.HealResultItem, error) {
|
|
|
|
v := url.Values{}
|
|
|
|
v.Set(peerS3Bucket, bucket)
|
|
|
|
v.Set(peerS3BucketDeleted, strconv.FormatBool(opts.Remove))
|
|
|
|
|
|
|
|
respBody, err := client.call(peerS3MethodHealBucket, v, nil, -1)
|
|
|
|
if err != nil {
|
|
|
|
return madmin.HealResultItem{}, err
|
|
|
|
}
|
|
|
|
defer xhttp.DrainBody(respBody)
|
|
|
|
|
|
|
|
var res madmin.HealResultItem
|
|
|
|
err = gob.NewDecoder(respBody).Decode(&res)
|
|
|
|
|
|
|
|
return res, err
|
|
|
|
}
|
|
|
|
|
2023-01-03 11:16:39 -05:00
|
|
|
// GetBucketInfo returns bucket stat info from a peer
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client *remotePeerS3Client) GetBucketInfo(ctx context.Context, bucket string, opts BucketOptions) (BucketInfo, error) {
|
2023-01-03 11:16:39 -05:00
|
|
|
v := url.Values{}
|
|
|
|
v.Set(peerS3Bucket, bucket)
|
|
|
|
v.Set(peerS3BucketDeleted, strconv.FormatBool(opts.Deleted))
|
|
|
|
|
|
|
|
respBody, err := client.call(peerS3MethodGetBucketInfo, v, nil, -1)
|
|
|
|
if err != nil {
|
|
|
|
return BucketInfo{}, err
|
|
|
|
}
|
|
|
|
defer xhttp.DrainBody(respBody)
|
|
|
|
|
|
|
|
var bucketInfo BucketInfo
|
|
|
|
err = gob.NewDecoder(respBody).Decode(&bucketInfo)
|
|
|
|
return bucketInfo, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MakeBucket creates bucket across all peers
|
|
|
|
func (sys *S3PeerSys) MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error {
|
|
|
|
g := errgroup.WithNErrs(len(sys.peerClients))
|
|
|
|
for idx, client := range sys.peerClients {
|
|
|
|
client := client
|
|
|
|
g.Go(func() error {
|
|
|
|
if client == nil {
|
|
|
|
return errPeerOffline
|
|
|
|
}
|
|
|
|
return client.MakeBucket(ctx, bucket, opts)
|
|
|
|
}, idx)
|
|
|
|
}
|
|
|
|
errs := g.Wait()
|
2023-04-19 10:47:42 -04:00
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ {
|
|
|
|
perPoolErrs := make([]error, 0, len(sys.peerClients))
|
|
|
|
for i, client := range sys.peerClients {
|
|
|
|
if slices.Contains(client.GetPools(), poolIdx) {
|
|
|
|
perPoolErrs = append(perPoolErrs, errs[i])
|
|
|
|
}
|
2023-04-19 10:47:42 -04:00
|
|
|
}
|
2023-07-25 19:58:31 -04:00
|
|
|
if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, len(perPoolErrs)/2+1); poolErr != nil {
|
2023-06-23 14:48:23 -04:00
|
|
|
return toObjectErr(poolErr, bucket)
|
2023-04-19 10:47:42 -04:00
|
|
|
}
|
|
|
|
}
|
2023-06-23 14:48:23 -04:00
|
|
|
return nil
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// MakeBucket creates a bucket on a peer
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client *remotePeerS3Client) MakeBucket(ctx context.Context, bucket string, opts MakeBucketOptions) error {
|
2023-01-03 11:16:39 -05:00
|
|
|
v := url.Values{}
|
|
|
|
v.Set(peerS3Bucket, bucket)
|
|
|
|
v.Set(peerS3BucketForceCreate, strconv.FormatBool(opts.ForceCreate))
|
|
|
|
|
|
|
|
respBody, err := client.call(peerS3MethodMakeBucket, v, nil, -1)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer xhttp.DrainBody(respBody)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBucket deletes bucket across all peers
|
|
|
|
func (sys *S3PeerSys) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error {
|
|
|
|
g := errgroup.WithNErrs(len(sys.peerClients))
|
|
|
|
for idx, client := range sys.peerClients {
|
|
|
|
client := client
|
|
|
|
g.Go(func() error {
|
|
|
|
if client == nil {
|
|
|
|
return errPeerOffline
|
|
|
|
}
|
|
|
|
return client.DeleteBucket(ctx, bucket, opts)
|
|
|
|
}, idx)
|
|
|
|
}
|
|
|
|
errs := g.Wait()
|
2023-04-25 17:16:35 -04:00
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
for poolIdx := 0; poolIdx < sys.poolsCount; poolIdx++ {
|
|
|
|
perPoolErrs := make([]error, 0, len(sys.peerClients))
|
|
|
|
for i, client := range sys.peerClients {
|
|
|
|
if slices.Contains(client.GetPools(), poolIdx) {
|
|
|
|
perPoolErrs = append(perPoolErrs, errs[i])
|
|
|
|
}
|
|
|
|
}
|
2023-07-25 19:58:31 -04:00
|
|
|
if poolErr := reduceWriteQuorumErrs(ctx, perPoolErrs, bucketOpIgnoredErrs, len(perPoolErrs)/2+1); poolErr != nil && poolErr != errVolumeNotFound {
|
2023-04-25 17:16:35 -04:00
|
|
|
// re-create successful deletes, since we are return an error.
|
|
|
|
sys.MakeBucket(ctx, bucket, MakeBucketOptions{})
|
2023-06-23 14:48:23 -04:00
|
|
|
return toObjectErr(poolErr, bucket)
|
2023-04-25 17:16:35 -04:00
|
|
|
}
|
|
|
|
}
|
2023-06-23 14:48:23 -04:00
|
|
|
return nil
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBucket deletes bucket on a peer
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client *remotePeerS3Client) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error {
|
2023-01-03 11:16:39 -05:00
|
|
|
v := url.Values{}
|
|
|
|
v.Set(peerS3Bucket, bucket)
|
|
|
|
v.Set(peerS3BucketForceDelete, strconv.FormatBool(opts.Force))
|
|
|
|
|
|
|
|
respBody, err := client.call(peerS3MethodDeleteBucket, v, nil, -1)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer xhttp.DrainBody(respBody)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
func (client remotePeerS3Client) GetHost() string {
|
|
|
|
return client.host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (client remotePeerS3Client) GetPools() []int {
|
|
|
|
return client.pools
|
|
|
|
}
|
|
|
|
|
|
|
|
func (client *remotePeerS3Client) SetPools(p []int) {
|
|
|
|
client.pools = make([]int, len(p))
|
|
|
|
copy(client.pools, p)
|
|
|
|
}
|
|
|
|
|
2023-01-03 11:16:39 -05:00
|
|
|
// newPeerS3Clients creates new peer clients.
|
2023-06-23 14:48:23 -04:00
|
|
|
func newPeerS3Clients(nodes []Node) (peers []peerS3Client) {
|
|
|
|
peers = make([]peerS3Client, len(nodes))
|
|
|
|
for i, node := range nodes {
|
|
|
|
if node.IsLocal {
|
|
|
|
peers[i] = &localPeerS3Client{host: node.Host}
|
|
|
|
} else {
|
|
|
|
peers[i] = newPeerS3Client(node.Host)
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
2023-06-23 14:48:23 -04:00
|
|
|
peers[i].SetPools(node.Pools)
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
2023-06-23 14:48:23 -04:00
|
|
|
return
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a peer S3 client.
|
2023-06-23 14:48:23 -04:00
|
|
|
func newPeerS3Client(peer string) peerS3Client {
|
2023-01-03 11:16:39 -05:00
|
|
|
scheme := "http"
|
|
|
|
if globalIsTLS {
|
|
|
|
scheme = "https"
|
|
|
|
}
|
|
|
|
|
|
|
|
serverURL := &url.URL{
|
|
|
|
Scheme: scheme,
|
2023-06-23 14:48:23 -04:00
|
|
|
Host: peer,
|
2023-01-03 11:16:39 -05:00
|
|
|
Path: peerS3Path,
|
|
|
|
}
|
|
|
|
|
|
|
|
restClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken())
|
|
|
|
// Use a separate client to avoid recursive calls.
|
|
|
|
healthClient := rest.NewClient(serverURL, globalInternodeTransport, newCachedAuthToken())
|
|
|
|
healthClient.NoMetrics = true
|
|
|
|
|
|
|
|
// Construct a new health function.
|
|
|
|
restClient.HealthCheckFn = func() bool {
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), restClient.HealthCheckTimeout)
|
|
|
|
defer cancel()
|
|
|
|
respBody, err := healthClient.Call(ctx, peerS3MethodHealth, nil, nil, -1)
|
|
|
|
xhttp.DrainBody(respBody)
|
|
|
|
return !isNetworkError(err)
|
|
|
|
}
|
|
|
|
|
2023-06-23 14:48:23 -04:00
|
|
|
return &remotePeerS3Client{host: peer, restClient: restClient}
|
2023-01-03 11:16:39 -05:00
|
|
|
}
|