To import data from external databases, I should use
Correct Answer:
D
Kafka Connect Sink is used to export data from Kafka to external databases and Kafka
Connect Source is used to import from external databases into Kafka.
In Kafka, every broker... (select three)
Correct Answer:
BEF
Kafka topics are divided into partitions and spread across brokers. Each brokers knows about all the metadata and each broker is a bootstrap broker, but only one of them is elected controller
What are the requirements for a Kafka broker to connect to a Zookeeper ensemble? (select two)
Correct Answer:
BD
Each broker must have a unique broker id and connect to the same zk ensemble and root zNode
What is the protocol used by Kafka clients to securely connect to the Confluent REST Proxy?
Correct Answer:
C
TLS - but it is still called SSL.
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=1 can't produce?
Correct Answer:
D
min.insync.replicas does not impact producers when acks=1 (only when acks=all)