What's a Kafka partition made of?
Correct : C
Kafka partitions are made of segments (usually each segment is 1GB), and each segment has two corresponding indexes (offset index and time index)
Start a Discussions
Two consumers share the same group.id (consumer group id). Each consumer will
Correct : B
Each consumer is assigned a different partition of the topic to consume.
Start a Discussions
If I want to send binary data through the REST proxy, it needs to be base64 encoded. Which component needs to encode the binary data into base 64?
Correct : A
The REST Proxy requires to receive data over REST that is already base64 encoded, hence it is the responsibility of the producer
Start a Discussions
What is true about replicas ?
Correct : C
Replicas are passive - they don't handle produce or consume request. Produce and consume requests get sent to the node hosting partition leader.
Start a Discussions
There are five brokers in a cluster, a topic with 10 partitions and replication factor of 3, and a quota of producer_bytes_rate of 1 MB/sec has been specified for the client. What is the maximum throughput allowed for the client?
Correct : D
Each producer is allowed to produce @ 1MB/s to a broker. Max throughput 5 * 1MB, because we have 5 brokers.
Start a Discussions