Kafka Rest Settings
Properties
producer_compression_type(string): Specify the default compression type for producers. This configuration accepts the standard compression codecs (‘gzip’, ‘snappy’, ’lz4’, ‘zstd’). It additionally accepts ’none’ which is the default and equivalent to no compression.name_strategy_validation(boolean): If true, validate that given schema is registered under expected subject name by the used name strategy when producing messages.name_strategy(string): Name strategy to use when selecting subject for storing schemasconsumer_enable_auto_commit(boolean): If true the consumer’s offset will be periodically committed to Kafka in the backgroundproducer_acks(string): The number of acknowledgments the producer requires the leader to have received before considering a request complete. If set to ‘all’ or ‘-1’, the leader will wait for the full set of in-sync replicas to acknowledge the record.consumer_request_max_bytes(integer): Maximum number of bytes in unencoded message keys and values by a single requestproducer_max_request_size(integer): The maximum size of a request in bytes. Note that Kafka broker can also cap the record batch size.simpleconsumer_pool_size_max(integer): Maximum number of SimpleConsumers that can be instantiated per brokerproducer_linger_ms(integer): Wait for up to the given delay to allow batching records togetherconsumer_request_timeout_ms(integer): The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached
Last updated on