Bird
Raised Fist0

Which of the following is the correct syntax to specify multiple transforms in Kafka Connect configuration?

easy📝 Syntax Q3 of Q15
Kafka - Connect
Which of the following is the correct syntax to specify multiple transforms in Kafka Connect configuration?
Atransforms = {InsertField, ReplaceField}
Btransforms=[InsertField;ReplaceField]
Ctransforms: InsertField ReplaceField
Dtransforms=InsertField,ReplaceField
Step-by-Step Solution
Solution:
  1. Step 1: Recall Kafka Connect transform syntax

    Multiple transforms are listed as a comma-separated list without brackets or braces.
  2. Step 2: Identify correct syntax

    transforms=InsertField,ReplaceField matches the correct format: transforms=InsertField,ReplaceField.
  3. Final Answer:

    transforms=InsertField,ReplaceField -> Option D
  4. Quick Check:

    Multiple transforms = comma-separated list [OK]
Quick Trick: Use commas to separate transform names, no brackets needed [OK]
Common Mistakes:
MISTAKES
  • Using brackets or braces around transform list
  • Separating transforms with spaces or semicolons
  • Using colons instead of equals sign

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes