View all questions & answers for the CCDAK exam
Which two statements about Kafka Connect Single Message Transforms (SMTs) are correct?
(Select two.)
Multiple SMTs can be chained together and act on source or sink messages.
SMTs are often used to join multiple records from a source data system into a single Kafka record.
Masking data is a good example of an SMT.
SMT functionality is included within Kafka Connect converters.
SMTs (Single Message Transforms) arelightweight transformationsapplied to individual messages as they pass through Kafka Connect.
Chaining SMTs: You can applymultiple SMTsin sequence by defining them in order in the connector config.
Masking or modifying fieldsis acommon use case(e.g., redacting sensitive data).
FromKafka Connect Documentation:
“Single Message Transforms (SMTs) are applied to individual messages. You can chain multiple SMTs together.”
SMTsdo not perform joins(B is incorrect).
Converters and SMTs areseparate concerns(D is incorrect).
Submit