Package io.quarkus.kafka.streams.runtime
Class KafkaStreamsRuntimeConfig
java.lang.Object
io.quarkus.kafka.streams.runtime.KafkaStreamsRuntimeConfig
@ConfigRoot(name="kafka-streams",
phase=RUN_TIME)
public class KafkaStreamsRuntimeConfig
extends Object
-
Field Summary
FieldsModifier and TypeFieldDescriptionA unique identifier for this Kafka Streams application.A unique identifier of this application instance, typically in the form host:port.A comma-separated list of host:port pairs identifying the Kafka bootstrap server(s).static final StringDefault Kafka bootstrap server.The SASL JAAS config.The schema registry key.The schema registry URL.The security protocol to use See https://docs.confluent.io/current/streams/developer-guide/security.html#security-exampleKafka SSL configA comma-separated list of topic names.Timeout to wait for topic names to be returned from admin client. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
DEFAULT_KAFKA_BROKER
Default Kafka bootstrap server.- See Also:
-
applicationId
A unique identifier for this Kafka Streams application. If not set, defaults to quarkus.application.name. -
bootstrapServers
A comma-separated list of host:port pairs identifying the Kafka bootstrap server(s). If not set, fallback tokafka.bootstrap.servers, and if not set either uselocalhost:9092. -
applicationServer
A unique identifier of this application instance, typically in the form host:port. -
topics
A comma-separated list of topic names. The pipeline will only be started once all these topics are present in the Kafka cluster andignore.topicsis set to false. -
topicsTimeout
Timeout to wait for topic names to be returned from admin client. If set to 0 (or negative),topicscheck is ignored. -
schemaRegistryKey
The schema registry key. Different schema registry libraries expect a registry URL in different configuration properties. For Apicurio Registry, useapicurio.registry.url. For Confluent schema registry, useschema.registry.url. -
schemaRegistryUrl
The schema registry URL. -
securityProtocol
The security protocol to use See https://docs.confluent.io/current/streams/developer-guide/security.html#security-example -
sasl
The SASL JAAS config. -
ssl
Kafka SSL config
-
-
Constructor Details
-
KafkaStreamsRuntimeConfig
public KafkaStreamsRuntimeConfig()
-
-
Method Details