Skip to content

Commit 137d5ff

Browse files
authored
reduced backfill default batch size to 3 (#10356)
After testing on a supernode this looks like a more sane default batch size. It'll slow down backfill but give us space to perform duties.
1 parent 4766c71 commit 137d5ff

File tree

1 file changed

+1
-1
lines changed
  • networking/eth2/src/main/java/tech/pegasys/teku/networking/eth2

1 file changed

+1
-1
lines changed

networking/eth2/src/main/java/tech/pegasys/teku/networking/eth2/P2PConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class P2PConfig {
5858
public static final int DEFAULT_DOWNLOAD_TIMEOUT_MS = 240_000;
5959

6060
public static final int DEFAULT_COLUMN_CUSTODY_BACKFILLER_POLL_PERIOD_SECONDS = 30;
61-
public static final int DEFAULT_COLUMN_CUSTODY_BACKFILLER_BATCH_SIZE = 10;
61+
public static final int DEFAULT_COLUMN_CUSTODY_BACKFILLER_BATCH_SIZE = 3;
6262
public static final boolean DEFAULT_REWORKED_COLUMN_CUSTODY_BACKFILLER = true;
6363

6464
// RocksDB is configured with 6 background jobs and threads (DEFAULT_MAX_BACKGROUND_JOBS and

0 commit comments

Comments
 (0)