Skip to content

Commit 6f324be

Browse files
committed
blockservice: remove busyloop in getBlocks by removing batching
It makes the code quite more complex and there is no evidance it helps for anything.
1 parent 6a73ede commit 6f324be

File tree

1 file changed

+19
-31
lines changed

1 file changed

+19
-31
lines changed

blockservice/blockservice.go

+19-31
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ func getBlocks(ctx context.Context, ks []cid.Cid, bs blockstore.Blockstore, fget
296296
}
297297

298298
if !allValid {
299+
// can't shift in place because we don't want to clobber callers.
299300
ks2 := make([]cid.Cid, 0, len(ks))
300301
for _, c := range ks {
301302
// hash security
@@ -333,52 +334,39 @@ func getBlocks(ctx context.Context, ks []cid.Cid, bs blockstore.Blockstore, fget
333334
return
334335
}
335336

336-
// batch available blocks together
337-
const batchSize = 32
338-
batch := make([]blocks.Block, 0, batchSize)
337+
var cache [1]blocks.Block // preallocate once for all iterations
339338
for {
340-
var noMoreBlocks bool
341-
batchLoop:
342-
for len(batch) < batchSize {
343-
select {
344-
case b, ok := <-rblocks:
345-
if !ok {
346-
noMoreBlocks = true
347-
break batchLoop
348-
}
349-
350-
logger.Debugf("BlockService.BlockFetched %s", b.Cid())
351-
batch = append(batch, b)
352-
case <-ctx.Done():
339+
var b blocks.Block
340+
select {
341+
case v, ok := <-rblocks:
342+
if !ok {
353343
return
354-
default:
355-
break batchLoop
356344
}
345+
b = v
346+
case <-ctx.Done():
347+
return
357348
}
358349

359-
// also write in the blockstore for caching, inform the exchange that the blocks are available
360-
err = bs.PutMany(ctx, batch)
350+
// write in the blockstore for caching
351+
err = bs.Put(ctx, b)
361352
if err != nil {
362353
logger.Errorf("could not write blocks from the network to the blockstore: %s", err)
363354
return
364355
}
365356

366-
err = f.NotifyNewBlocks(ctx, batch...)
357+
// inform the exchange that the blocks are available
358+
cache[0] = b
359+
err = f.NotifyNewBlocks(ctx, cache[:]...)
367360
if err != nil {
368361
logger.Errorf("could not tell the exchange about new blocks: %s", err)
369362
return
370363
}
364+
cache[0] = nil // early gc
371365

372-
for _, b := range batch {
373-
select {
374-
case out <- b:
375-
case <-ctx.Done():
376-
return
377-
}
378-
}
379-
batch = batch[:0]
380-
if noMoreBlocks {
381-
break
366+
select {
367+
case out <- b:
368+
case <-ctx.Done():
369+
return
382370
}
383371
}
384372
}()

0 commit comments

Comments
 (0)