Interface RedpandaBuildTimeConfig
public interface RedpandaBuildTimeConfig
Allows configuring the Redpanda broker.
Notice that Redpanda is not a "genuine" Kafka, it's a 100% compatible implementation of the protocol.
Find more info about Redpanda on https://redpanda.com/.
-
Method Summary
Modifier and TypeMethodDescriptionPort to access the Redpanda HTTP Proxy (pandaproxy).booleanEnables transaction support.
-
Method Details
-
transactionEnabled
@WithDefault("true") boolean transactionEnabled()Enables transaction support. Also enables the producer idempotence. Find more info about Redpanda transaction support on https://vectorized.io/blog/fast-transactions/. Notice that KIP-447 (producer scalability for exactly once semantic) and KIP-360 (Improve reliability of idempotent/transactional producer) are not supported. -
proxyPort
Port to access the Redpanda HTTP Proxy (pandaproxy).If not defined, the port will be chosen randomly.
-