Which statements are correct about partitions? (Choose two.)
Answer(s): B,C
Which secure communication is supported between the REST proxy and REST clients?
Answer(s): A
Which valid security protocols are included for broker listeners? (Choose three.)
Answer(s): A,B,D
By default, what do Kafka broker network connections have?
By default, Kafka brokers use the PLAINTEXT protocol for network communication. This means:No encryption data is sent in plain text.No authentication any client can connect without verifying identity. No authorization there are no access control checks by default.Security features like TLS, SASL, and ACLs must be explicitly configured.
Which of the following are Kafka Connect internal topics? (Choose three.)
Answer(s): A,C,E
connect-configs stores connector configurations.connect-status tracks the status of connectors and tasks (e.g., RUNNING, FAILED). connect-offsets stores source connector offsets for reading from external systems.
You are using Confluent Schema Registry to provide a RESTful interface for storing and retrieving schemas.Which types of schemas are supported? (Choose three.)
Avro is the original and most commonly used schema format supported by Schema Registry. Confluent Schema Registry supports JSON Schema for validation and compatibility checks. Protocol Buffers (Protobuf) are supported for schema management in Schema Registry.
Multiple clients are sharing a Kafka cluster.As an administrator, how would you ensure that Kafka resources are distributed fairly to all clients?
Kafka quotas allow administrators to control and limit the rate of data production and consumption per client (producer/consumer), ensuring fair use of broker resources among multiple clients.
A customer has a use case for a ksqlDB persistent query. You need to make sure that duplicate messages are not processed and messages are not skipped.Which property should you use?
processing.guarantee=exactly_once ensures that messages are processed exactly once by ksqlDB, preventing both duplicates and message loss.