Files
seaweedfs/weed/storage/store_maxvolume_deadzone_test.go
T
Chris Lu 05c6500453 volume: fix maxVolumeCount dead zone that stalled writes on auto-sized disks (#9755)
* volume: don't drop the last writable slot on auto-sized disks

MaybeAdjustVolumeMax subtracted 1 from the per-disk slot count, so a disk
with room for exactly one volume (free between 1x and 2x the size limit)
reported 0 slots. The master then never grew a writable volume and every
assign drained its retry budget, so writes failed with context deadline
exceeded. Count the full volumes that actually fit, floored at one for an
auto-sized disk that has free space.

* mini: show disk and volume capacity in the startup banner

Print free space, volume size, total volume count and free volume count
under the data directory line, so a volume size limit that outstrips the
disk is visible at startup instead of surfacing later as failed writes.
2026-05-30 23:45:17 -07:00

62 lines
2.1 KiB
Go

package storage
import (
"fmt"
"testing"
"github.com/seaweedfs/seaweedfs/weed/stats"
"github.com/seaweedfs/seaweedfs/weed/storage/types"
"github.com/seaweedfs/seaweedfs/weed/util"
)
// With auto max (OriginalMaxVolumeCount == 0) and a large volumeSizeLimit,
// MaybeAdjustVolumeMax must not compute a maxVolumeCount of 0 when the free
// disk holds room for at least one volume. It once did so for disks sized
// between 1x and 2x the limit, leaving no writable volume and timing out every
// assign. An auto-sized disk with space always hosts at least one volume.
func TestMaybeAdjustVolumeMaxNoDeadZone(t *testing.T) {
dir := t.TempDir()
free := stats.NewDiskStatus(dir).Free
if free < 4 {
t.Skip("cannot determine free disk space")
}
// Drive the limit so the disk's free space is a known multiple of it,
// then assert the slot count is the honest "how many full volumes fit",
// floored at one. The 1.5x case is the exact regression from #9753.
for _, ratio := range []float64{0.5, 1.5, 2.5, 3.5} {
t.Run(fmt.Sprintf("ratio=%.1f", ratio), func(t *testing.T) {
free := stats.NewDiskStatus(dir).Free
volumeSizeLimit := uint64(float64(free) / ratio)
if volumeSizeLimit == 0 {
t.Skip("free disk too small for this ratio")
}
loc := NewDiskLocation(dir, 0 /* auto */, util.MinFreeSpace{}, "", types.HddType, nil)
defer loc.Close()
s := &Store{Locations: []*DiskLocation{loc}}
s.SetVolumeSizeLimit(volumeSizeLimit)
s.MaybeAdjustVolumeMax()
// Empty temp dir: no volumes, no EC shards, so the count is purely
// the number of full volumes that fit, never below one.
want := int32(free / volumeSizeLimit)
if want < 1 {
want = 1
}
t.Logf("free=%.1fGiB limit=%.1fGiB ratio≈%.2f -> MaxVolumeCount=%d (want %d)",
float64(free)/(1<<30), float64(volumeSizeLimit)/(1<<30),
float64(free)/float64(volumeSizeLimit), loc.MaxVolumeCount, want)
if loc.MaxVolumeCount < 1 {
t.Errorf("auto-sized disk with free space reported MaxVolumeCount=%d; want >= 1", loc.MaxVolumeCount)
}
if loc.MaxVolumeCount != want {
t.Errorf("MaxVolumeCount=%d; want %d", loc.MaxVolumeCount, want)
}
})
}
}