Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed the default value of client number
  • Loading branch information
Caideyipi committed Jun 8, 2025
commit bafb617e83366700553f9455d5c66994fe7af52f
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@ public class CommonConfig {
private int pipeAsyncConnectorSelectorNumber =
Math.max(4, Runtime.getRuntime().availableProcessors() / 2);
private int pipeAsyncConnectorMaxClientNumber =
Math.max(16, Runtime.getRuntime().availableProcessors() / 2);
Math.max(16, Runtime.getRuntime().availableProcessors() * 2);
private int pipeAsyncConnectorMaxTsFileClientNumber =
Math.max(8, Runtime.getRuntime().availableProcessors() / 4);
Math.max(8, Runtime.getRuntime().availableProcessors());

private double pipeAllSinksRateLimitBytesPerSecond = -1;
private int rateLimiterHotReloadCheckIntervalMs = 1000;
Expand Down
Loading