Skip to content

Commit

Permalink
ingester: increase max batch size to 256 blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
msf committed Jul 23, 2024
1 parent 0152929 commit 72c5976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ingester/send.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 72c5976

Please sign in to comment.