Browse Source
fix(filer): limit concurrent proxy reads per volume server (#8608)
fix(filer): limit concurrent proxy reads per volume server (#8608)
* fix(filer): limit concurrent proxy reads per volume server Add a per-volume-server semaphore (default 16) to proxyToVolumeServer to prevent replication bursts from overwhelming individual volume servers with hundreds of concurrent connections, which causes them to drop connections with "unexpected EOF". Excess requests queue up and respect the client's context, returning 503 if the client disconnects while waiting. Also log io.CopyBuffer errors that were previously silently discarded. * Apply suggestion from @gemini-code-assist[bot] Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * fix(filer): use non-blocking release for proxy semaphore Prevents a goroutine from blocking forever if releaseProxySemaphore is ever called without a matching acquire. * test(filer): clean up proxySemaphores entries in all proxy tests --------- Co-authored-by: Copilot <copilot@github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>pull/8612/head
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 150 additions and 1 deletions
@ -0,0 +1,102 @@ |
|||
package weed_server |
|||
|
|||
import ( |
|||
"context" |
|||
"sync" |
|||
"sync/atomic" |
|||
"testing" |
|||
"time" |
|||
) |
|||
|
|||
func TestProxySemaphore_LimitsConcurrency(t *testing.T) { |
|||
host := "test-volume:8080" |
|||
defer proxySemaphores.Delete(host) |
|||
|
|||
var running atomic.Int32 |
|||
var maxSeen atomic.Int32 |
|||
var wg sync.WaitGroup |
|||
|
|||
// Launch more goroutines than the semaphore allows
|
|||
total := proxyReadConcurrencyPerVolumeServer * 3 |
|||
for i := 0; i < total; i++ { |
|||
wg.Add(1) |
|||
go func() { |
|||
defer wg.Done() |
|||
if err := acquireProxySemaphore(context.Background(), host); err != nil { |
|||
t.Errorf("acquire: %v", err) |
|||
return |
|||
} |
|||
defer releaseProxySemaphore(host) |
|||
|
|||
cur := running.Add(1) |
|||
// Track peak concurrency
|
|||
for { |
|||
old := maxSeen.Load() |
|||
if cur <= old || maxSeen.CompareAndSwap(old, cur) { |
|||
break |
|||
} |
|||
} |
|||
time.Sleep(time.Millisecond) |
|||
running.Add(-1) |
|||
}() |
|||
} |
|||
wg.Wait() |
|||
|
|||
peak := maxSeen.Load() |
|||
if peak > int32(proxyReadConcurrencyPerVolumeServer) { |
|||
t.Fatalf("peak concurrency %d exceeded limit %d", peak, proxyReadConcurrencyPerVolumeServer) |
|||
} |
|||
if peak == 0 { |
|||
t.Fatal("no goroutines ran") |
|||
} |
|||
} |
|||
|
|||
func TestProxySemaphore_ContextCancellation(t *testing.T) { |
|||
host := "test-cancel:8080" |
|||
defer proxySemaphores.Delete(host) |
|||
|
|||
// Fill the semaphore
|
|||
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ { |
|||
if err := acquireProxySemaphore(context.Background(), host); err != nil { |
|||
t.Fatalf("fill acquire: %v", err) |
|||
} |
|||
} |
|||
|
|||
// Try to acquire with a cancelled context
|
|||
ctx, cancel := context.WithCancel(context.Background()) |
|||
cancel() |
|||
err := acquireProxySemaphore(ctx, host) |
|||
if err == nil { |
|||
t.Fatal("expected error from cancelled context") |
|||
} |
|||
|
|||
// Clean up
|
|||
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ { |
|||
releaseProxySemaphore(host) |
|||
} |
|||
} |
|||
|
|||
func TestProxySemaphore_PerHostIsolation(t *testing.T) { |
|||
hostA := "volume-a:8080" |
|||
hostB := "volume-b:8080" |
|||
defer proxySemaphores.Delete(hostA) |
|||
defer proxySemaphores.Delete(hostB) |
|||
|
|||
// Fill hostA's semaphore
|
|||
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ { |
|||
if err := acquireProxySemaphore(context.Background(), hostA); err != nil { |
|||
t.Fatalf("fill hostA: %v", err) |
|||
} |
|||
} |
|||
|
|||
// hostB should still be acquirable
|
|||
if err := acquireProxySemaphore(context.Background(), hostB); err != nil { |
|||
t.Fatalf("hostB should not be blocked by hostA: %v", err) |
|||
} |
|||
releaseProxySemaphore(hostB) |
|||
|
|||
// Clean up hostA
|
|||
for i := 0; i < proxyReadConcurrencyPerVolumeServer; i++ { |
|||
releaseProxySemaphore(hostA) |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue