Simple PDI Transformation Steps

Posted on by By admin, in Pentaho | 0

Pentaho Data Integration (PDI), it is also called as Kettle. Pentaho responsible for the Extract, Transform and Load (ETL) processes to the PDI component.

Pentaho Data Integration:

  • Pentaho Data Integration (PDI), it is also called as Kettle. Pentaho responsible for the Extract, Transform and Load (ETL) processes to the PDI component.
  • Data warehouses environments are most frequently used by this ETL tools. Other purposes are also used this PDI: Migrating data between applications or databases.

Example

  • Lets create a simple transformation to convert a CSV into an XML file.
  • Our Transformation has to do the following:
    • Read the CSV file.
    • Build the greetings message.
    • Save the greetings in the XML file.

Create a Transformation:

• Now Start the Transformation

Step 1:

  • Left workspace is the Palette, Select the Input category
  • Drag the CSV file onto the workspace on the right.

Step 2:

  • Select the Scripting category.
  • Drag the Modified JavaScript Value icon to the workspace.
  • Select the Output category.

Step 3:

  • Drag the XML Output icon to the workspace.

• Now link the CSV file input with the Modified Java Script Value by creating a Hop:

Configuring the CSV File Input:

Step 1:

  • Double-click on the CSV file input. The configuration window for the step will appear. The file location will be indicated, file format (e.g. delimiters, enclosure characters, etc.) and column metadata (e.g. column name, data type, etc).

Step 2:

  • Change the step name with one that is more representative of this Step’s function. In this case, list out type in name list.
  • For the Filename field, click Browse and select the input file

Step 3:

  • o Click Get Fields to add the list of column names of the input file to the grid. By default, the Step assumes that the file has headers (the Header row present checkbox is checked)
  • The grid has now the names of the columns of your file.

Step 4:

  • Click Preview to ensure that the file will be read as expected. The file will be appear then data showing in window. Click OK to finish.

Configuring Modified JavaScript Value:

Step 1:

  • Double-click on the Modified JavaScript Value.
  • The Step configuration window will appear. This is different compare to the previous Step config window in that it allows to write JavaScript code. To build the message “Hello,” concatenated with each of the names.
  • Name this Step Greetings.

Step 2:

  • The main area of the configuration window is for coding. To the left, there is a tree with a set of available functions that you can use in the code. In particular, the last two branches have the input and output fields, ready to use in the code. In this example there are two fields: last_name and name. Write the following code:
    var msg = 'Hello, ' + name + "!";
  • Variable created in the code through the bottom. Variable named msg we have created. This message will be send to the output file, the variable name in the grid to write.

Step 3:

  • Configuring the Modified Java Script Value step on click ok to finish.
  • On click-right the Step to bring up a context menu.

Step 4:

  • Input Fields show to select. The CSV file input Step come to the Input Fields are last_name and name.
  • Output Fields show to select. We see that not only do we have the existing fields, but also the new msg field.

Configuring the XML Output File:

Step 1:

  • Double-click the XML Output. This kind of step will appear while configuration in window. To set the name and location of the output file, and we want to include which of the fields that to be established. We may include all or some of the fields.

Step 2:

  • Name the Step File: Greetings.
  • To write in the File box:
    ${Internal.Transformation.Filename.Directory}/Hello.xml
  • Click Get Fields to fill the grid with the three input fields.
  • Save the Transformation again.

Step 3:

  • Click on the RUN button on the menu bar and launch the transformation.
  • We also create a Job which may be used to schedule multiple transformations and then run it.

Thank You,
Nikhilesh
Helical IT Solutions Pvt Ltd

logo

Best Open Source Business Intelligence Software Helical Insight is Here

logo

A Business Intelligence Framework

0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments