This is an automated email from the ASF dual-hosted git repository.
mjsax pushed a commit to branch 2.5
in repository https://gitbox.apache.org/repos/asf/kafka.git
The following commit(s) were added to refs/heads/2.5 by this push:
new 1cd50ad MINOR: fix and improve StreamsConfig JavaDocs (#8086)
1cd50ad is described below
commit 1cd50ad490e193603bce2b53074cda9b49bdb14a
Author: Matthias J. Sax <[email protected]>
AuthorDate: Tue Feb 11 14:13:04 2020 -0800
MINOR: fix and improve StreamsConfig JavaDocs (#8086)
Reviewer: John Roesler <[email protected]>
---
streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
b/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
index 568520e..3013387 100644
--- a/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
+++ b/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
@@ -113,17 +113,17 @@ import static
org.apache.kafka.common.config.ConfigDef.ValidString.in;
*
* By default, Kafka Streams does not allow users to overwrite the following
properties (Streams setting shown in parentheses):
* <ul>
+ * <li>{@link ConsumerConfig#GROUP_ID_CONFIG "group.id"}
(<application.id>) - Streams client will always use the application ID a
consumer group ID</li>
* <li>{@link ConsumerConfig#ENABLE_AUTO_COMMIT_CONFIG "enable.auto.commit"}
(false) - Streams client will always disable/turn off auto committing</li>
+ * <li>{@link ConsumerConfig#PARTITION_ASSIGNMENT_STRATEGY_CONFIG
"partition.assignment.strategy"} (<code>StreamsPartitionAssignor</code>) -
Streams client will always use its own partition assignor</li>
* </ul>
*
* If {@link #PROCESSING_GUARANTEE_CONFIG "processing.guarantee"} is set to
{@link #EXACTLY_ONCE "exactly_once"}, Kafka Streams does not allow users to
overwrite the following properties (Streams setting shown in parentheses):
* <ul>
* <li>{@link ConsumerConfig#ISOLATION_LEVEL_CONFIG "isolation.level"}
(read_committed) - Consumers will always read committed data only</li>
* <li>{@link ProducerConfig#ENABLE_IDEMPOTENCE_CONFIG "enable.idempotence"}
(true) - Producer will always have idempotency enabled</li>
- * <li>{@link ProducerConfig#MAX_IN_FLIGHT_REQUESTS_PER_CONNECTION
"max.in.flight.requests.per.connection"} (5) - Producer will always have one
in-flight request per connection</li>
* </ul>
*
- *
* @see KafkaStreams#KafkaStreams(org.apache.kafka.streams.Topology,
Properties)
* @see ConsumerConfig
* @see ProducerConfig