What is the default `acks` for real time tables re...
# troubleshooting
s
What is the default
acks
for real time tables reading from kafka? Is it
acks=all
?
t
Hi @Sukesh Boggavarapu, from my understanding,
acks
is a Kafka producer configuration for the number of Kafka brokers required to acknowledge a message is to be considered a successful write. Pinot consumes messages from the Kafka consumer point of view so it is not a related configuration.
1
s
Hmm...Thank you. That makes sense.