최신Confluent Certified Developer for Apache Kafka Certification Examination - CCDAK무료샘플문제
Which configuration allows more time for the consumer poll to process records?
(What are two stateless operations in the Kafka Streams API?
Select two.)
(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=-1
Which two statements match the expected behavior?
Select two.)
You are building a system for a retail store selling products to customers.
Which three datasets should you model as a GlobalKTable?
(Select three.)
(You are developing a Java application that includes a Kafka consumer.
You need to integrate Kafka client logs with your own application logs.
Your application is using the Log4j2 logging framework.
Which Java library dependency must you include in your project?)
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?
(You need to send a JSON message on the wire. The message key is a string.
How would you do this?)
Your company has three Kafka clusters: Development, Testing, and Production.
The Production cluster is running out of storage, so you add a new node.
Which two statements about the new node are true?
(Select two.)
You are writing a producer application and need to ensure proper delivery. You configure the producer with acks=all.
Which two actions should you take to ensure proper error handling?
(Select two.)
Match each configuration parameter with the correct option.
To answer choose a match for each option from the drop-down. Partial
credit is given for each correct answer.


Explanation:
Correct Matches
* path.format#Only valid for some Source Connectors
* value.converter#Valid for all Source Connectors
* input.path#Only valid for some Source Connectors
* errors.retry.timeout#Valid for all Source Connectors
* tasks.max#Valid for all Source Connectors
* path.formatThis is a connector-specific configuration, commonly used by file-based or storage-based source connectors (for example, HDFS, S3, or FilePulse connectors). It isnot part of the Kafka Connect framework itself, so it is only valid for some source connectors.
* value.converterThis is aworker-level configurationthat defines how record values are converted (JSON, Avro, Protobuf, etc.). It applies toall connectorsrunning on the worker unless overridden at the connector level.
* input.pathThis configuration is specific to file-based source connectors (e.g., FileStreamSourceConnector). It isnot universally supported, so it is only valid for some source connectors.
* errors.retry.timeoutThis is part of Kafka Connect'serror handling framework, introduced to support retries and tolerance of transient errors. It is ageneric Connect configurationand valid for all connectors.
* tasks.maxThis is amandatory, generic connector configurationthat controls the maximum number of tasks a connector may create. It is valid forall source (and sink) connectors.