tMemorizeRows
Memorizes a sequence of rows that passes through and allows the following
component(s) to perform operations of your choice on the memorized rows.
tMemorizeRows temporarily
memorizes an array of incoming data in a row by row sequence and instantiates this array
by indexing each of the memorized rows from 0. The maximum number of rows to be
memorized at any given time is defined in the Basic
settings view.
tMemorizeRows Standard properties
These properties are used to configure tMemorizeRows running in the Standard Job framework.
The Standard
tMemorizeRows component belongs to the Misc family.
The component in this framework is available in all Talend
products.
Basic settings
Schema and Edit schema |
A schema is a row description, it defines the number of fields that will be Click Edit
Click Sync columns to retrieve the schema from |
 |
Built-in: The schema will be created and stored |
 |
Repository: You have already created the schema |
Row count to memorize |
Define the row count to be memorized. |
Columns to memorize |
Select the columns to be memorized from the incoming data schema. |
Advanced settings
tStatCatcher Statistics |
Select this check box to gather the Job processing metadata at a Job level as |
Global Variables
Global Variables |
NB_LINE_ROWS: the number of rows memorized. This is an
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 |
Usage
Usage rule |
This component can be used as intermediate step in a data flow or the last step Note: You can use the global variable NB_LINE_ROWS to retrieve the value of the |
Connections |
Outgoing links (from this component to another): Row: Main
Trigger: Run if; On Component Ok; On Component Incoming links (from one component to this one): Row: Main; For further information regarding connections, see |
Retrieving the different ages and lowest age data
This scenario displays the number of occurrences of different ages and the lowest age
within a group of customers. In this scenario, the customer data is entered manually.
You will see two ways to handle this data with the tMemorizeRows:
-
Inside the same subJob (with the tJavaFlex)
-
Outside the tMemorizeRows subJob (with the tJava)

This Job uses five components:
-
tFixedFlowInput: it contains rows of customer data such
as IDs, names and ages of the customers. -
tSortRow: it sorts the rows according to the age
data. -
tMemorizeRows: it temporarily memorizes a specific
number of incoming data rows at any given time and indexes the memorized data rows. -
tJavaFlex: it compares the age values of the data
memorized by the preceding component, counts the occurrences of different ages and displays
these ages in the Run view. -
tJava: it displays the number of occurrences of
different ages and the lowest age.
To replicate this scenario, proceed as follows:
Dropping and linking the components
-
Drop a tFixedFlowInput, a tSortRow, a tMemorizeRows, a tJavaFlex and a tJava component
by typing their names in the design workspace or dropping them from the Palette. -
Connect the tFixedFlowInput component to the
tSortRow component using a Row > Main connection. -
Do the same to link the tSortRow component to the
tMemorizeRows component and the tMemorizeRows component to the tJavaFlex
component. -
Connect the tFixedFlowInput component to the
tJava component using the Trigger > OnSubjobOk connection.
Configuring the components
Configuring the tFixedFlowInput component
-
Double-click the tFixedFlowInput component to open
its Basic settings view on the Component tab. -
Click the […] button next to Edit schema to open the Schema dialog box
and define the data structure of the input data. -
In this editor, click the [+] button three times to
add three columns and name them id, name and age. - In the Type column, select Integer for id and age.
-
Click OK to close the editor, then click Yes to validate these changes and accept the propagation prompted
by the dialog box that pops up. -
Select Use Inline Content (delimited file) in the
Mode area.In the Content field, enter the following customer
data:123451;Judy;272;Lily;453;Peter;594;John;305;Teddy;45
Configuring the tSortRow component
-
Double-click the tSortRow to open its Basic settings view on the Component tab.
- In the Criteria table, click the [+] button to add one row.
-
In the Schema column column, select the data column
on which the sorting operation is based. In this example, select age as it is the ages that should be compared and counted. -
In the sort num or alpha? column, select the type of
sorting operation to perform. In this example, select num, which means numerical, as age contains
integer data. - In the Order asc or desc? column, select desc to display data on the console in descending order.
Configuring the tMemorizeRows component
-
Double-click the tMemorizeRows component to open its
Basic settings view on the Component tab. -
In the Row count to memorize field, type in the
maximum number of rows to be memorized at any given time. As in this example you need to
compare ages of two customers for each time, enter 2. This component
memorizes two rows at maximum at any given moment and always indexes the new incoming row
as 0 and the previous incoming row as 1. -
In the Memorize column of the Columns to memorize table, select the check box(es) to determine the
column(s) to be memorized. In this example, select the check box corresponding to
age.
Configuring the tJavaFlex and tJava components
-
Double-click the tJavaFlex component to open its
Basic settings view on the Component tab. -
In the Start code area, enter the Java code that will
be called during the initialization phase. In this example, type inint
in order to declare a variable count and assign the
count=0;
value 0 to it. -
In the Main code area, enter the Java code to be
applied to each row in the data flow. In this scenario, type
in:if(!age_tMemorizeRows_1[0].equals(age_tMemorizeRows_1[1]))
This
{
count++;
}
System.out.println(age_tMemorizeRows_1[0]);
code compares two ages memorized by the tMemorizeRows
component each time and counts one change every time the ages are found to be different.
This code then displays the age that has been indexed as 0 by the tMemorizeRows component. When the tJavaFlex
component is in the same flow of the tMemorizeRows
component, the variable format isColumnName_ComponentName[index]
. -
In the End code area, enter the Java code that will
be called during the closing phase. In this example, type inglobalMap.put("number",
to initialize the global variable number with the value of the count
count);
variable. -
Double-click the tJava component to open its
Basic settings view on the Component tab. -
In the Code area, enter the flollowing code to
display the number of occurrences of different ages and the lowest age within the
customers on the
console:System.out.println("Different ages:
"+globalMap.get("number"));System.out.println("Lowest age: " + ((Integer[])globalMap.get("tMemorizeRows_1_age"))[0]);
The methodglobalMap.get()
is used by the tJava to retrieve the array values. Note that here, the tJava is used outside the subJob tMemorizeRows so the variable format should be
ComponentName_ColumnName
, which is different from the variable format used
by a component placed in the same flow.
Saving and executing the Job
- Press Ctrl+S to save your Job.
-
Press F6, or click Run on the Run console to execute the
Job.
In the console, you can read that there are four different ages and that the lowest age is
27 within the group of customers.