@@ -296,6 +296,7 @@ func getBlocks(ctx context.Context, ks []cid.Cid, bs blockstore.Blockstore, fget
296
296
}
297
297
298
298
if ! allValid {
299
+ // can't shift in place because we don't want to clobber callers.
299
300
ks2 := make ([]cid.Cid , 0 , len (ks ))
300
301
for _ , c := range ks {
301
302
// hash security
@@ -333,52 +334,39 @@ func getBlocks(ctx context.Context, ks []cid.Cid, bs blockstore.Blockstore, fget
333
334
return
334
335
}
335
336
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
339
338
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 {
353
343
return
354
- default :
355
- break batchLoop
356
344
}
345
+ b = v
346
+ case <- ctx .Done ():
347
+ return
357
348
}
358
349
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 )
361
352
if err != nil {
362
353
logger .Errorf ("could not write blocks from the network to the blockstore: %s" , err )
363
354
return
364
355
}
365
356
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 [:]... )
367
360
if err != nil {
368
361
logger .Errorf ("could not tell the exchange about new blocks: %s" , err )
369
362
return
370
363
}
364
+ cache [0 ] = nil // early gc
371
365
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
382
370
}
383
371
}
384
372
}()
0 commit comments