How much should be the heap size of a broker in a production setup on a machine with 256 GB of RAM, in PLAINTEXT mode?
Correct Answer:
A
In Kafka, a small heap size is needed, while the rest of the RAM goes automatically to the page cache (managed by the OS). The heap size goes slightly up if you need to enable SSL
Which of the following Kafka Streams operators are stateful? (select all that apply)
Correct Answer:
BCDF
Seehttps://kafka.apache.org/20/documentation/streams/developer-guide/dsl- api.html#stateful-transformations
How do Kafka brokers ensure great performance between the producers and consumers? (select two)
Correct Answer:
BE
Kafka transfers data with zero-copy and sends the raw bytes it receives from the producer
straight to the consumer, leveraging the RAM available as page cache
Select all that applies (select THREE)
Correct Answer:
CDF
acks is a producer setting min.insync.replicas is a topic or broker setting and is only effective when acks=all
There are 3 producers writing to a topic with 5 partitions. There are 5 consumers consuming from the topic. How many Controllers will be present in the cluster?
Correct Answer:
D
There is only one controller in a cluster at all times.