CCDAK Exam Question 1
To allow consumers in a group to resume at the previously committed offset, I need to set the proper value for...
CCDAK Exam Question 2
Which of these joins does not require input topics to be sharing the same number of partitions?
CCDAK Exam Question 3
What exceptions may be caught by the following producer? (select two)
ProducerRecord<String, String> record =
new ProducerRecord<>("topic1", "key1", "value1");
try {
producer.send(record);
} catch (Exception e) {
e.printStackTrace();
}
ProducerRecord<String, String> record =
new ProducerRecord<>("topic1", "key1", "value1");
try {
producer.send(record);
} catch (Exception e) {
e.printStackTrace();
}
CCDAK Exam Question 4
A topic has three replicas and you set min.insync.replicas to 2. If two out of three replicas are not available, what happens when a consume request is sent to broker?
CCDAK Exam Question 5
If a topic has a replication factor of 3...