From 72c5976b1197315096ead9976f0dcea3a21b781c Mon Sep 17 00:00:00 2001 From: Miguel Filipe Date: Tue, 23 Jul 2024 11:55:25 -0700 Subject: [PATCH] ingester: increase max batch size to 256 blocks --- ingester/send.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingester/send.go b/ingester/send.go index 50a90ac..fbb225d 100644 --- a/ingester/send.go +++ b/ingester/send.go @@ -11,7 +11,7 @@ import ( "github.com/go-errors/errors" ) -const maxBatchSize = 100 +const maxBatchSize = 256 // SendBlocks to Dune. We receive blocks from the FetchBlockLoop goroutines, potentially out of order. // We buffer the blocks in a map until we have no gaps, so that we can send them in order to Dune.