The following additional properties are displayed at Kafka queue providers:
• Bootstrap servers: this mandatory property, which can be a maximum of 4000 characters in length, allows you to specify a comma-separated list of host names and ports used to connect to a Kafka cluster.
• Acknowledgment: this dropdown field exposes values 'None' (the default), 'Leader' and 'All'. It represents the ACK-value of partition replicas that must receive a record before a write is considered successful.
• Compression type: this dropdown field exposes values 'None', 'Gzip', 'Snappy' (the default), 'Lz4' and 'Zstd'. It allows you to define the type of compression algorithm used for data generated by the producer
• Max. retry attempts: this numeric property allows you to specify the number of attempts to be made if there is a server error. The property accepts a range of values from 0 to 30. Setting it to 0 means that no retries are performed.
• Batch size: this numeric property accepts values from 0 to 2,000,000, and defaults to 1,000,000. It allows you to specify the size of messages, in bytes, to be sent as a batch to the same partition. Setting to 0 means batching is not used.
• Linger time: this numeric property accepts values from 0.00 (the default) to 1000.00. It represents the minimum time, in milliseconds, to wait for additional messages before sending the current batch. Setting the property to 0 means no waiting occurs.
•