refactor(性能测试): 设置默认kafka的acks为1

This commit is contained in:
Captain.B 2021-05-22 11:03:04 +08:00 committed by 刘瑞斌
parent ccd99d7b79
commit ebf704b4f3
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
public class KafkaProperties {
public static final String KAFKA_PREFIX = "kafka";
private String acks = "0"; // 不要设置all
private String acks = "1"; // 不要设置all
private String expectedDelayEndTime = "30000"; // 30s
private String topic;
private String fields;