[#1700] gc: Wait for handlers on GC stopping
All checks were successful
Pre-commit hooks / Pre-commit (push) Successful in 1m8s
Vulncheck / Vulncheck (push) Successful in 1m4s
Build / Build Components (push) Successful in 2m1s
Tests and linters / Run gofumpt (push) Successful in 3m21s
Tests and linters / gopls check (push) Successful in 3m29s
Tests and linters / Lint (push) Successful in 3m43s
Tests and linters / Staticcheck (push) Successful in 3m52s
Tests and linters / Tests (push) Successful in 4m12s
Tests and linters / Tests with -race (push) Successful in 4m19s
OCI image / Build container images (push) Successful in 4m57s

First wait for goroutine handles epoch events to not to get data race
on `gc.newEpochHandlers.cancelFunc`.

Then cancel handlers and wait for them.

Change-Id: I71f11f8526961f8356f582a95b10eb8340c0aedd
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2025-04-01 12:56:55 +03:00
parent bd1c18e117
commit e142d25fac
Signed by: dstepanov-yadro
GPG key ID: 237AF1A763293BC0

View file

@ -227,6 +227,9 @@ func (gc *gc) stop(ctx context.Context) {
gc.log.Info(ctx, logs.ShardWaitingForGCWorkersToStop) gc.log.Info(ctx, logs.ShardWaitingForGCWorkersToStop)
gc.wg.Wait() gc.wg.Wait()
gc.newEpochHandlers.cancelFunc()
gc.newEpochHandlers.prevGroup.Wait()
} }
// iterates over metabase and deletes objects // iterates over metabase and deletes objects