To filter customer records based onfirst name containing "Tom"andage greater than 18, theFilterprocessor is the correct choice.
Filter (Option C) – Correct Answer:
TheFilter processorallows users to setconditional rulesto extract only the required data.
Users can specify conditions such as:
first_name CONTAINS "Tom"
AND
age > 18
This ensures that only relevant records are included in the output.
Why not other options?
Option A (Join):Used to combine data from multiple datasets based on a key field, not for filtering.
Option B (Aggregate):Used for summarizing data, such as calculating counts, sums, or averages.
Option D (Data Sampling):Used to select a random subset of data, not for filtering based on conditions.
[References:Talend Pipeline Designer User Guide, , , ]
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit