
Warning
This component will be available in the Palette of
Talend Studio on the condition that you have subscribed to one of
the Talend Platform products.
Component family |
Data Quality |
|
Function |
tFuzzyJoin joins two tables by doing a fuzzy |
|
Purpose |
Helps ensuring the data quality of any source data against a reference data |
|
Basic settings |
Schema and Edit Schema |
A schema is a row description, it defines the number of fields to be processed Since version 5.6, both the Built-In mode and the Repository mode are |
|
|
Built-in: You create and store the schema |
|
|
Repository: You have already created and stored |
|
Include lookup columns in output |
Select this check box to include the lookup columns you define in the output |
|
Input key attribute |
Select the column(s) from the main flow that needs to be checked against the |
|
Lookup key attribute |
Select the lookup key columns that you will use as a reference against which to |
|
Matching type |
Select the relevant matching algorithm from the list:
Exact Match: matches each processed entry to all
Levenshtein: Based on the edit distance theory. It
Metaphone: Based on a phonetic algorithm for
Double Metaphone: a new version of the Metaphone |
|
Case sensitive |
Select this check box to consider the letter case. |
|
Min. distance |
Only for Levenshtein. Set the minimum number of NoteYou can create and store context variables for the minimum and maximum |
|
Max. distance |
Only for Levenshtein. Set the maximum number of |
|
Inner join (with reject output) |
Select this check box to join the two tables first and gather the rejected data |
Advanced settings |
tStatCatcher |
Select this check box to collect log data at the component level. |
Global Variables |
ERROR_MESSAGE: the error message generated by the A Flow variable functions during the execution of a component while an After variable To fill up a field or expression with a variable, press Ctrl + For further information about variables, see Talend Studio |
|
Usage |
This component is not startable and it requires two input components and one or |
|
Limitation/prerequisite |
n/a |
This scenario describes a five-component Job aiming at: first checking the edit distance
between the IdClient column of an input file against the data of the
reference input file, and second checking all emails by their pronunciation in the
Email column against the data of the reference input file. The outputs
of these two matching types are written in two separate files.
In this scenario, we have already stored the input schemas of the input and reference
files in the Repository. For more information about storing schema metadata in the Repository tree view, see Talend Studio User
Guide.
-
In the Repository tree view, expand Metadata and the file node where you have stored the input
schemas and drop the relevant file onto the design workspace.The [Components] dialog box displays.
-
Select tFileInputDelimited from the list and click
OK to close the dialog box.The tFileInputDelimited component displays in the
workspace. The input file used in this scenario is called
ClientSample. It holds 12 columns including the two columns
IdCient and Email we want to do the fuzzy
match on. -
Do the same for the second input file you want to use as a reference,
ClientSample_Update in this scenario. -
Drop the following components from the Palette onto
the design workspace: tFuzzyJoin, tFileOutputExcel, and tFileOutputDelimited. -
Connect the main and reference input files to tFuzzyJoin using Main links. The link
between the reference input file and tFuzzyJoin
displays as a Lookup link on the design workspace. -
Connect tFuzzyJoin to tFileOutputExcel using the Main link and
tFuzzyJoin to tFileOutputDelimited using the Inner join
reject link. -
If needed, double-click the main and reference input files to display their
Basic settings views. All their property fields are
automatically filled in. If you do not define your input files in the Repository, fill
in the details manually after selecting Built-in in the
Property Type field.
-
Double-click tFuzzyJoin to display its Basic settings view and define its properties.
-
Click the Edit schema button to open a dialog box
that displays the data structure of the input files and then define the data you want to
pass to the output components, two columns in this scenario,
IdClient and Email. -
Click OK to close the dialog box.
-
In the Key definition area of the Basic settings view of tFuzzyJoin, click the plus button to add two columns to the list and then
select the input columns and the output columns you want to do the fuzzy matching on
from the Input key attribute and Lookup key attribute lists respectively, IdClient and
Email in this example. -
Click in the first cell of the Matching type column
and select from the list the method to be used to check the incoming data against the
reference data. In this scenario, Levenshtein is the matching type
to be used. -
Then set the minimum and maximum distances. In this method, the distance is the
number of character changes (insertion, deletion or substitution) that needs to be
carried out in order for the entry to fully match the reference. In this example, we
want the minimum distance to be 0 and the maximum distance to be 2. This will output all
entries in the IdClient that exactly match or that have maximum two
character changes.Note
You can create and store context variables for the minimum and maximum distances
in order to start from a low max number to match rows and go up to higher max number
to match more possible rows. You can press Ctrl+Space
to access the variable list and select these new context variables. For more
information about context variables, see Talend Studio User Guide. -
Set the matching type for the second column to be checked,
Metaphone in this example. There is no minimum nor maximum
distance to set because this matching method is based on phonetic discrepancies between
the input main and reference data. -
Select the Inner join (with reject output) check
box to define one of the outputs as inner join reject table.
-
Double-click tFileOutputExcel to display its
Basic settings view and define its properties. -
Set the destination file name as well as the Sheet name and select the Include header check box.
-
Double-click tFileOutputDelimited to display its
Basic settings view and define its properties. -
Set the destination file name as well as row and field separators in the
corresponding fields and select the Include header
check box.