refactor: 修改 backend listener queue size 默认 20000

This commit is contained in:
Captain.B 2021-06-30 10:39:01 +08:00 committed by 刘瑞斌
parent 6a228fcc7a
commit 5131f04e76
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class KafkaProperties {
private String batchSize;
private String clientId;
private String connectionsMaxIdleMs;
private String queueSize = "5000";
private String queueSize = "20000"; // backend listener queue size
private KafkaProperties.Ssl ssl = new KafkaProperties.Ssl();
private KafkaProperties.Log log = new KafkaProperties.Log();