5833 Fix Deadlock when using shardByURL of VMAgent (#5834)

This commit is contained in:
Anton L 2024-02-22 12:54:53 +03:00 committed by Aliaksandr Valialkin
parent 4b2ba16e27
commit 24154450e7
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -436,12 +436,12 @@ func pushBlockToRemoteStorages(rwctxs []*remoteWriteCtx, tssBlock []prompbmarsha
// Push sharded data to remote storages in parallel in order to reduce
// the time needed for sending the data to multiple remote storage systems.
var wg sync.WaitGroup
wg.Add(len(rwctxs))
for i, rwctx := range rwctxs {
tssShard := tssByURL[i]
if len(tssShard) == 0 {
continue
}
wg.Add(1)
go func(rwctx *remoteWriteCtx, tss []prompbmarshal.TimeSeries) {
defer wg.Done()
rwctx.Push(tss)