April 2018
Intermediate to advanced
432 pages
10h 38m
English
Some of the Spring Cloud configuration settings for Kafka have been presented before when discussing the implementation of the sample application. Here's a table with the most important properties, which can be set for customizing the Apache Kafka binder. All these properties are prefixed by spring.cloud.stream.kafka.binder:
| Name | Default value | Description |
| brokers | localhost | A comma-separated list of brokers with or without port information. |
| defaultBrokerPort | 9092 | It sets the default port if no port is defined using the brokers property. |
| zkNodes | localhost | A comma-separated list of ZooKeeper nodes with or without port information. |
| defaultZkPort | 2181 | It sets the default ZooKeeper port if no port is defined ... |