mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-08 15:41:15 +02:00
* s3: enforce bucket quota on logical size, not un-vacuumed physical size A bucket full of deleted/overwritten objects awaiting vacuum went read-only while its live data stayed under quota, because enforcement used the raw single-copy volume size with garbage included. Subtract DeletedByteCount via a LogicalSize() helper in the auto-enforce loop, the s3.bucket.quota.enforce command, and the bucket_size_bytes metric (labeled logical but counting garbage too). Deleting objects now relieves quota immediately and enforcement matches the UI usage figure. * admin: surface bucket read-only state in the S3 buckets UI Read the read-only flag quota enforcement writes to filer.conf and show it as a badge in the bucket list and a Status row in the details modal, so an operator can see why writes are being rejected.
123 lines
3.5 KiB
Go
123 lines
3.5 KiB
Go
package shell
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
)
|
|
|
|
func init() {
|
|
Commands = append(Commands, &commandS3BucketQuotaEnforce{})
|
|
}
|
|
|
|
type commandS3BucketQuotaEnforce struct {
|
|
}
|
|
|
|
func (c *commandS3BucketQuotaEnforce) Name() string {
|
|
return "s3.bucket.quota.enforce"
|
|
}
|
|
|
|
func (c *commandS3BucketQuotaEnforce) Help() string {
|
|
return `check quota for all buckets, make the bucket read only if over the limit
|
|
|
|
Example:
|
|
s3.bucket.quota.enforce -apply
|
|
`
|
|
}
|
|
|
|
func (c *commandS3BucketQuotaEnforce) HasTag(CommandTag) bool {
|
|
return false
|
|
}
|
|
|
|
func (c *commandS3BucketQuotaEnforce) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
|
|
|
|
bucketCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
|
|
applyQuotaLimit := bucketCommand.Bool("apply", false, "actually change the buckets readonly attribute")
|
|
if err = bucketCommand.Parse(args); err != nil {
|
|
return nil
|
|
}
|
|
infoAboutSimulationMode(writer, *applyQuotaLimit, "-apply")
|
|
|
|
// collect collection information
|
|
topologyInfo, _, err := collectTopologyInfo(commandEnv, 0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
collectionInfos := make(map[string]*CollectionInfo)
|
|
collectCollectionInfo(topologyInfo, collectionInfos)
|
|
|
|
// read buckets path
|
|
var filerBucketsPath string
|
|
filerBucketsPath, err = readFilerBucketsPath(commandEnv)
|
|
if err != nil {
|
|
return fmt.Errorf("read buckets: %w", err)
|
|
}
|
|
|
|
// read existing filer configuration
|
|
fc, err := filer.ReadFilerConf(commandEnv.option.FilerAddress, commandEnv.option.GrpcDialOption, commandEnv.MasterClient)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// process each bucket
|
|
hasConfChanges := false
|
|
err = filer_pb.List(context.Background(), commandEnv, filerBucketsPath, "", func(entry *filer_pb.Entry, isLast bool) error {
|
|
if !entry.IsDirectory {
|
|
return nil
|
|
}
|
|
collection := getCollectionName(commandEnv, entry.Name)
|
|
var collectionSize float64
|
|
if collectionInfo, found := collectionInfos[collection]; found {
|
|
collectionSize = collectionInfo.LogicalSize()
|
|
}
|
|
if c.processEachBucket(fc, filerBucketsPath, entry, writer, collectionSize) {
|
|
hasConfChanges = true
|
|
}
|
|
return nil
|
|
}, "", false, math.MaxUint32)
|
|
if err != nil {
|
|
return fmt.Errorf("list buckets under %v: %w", filerBucketsPath, err)
|
|
}
|
|
|
|
// apply the configuration changes
|
|
if hasConfChanges && *applyQuotaLimit {
|
|
|
|
var buf2 bytes.Buffer
|
|
fc.ToText(&buf2)
|
|
|
|
if err = commandEnv.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
|
return filer.SaveInsideFiler(context.Background(), client, filer.DirectoryEtcSeaweedFS, filer.FilerConfName, buf2.Bytes())
|
|
}); err != nil && err != filer_pb.ErrNotFound {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
func (c *commandS3BucketQuotaEnforce) processEachBucket(fc *filer.FilerConf, filerBucketsPath string, entry *filer_pb.Entry, writer io.Writer, collectionSize float64) (hasConfChanges bool) {
|
|
|
|
locPrefix := filerBucketsPath + "/" + entry.Name + "/"
|
|
|
|
readOnly, hasConfChanges := fc.ApplyBucketQuotaReadOnly(locPrefix, collectionSize, float64(entry.Quota))
|
|
if hasConfChanges {
|
|
fmt.Fprintf(writer, " %s\tsize:%.0f", entry.Name, collectionSize)
|
|
fmt.Fprintf(writer, "\tquota:%d\tusage:%.2f%%", entry.Quota, collectionSize*100/float64(entry.Quota))
|
|
fmt.Fprintln(writer)
|
|
if readOnly {
|
|
fmt.Fprintf(writer, " changing bucket %s to read only!\n", entry.Name)
|
|
} else {
|
|
fmt.Fprintf(writer, " changing bucket %s to writable.\n", entry.Name)
|
|
}
|
|
}
|
|
|
|
return
|
|
}
|