You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/kafka/KafkaProperties.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ public class KafkaProperties {
57
57
58
58
/**
59
59
* Comma-delimited list of host:port pairs to use for establishing the initial
60
-
* connection to the Kafka cluster.
60
+
* connections to the Kafka cluster. Applies to all components unless overridden.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1000,11 +1000,11 @@ content into your application. Rather, pick only the properties that you need.
1000
1000
spring.kafka.admin.ssl.truststore-location= # Location of the trust store file.
1001
1001
spring.kafka.admin.ssl.truststore-password= # Store password for the trust store file.
1002
1002
spring.kafka.admin.ssl.truststore-type= # Type of the trust store.
1003
-
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
1003
+
spring.kafka.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Applies to all components unless overridden.
1004
1004
spring.kafka.client-id= # ID to pass to the server when making requests. Used for server-side logging.
1005
1005
spring.kafka.consumer.auto-commit-interval= # Frequency with which the consumer offsets are auto-committed to Kafka if 'enable.auto.commit' is set to true.
1006
1006
spring.kafka.consumer.auto-offset-reset= # What to do when there is no initial offset in Kafka or if the current offset no longer exists on the server.
1007
-
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
1007
+
spring.kafka.consumer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for consumers.
1008
1008
spring.kafka.consumer.client-id= # ID to pass to the server when making requests. Used for server-side logging.
1009
1009
spring.kafka.consumer.enable-auto-commit= # Whether the consumer's offset is periodically committed in the background.
1010
1010
spring.kafka.consumer.fetch-max-wait= # Maximum amount of time the server blocks before answering the fetch request if there isn't sufficient data to immediately satisfy the requirement given by "fetch.min.bytes".
@@ -1040,7 +1040,7 @@ content into your application. Rather, pick only the properties that you need.
spring.kafka.producer.acks= # Number of acknowledgments the producer requires the leader to have received before considering a request complete.
1042
1042
spring.kafka.producer.batch-size= # Default batch size in bytes.
1043
-
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connection to the Kafka cluster.
1043
+
spring.kafka.producer.bootstrap-servers= # Comma-delimited list of host:port pairs to use for establishing the initial connections to the Kafka cluster. Overrides the global property, for producers.
1044
1044
spring.kafka.producer.buffer-memory= # Total bytes of memory the producer can use to buffer records waiting to be sent to the server.
1045
1045
spring.kafka.producer.client-id= # ID to pass to the server when making requests. Used for server-side logging.
1046
1046
spring.kafka.producer.compression-type= # Compression type for all data generated by the producer.
0 commit comments