Warning
This component will be available in the Palette of
the studio on the condition that you have subscribed to Talend Studio.
Component family |
Processing |
|
Function |
tRules allows you to apply one or |
|
Objective |
tRules allows you to use business |
|
Basic settings |
Property type |
Either Built-in or Repository. Since version 5.6, both the Built-In mode and the Repository mode are |
|
|
Built-in: No property data stored |
|
|
Repository: Select the repository |
|
DRL/XLS FILE |
Browse to the Drools or Excel file that holds the business rules You can use business rules stored in external files or create |
|
Outputs |
Set the business rules to use on the output data.
Schema: Create/select the output
Rule: Create/select the business NoteThe import field in the code of a rule file needs to For more information on creating business rules, see the Drools |
Advanced settings |
tStatCatcher Statistics |
Select this check box to gather the Job processing metadata at a |
Global Variables |
ERROR_MESSAGE: the error message generated by the NB_LINE: the number of rows read by an input component or 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 an intermediate component in a data flow. It |
|
Limitation |
n/a |
This scenario is a four-component Job that aims at reading client data and retrieving
only the clients that match business rules stored in an external Drools file.
For this example, you must have a Drools file of .xls or .drl format that holds
the business rules you will use in the Job.
In this example, the business rules are defined in an Excel file as the following:
-
The Import field must respect the
following format <projectname>.<lowercase
jobname>_0_1.<jobname>.*. For example,
dq_project.business_rule_0_1.Business_Rule.* means
that the name of the project in the studio is
dq_project and the name of the Job is
Business_Rule.Make sure to define in this field the exact project and Job names you have
in your studio. -
the RuleAGE rule retrieves all clients
whose age is between 30 and 39 and
writes them to the first output flow. -
the RuleREGION rule retrieves all clients
who live in the EMEA region and writes them to the
second output flow.In the output schema of the tRules
component, make sure to use the exact names of the rules defined in the
Excel Drools file.
-
Drop the following components from the Palette to the
design workspace: tFileInputExcel,
tRules and two tLogRow. -
Double-click tFileInputExcel to display its Basic settings view and define the component
properties. -
In the Property type list, select
Built-in and fill in the fields that
follow. -
Click the three-dot button next to the File
Name/Stream field and browse to the source file to set its
path and name. The source file used in this example is called
client and it holds client data.If needed, right-click tFileInputExcel
and select Data viewer to have a preview of
the input data. -
Select the All sheets check box to retrieve the data
from all sheets of the excel file. -
From the Schema list, select Built-in and click Edit
schema to open a dialog box where you can define the schema
of the input file.In this example, the source file holds four columns:
id, name, age and
region. -
Click OK to validate your changes and
close the dialog box.
Setting the rule schemas
-
In the design workspace, double-click tRules to display its Basic
settings view and define the component properties. -
In the Property type list, select
Repository if you have stored the
file that holds the business rules in the Metadata > Rules
managementnode of the Repository tree view. If not, select Built-in and browse to the Drools
file.For more information on how to create and store business rules, see
Talend Studio User
Guide. -
In the Outputs table, click the plus
button to add two rows that represent two different output flows, each
using one of the two business rules defined in the Drools file. -
Click in the first row of the Schema
column to display a three-dot button. Click the button to open a dialog
box and set a name for the output schema. -
Enter the exact name of the first rule as it is written in the Drools
file, RuleAGE in this example, and then click
OK.A dialog box opens.
-
Define your output schema. In this example, we want to recuperate the
input schema. Click OK to close the
dialog box. -
Do the same in the second line of the Schema column.
Enter the exact name of the second rule as it is written in the Drools
file RuleREGION to have it as the name of the
second output schema, and then recuperate the input schema in the open
dialog box.You will have an error message when trying to execute the Job if the
name of the output schemas in your Job do not match the exact names of
the rules in the Drools file.
Selecting the rules
-
Click in the first line of the Rule
column to display a three-dot button. Click the button to open the
[Rule] dialog box. -
Select the option check box that corresponds to your needs:
-
View Rules: to open the
business rule file in read-only mode, or -
Select a rule from
repository: to select the relevant predefined
rule from the business rules file stored in the Repository tree view.
-
-
In the Rule list, select the rule you
want to apply to the first output schema, RuleAGE,
and then click OK.The selected rule displays in the Rules column.
In this example, we want to apply RuleAGE to the first output schema and RuleREGION to the second output
schema. -
Do the same to select the rule for the second output schema,
RuleREGION and then click OK. -
In the design workspace, double-click each of the tLogRow components to define its properties.
For more information, see tLogRow. -
Save your Job and press F6 to execute
it.The Run console displays the two
output flows: the first output flow lists all clients whose age is
between 30 and 39, and the
second output flow lists all clients who live in the
EMEA region.
This scenario is a three-component Job that aims at creating business rules of DRL
format from the studio. You can then use these rules to retrieve zip codes for two
specific cities you define in the rules.
-
In the Repository tree view, expand
Metadata > Rules management. -
Right-click Embedded Rules and select
Create Rule. -
In the open wizard, enter a name for the rule template, fill in its
settings as needed and click Next. -
Select the Create option and from the
Type of rule resource list, select
New DRL. -
Click Finish.
A rule template is created and opened in a rule editor in the workspace.
This rule template is embedded in a tRules
component. You can define one or several DRL rules in the template from inside the
tRules component.
-
Drop a tFixedFlowInput and two tLogRow components from the Palette to the design workspace.
-
From the Embedded Rules node in the
Repository tree view, drop the rule
template you created.A tRules component with the embedded rule
template is displayed on the workspace. -
Link tFixedFlowInput to tRule using a Row >
Main link. -
Double-click tFileInputDelimited to
display its Basic settings view and define
the component properties. -
Click the […] button next to Edit schema to open the schema editor.
-
Add two rows using the [+] button, name
the rows as zipCode and CityName
and click OK.When you define the DRL rules, you will use the
zipCode column to match the city zip codes and the
CityName column to output the name of the city that
match the zip code.Note
Make sure to start the column name you will use to match the zip code
with lower case, otherwise you will get an error when trying to run the
Job. -
In the Mode area, select the Use Inline Content (delimited file).
-
Set the row and field separators, and in the Content table, type in the delimited data on which to apply
the DRL rules.
Setting the rule schemas
-
In the design workspace, double-click tRules to display its Basic
settings view and define the component properties.The Property Type is automatically set to
Repository as you have already stored
the rule template in the Studio. -
Click the […] button to open a dialog
box that lists the DRL rules stored locally in the repository. -
Select the rule template in which you want to define the rule schemas,
ZipCodeRuleSet in this example, and then click
OK. -
Use the [+] button to add two rows to the
Outputs table, click in the Schema column and then click the […] button. -
In the open dialog box, set a name for the first output schema, call it
Paris, and click OK. -
In the open dialog box, define your output schema. Copy
zipCode and CityName from the
input flow to the output flow and click OK. -
Do the same to create a second output schema, call it
Suresnes and similarly copy the two input columns
to the output flow.Each of the two output schemas will use one of the two DRL rules you will
define in the rule template. -
Right-click tRules and select Row > Paris to link the component to the first
tLogRow. -
Do the same and link tRules to the second
tLogRow using the Row > Suresnes link.
Creating the DRL rules
-
In the Outputs table, click in the
Rule column and then click the
[…] button of the
Paris schema. -
In the open dialog box, select one of the options as the following:
Select
To…
Edit Rules
open the rule in the rule editor in the
workspace.Create a rule with
guideopen a dialog box where you can define a rule in the
rule template.select a rule from
repositoryselect a predefined rule from the rule template
created and stored in the Repository tree view.In this example, select the Create a rule with
guide option. -
In the open dialog box, use the Drools syntax to set the condition of the
“Paris” rule as the following:zipCode
, and then click OK.
matches "75\d{3}"The new “Paris” rule is generated and displayed in
the Rule column. This rule retrieves from
the Paris schema all zip codes that start with 75 and
the three figures that follow. -
Click in the Rule column and then click
the three-dot button of the “Paris” rule.The rule template is opened in the rule editor in the workspace.
-
In the “Paris” rule, add the code
output.CityName = "Paris"
to output
Paris as the city name in the first output
flow. -
Repeat the above steps to create a “Suresnes” rule
and set its condition as the followingzipCode ==
.
"92150"The new rule is displayed in the Rule
column. This rule retrieves from the Suresnes schema
all zip codes that are equal to 92150. -
In the “Suresnes” rule, add the code
output.CityName = "Suresnes"
to output
Suresnes as the city name in the second output
flow. -
In the design workspace, double-click each of the tLogRow components to define its properties.
For more information, see tLogRow.
-
Save your Job and press F6 to execute
it.The Run console displays two output flows
with zip codes and city names.In the first output flow, the “Paris” rule retrieves
all zip codes that start with 75 and writes the city name as
Paris.In the second output flow, the “Suresnes” rule retrieves all zip
codes that are equal to 92150 and writes the city name as
Suresnes.