You have a topic t1 with six partitions. You use Kafka Connect to send data from topic t1 in your Kafka cluster to Amazon S3. Kafka Connect is configured for two tasks.
How many partitions will each task process?
A producer is configured with the default partitioner. It is sending records to a topic that is configured with five partitions. The record does not contain any key.
What is the result of this?
The producer code below features a Callback class with a method called onCompletion().
When will the onCompletion() method be invoked?
Which two producer exceptions are examples of the class RetriableException? (Select two.)
What is a consequence of increasing the number of partitions in an existing Kafka topic?
You need to explain the best reason to implement the consumer callback interface ConsumerRebalanceListener prior to a Consumer Group Rebalance.
Which statement is correct?
Which two statements are correct when assigning partitions to the consumers in a consumer group using the assign() API?
(Select two.)
You need to configure a sink connector to write records that fail into a dead letter queue topic. Requirements:
Topic name: DLQ-Topic
Headers containing error context must be added to the messagesWhich three configuration parameters are necessary?(Select three.)
Your configuration parameters for a Source connector and Connect worker are:
offset.flush.interval.ms=60000
offset.flush.timeout.ms=500
offset.storage.topic=connect-offsets
offset.storage.replication.factor=-1Which four statements match the expected behavior?(Select four.)
You are experiencing low throughput from a Java producer.
Metrics show low I/O thread ratio and low I/O thread wait ratio.
What is the most likely cause of the slow producer performance?
You want to connect with username and password to a secured Kafka cluster that has SSL encryption.
Which properties must your client include?
You need to correctly join data from two Kafka topics.
Which two scenarios will allow for co-partitioning?
(Select two.)
Which configuration determines how many bytes of data are collected before sending messages to the Kafka broker?