Skip to content

Commit

Permalink
[grid] Increasing batch size, to match the distributor
Browse files Browse the repository at this point in the history
Which should be the common setup since
most users run Grid in a Hub/Node setup.

[skip ci]
  • Loading branch information
diemol committed Oct 18, 2022
1 parent 41f815c commit 017680d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class NewSessionQueueOptions {
static final int DEFAULT_REQUEST_TIMEOUT = 300;
static final int DEFAULT_REQUEST_TIMEOUT_PERIOD = 10;
static final int DEFAULT_RETRY_INTERVAL = 15;
static final int DEFAULT_BATCH_SIZE = 10;
static final int DEFAULT_BATCH_SIZE = Runtime.getRuntime().availableProcessors() * 3;

private final Config config;

Expand Down

0 comments on commit 017680d

Please sign in to comment.