An ecommerce wesbite sells some custom made goods. What's the natural way of modeling this data in Kafka streams?
A producer just sent a message to the leader broker for a topic partition. The producer used acks=1 and therefore the data has not yet been replicated to followers. Under which conditions will the consumer see the message?
To allow consumers in a group to resume at the previously committed offset, I need to set the proper value for...
A kafka topic has a replication factor of 3 and min.insync.replicas setting of 2. How many brokers can go down before a producer with acks=all can't produce?
A bank uses a Kafka cluster for credit card payments. What should be the value of the property unclean.leader.election.enable?