banner



Pentaho Design Tools Data Integration Samples Transformations

PDI Transformation Tutorial

  1. Last updated
  2. Save as PDF

The Data Integration perspective of Spoon allows you to create two basic file types: transformations and jobs. Transformations are used to describe the data flows for ETL such as reading from a source, transforming data and loading it into a target location. Jobs are used to coordinate ETL activities such as defining the flow and dependencies for what order transformations should be run, or prepare for execution by checking conditions such as, "Is my source file available?" or "Does a table exist in my database?"

This exercise will step you through building your first transformation with Pentaho Data Integration introducing common concepts along the way. The exercise scenario includes a flat file (.csv) of sales data that you will load into a database so that mailing lists can be generated. Several of the customer records are missing postal codes (zip codes) that must be resolved before loading into the database. The logic looks like this:

File:/flowchart_for_creating_transformation.png

Retrieving Data from a Flat File

First connect to a repository, then follow the instructions below to retrieve data from a flat file.

  1. Select File >New > Transformation  in the upper left corner of the Spoon window to create a new transformation.

Creating a New Transformation

  1. Under the Design tab, expand the Input node; then, select and drag a Text File Input step onto the canvas.
  2. Double-click on the Text File input step. The Text file input window appears.  This window allows you to set the properties for this step.

TextFileInput_File.png

  1. In the Step Name field, type Read Sales Data. This renames theText file inputstep toRead Sales Data.
  2. Click Browse to locate the source file, sales_data.csv, available at ...\design-tools\data-integration\samples\transformations\files .   (The Browse button appears near the top right side of the window near theFile or Directoryfield.)  Click Open​.  The path to the source file appears in the File or directory field.
  3. Click Add. The path to the file appears under Selected Files.
  4. To look at the contents of the sample file perform the following steps:
    1. Click the Content tab, then set theFormat field toUnix​.
    2. Click the File tab again and click the Show file contentnear the bottom of the window.
    3. The Nr of lines to viewwindow appears.  Click theOK button to accept the default.
    4. The Content of first file window displays the file.  Examine the file to see how that input file is delimited, what enclosure character is used, and whether or not a header row is present. In the sample, the input file is comma (,) delimited, the enclosure character being a quotation mark (") and it contains a single header row containing field names.
    5. Click theClosebutton to close the window.
  5. To provide information about the content, perform the following steps:
    1. Click the Content tab. The fields under the Content tab allow you to define how your data is formatted.
    2. Make sure that the Separator is set to comma (,) and that the Enclosure is set to quotation mark ("). Enable Header because there is one line of header rows in the file.

textfileinput_content.png

  1. Click the Fields tab and click Get Fields to retrieve the input fields from your source file. When the Nr of lines to sample window appears, enter 0 in the field then click OK.

  2. if the Scan Result window displays, click Close to close the window.
  3. To verify that the data is being read correctly:
    1. Click the Content tab, then click Preview Rows.
    2. In the Enter preview size window clickOK.  TheExamine preview datawindow appears.
    3. Review the data, then clickClose.
  4. ClickOKto save the information that you entered in the step.
  5. To save the transformation, do these things.
    1. Select File > Save to save the transformation.
    2. The Transformation Propertieswindow appears.  In theTransformation Namefield, type Getting Started Transformation.  (Note that theTransformation Propertieswindow appears because you are connected to a repository.  If you were not connected to the repository, the standard save window would appear.)

TransformationProperties.png

  1. In theDirectoryfield, click the folder icon.
  2. Expand theHomedirectory and double-click the folder in which you want to save the transformation.  Your transformation is saved in the Pentaho Repository.
  3. ClickOKto close theTransformation Propertieswindow.

Filter Records with Missing Postal Codes

After completing Retrieve Data from a Flat File, you are ready to add the next step to your transformation. The source file contains several records that are missing postal codes. Use the Filter Rows transformation step to separate out those records so that you can resolve them in a later exercise.

  1. Add a Filter Rows step to your transformation. Under the Design tab, selectFlow > Filter Rows.
  2. Create a hop between the Read Sales Data step and the Filter Rows step. Hops are used to describe the flow of data in your transformation. To create the hop, click the Read Sales Data (Text File input) step, then press the <SHIFT> key down and draw a line to the Filter Rows step.
    File:/pdi_create_hop.png readsalesdata_filterrows.png
  3. Double-click the Filter Rows step. The Filter Rows window appears.
  4. In the Step Name field type, Filter Missing Zips.
  5. Under The condition, click <field>. The Fields  window appears. These are the conditions you can select.
  6. In the Fields window select POSTALCODE and click OK.
  7. Click on the comparison operator (set to = by default) and select the IS NOT NULL  from the Functions:window that appears.
  8. Click OK​ to close the Functions:window.
  9. ClickOK to exit the Filter Rows window.

    Note: You will return to this step later and configure the Send true data to step and Send false data to step settings after adding their target steps to your transformation.

  10. Select File > Saveto save your transformation.

Loading Your Data into a Relational Database

After completing Filter Records with Missing Postal Codes, you are ready to take all records exiting the Filter rows step where the POSTALCODE was not null (the true condition), and load them into a database table.

  1. Under the Design tab, expand the contents of the Output node.
  2. Click and drag a Table Output step into your transformation. Create a hop between the Filter Missing Zips and Table Output steps. In the dialog that appears, select Result is TRUE.
  3. Double-click the Table Output step to open its edit properties dialog box.
  4. Rename your Table Output Step to Write to Database.
  5. Click New next to the Connection field. You must create a connection to the database. The Database Connection dialog box appears.
  6. Provide the settings for connecting to the database.
    Field Setting
    Connection Name: Sample Data
    Connection Type: Hypersonic
    Host Name localhost
    Database Name sampledata
    Port Number 9001
    User Name pentaho_admin
    Password password (If "password" does not work, please check with your system administrator.)
  7. Click Test to make sure your entries are correct. A success message appears. Click OK.

    Note: If you get an error when testing your connection, ensure that you have provided the correct settings information as described in the table and that the sample database is running. See Start and Stop the Pentaho Server for information about how to start the Pentaho Server.

  8. Click OK, to exit the Database Connections window.
  9. Type SALES_DATA in the Target Table text field.
  10. Since this table does not exist in the target database, you will need use the software to generate the Data Definition Language (DDL) to create the table and execute it. DDLs are the SQL commands that define the different structures in a database such as CREATE TABLE.
    1. In the Table Output window, enable the Truncate Table property.
    2. Click the SQL button at the bottom of the Table output dialog box to generate the DDL for creating your target table.
    3. The Simple SQL editor window appears with the SQL statements needed to create the table.
    4. Click Execute to execute the SQL statement.
    5. The Results of the SQL statements window appears.  Examine the results, then click OKto close the Results of the SQL statements window.
    6. Click Close in the Simple SQL editor  window to close it.
    7. Click OK to close the Table output window.
  11. Save your transformation.

Retrieving Data from Your Lookup File

After Loading Your Data into a Relational Database, you are ready to retrieve data from your lookup file. You have been provided a second text file containing a list of cities, states, and postal codes that you will now use to look up the postal codes for all of the records where they were missing (the 'false' branch of your Filter rows step). First, you will use a Text file input step to read from the source file, then you will use a Stream lookup step to bring the resolved Postal Codes into the stream.

  1. Add a new Text File Input step to your transformation. In this step you will retrieve the records from your lookup file.  Do not add a hop yet.
  2. Open the Text File Input step window, then enter Read Postal Codes in the Step name  property.
  3. Click Browse to locate the source file, Zipssortedbycitystate.csv , located at ...\design-tools\data-integration\samples\transformations\files.
  4. Click Add. The path to the file appears under Selected files .
  5. To look at the contents of the sample file:
    1. Click theContenttab, then set theFormatfield toUnix​.
    2. Click theFiletab again and click theShow file contentnear the bottom of the window.
    3. TheNr of lines to viewwindow appears.  Click theOKbutton to accept the default.
    4. TheContent of first filewindow displays the file.  Examine the file to see how that input file is delimited, what enclosure character is used, and whether or not a header row is present. In the example, the input file is comma (,) delimited, the enclosure character being a quotation mark (") and it contains a single header row containing field names.
    5. Click theClosebutton to close the window.
  6. In the Content tab, change the Separator character to a comma (,). and confirm that the Enclosure setting is a quotation mark (").   Make sure the Header option is selected.
  7. Under the Fields tab, click Get Fields to retrieve the data from your .csv file.
  8. TheNr of lines to sample window appears. Enter 0 in the field, then click OK.
  9. If the Scan Result window displays, click Close to close it.
  10. Click Preview rows to make sure your entries are correct.  When prompted to enter the preview size, click OK.  Review the information in the window, then click Close.
  11. ClickOK to exit the Text File input window.
  12. Save the transformation.

Resolving Missing Zip Code Information

After Retrieving Data from Your Lookup File, you can begin to resolve the missing zip codes.

  1. Add a Stream Lookup step to your transformation.  To do this, click the Design tab, then expand the Lookup folder and choose Stream Lookup.
  2. Draw a hop from the Filter Missing Zips to theStream lookup step. In the dialog box that appears, select Result is FALSE .
  3. Create a hop from the Read Postal Codes step to the Stream lookup step.

ziptransformation_tutorial.png

  1. Double-click on the Stream lookup step to open the Stream Value Lookupwindow.
  2. Rename Stream Lookup to Lookup Missing Zips.
  3. From the Lookup step drop-down box, select Read Postal Codes as the lookup step.
  4. Define the CITY and STATE fields in the key(s) to look up the value(s) table. In row #1, click the drop down in the Field column and select CITY. Then, click in the LookupField column and select CITY. In row #2, click the drop down field in the Field column and select STATE. Then click in the LookupField column and select STATE.

File:/pdi_lookup_values.png StreamValueLookup_tutorial1.png

  1. Click Get Lookup Fields.
  2. POSTALCODE is the only field you want to retrieve. To delete the CITY and STATE lines, right-click in the line and select Delete Selected Lines .
  3. In the New Name field, give POSTALCODE a new name of ZIP_RESOLVED and make sure the Type is set to String.
  4. EnableUse sorted list (i.s.o. hashtable).

​​LookupDialog.png

  1. Click OK to close the Stream Value Lookup edit properties dialog box.​​
  2. Save your transformation.
  3. To preview the data:
    1. In the canvas, select the Lookup Missing Zips step, then right-click. From the menu that appears, select Preview.
    2. In the Transformation debug dialogwindow, click Quick Launch to preview the data flowing through this step.
    3. The Examine preview data window appears.  Notice that the new field, ZIP_RESOLVED , has been added to the stream containing your resolved postal codes.
    4. ClickCloseto close the window.
    5. If theSelect the preview stepwindow appears, click theClosebutton.
    6. Note that the execution results near the bottom of theSpoonwindow shows updated metrics in theStep Metricstab.

Completing Your Transformation

After you resolve missing zip code information, the last task is to clean up the field layout on your lookup stream. Cleaning up makes it so that it matches the format and layout of your other stream going to the Write to Database step. Create a Select values step for renaming fields on the stream, removing unnecessary fields, and more.

  1. Add a Select Values step to your transformation by expanding the Transform folder and choosing Select Values.
  2. Create a hop from the Lookup Missing Zips to theSelect Values step.
  3. Double-click the Select Values step to open its properties dialog box.
  4. Rename the Select Values step to Prepare Field Layout.
  5. Click Get fields to select to retrieve all fields and begin modifying the stream layout.
  6. In the Fields list, find the # column and click the number for the ZIP_RESOLVED field. Use <CTRL><UP> to move ZIP_RESOLVED just below the POSTALCODE field (the one that still contains null values).
  7. Select the old POSTALCODE field in the list (line 20) and delete it.

selectrenamevalues2.png

  1. The original POSTALCODE field was formatted as an 9-character string. You must modify your new field to match the form. Click the Meta-Data tab.
  2. In the first row of the Fields to alter table the meta-data for section, click in the Fieldname column and select ZIP_RESOLVED.
  3. Type POSTALCODE in the Rename to column; select String in the Type column, and type 9 in the Length column. Click OK to exit the edit properties dialog box.
  4. Draw a hop from the Prepare Field Layout (Select values) step to the Write to Database (Table output) step.
  5. When prompted, select the Main output of the stepoption.
  6. Save your transformation.

Transformation Steps

Run Your Transformation

Data Integration provides a number of deployment options. Running a Transformation explains these and other options available for execution. This final part of this exercise to create a transformation focuses exclusively on the Localrun option.

  1. In the PDI clientwindow, selectAction > Run.
  2. The Run Options window appears. Keep the default Pentaho local option for this exercise. It will use the native Pentaho engine and run the transformation on your local machine. See Run Configurations if you are interested in setting up configurations that use another engine, such as Spark, to run a transformation.

  3. Click Run. The transformation executes. Upon running the transformation, the Execution Results panel opens below the canvas.
  4. The Execution Results section of the window contains several different tabs that help you to see how the transformation executed, pinpoint errors, and monitor performance.

  • Step Metrics tab provides statistics for each step in your transformation including how many records were read, written, caused an error, processing speed (rows per second) and more.  This tab also indicates whether an error occurred in a transformation step.  We did not intentionally put any errors in this tutorial so it should run correctly.  But, if a mistake had occurred, steps that caused the transformation to fail would be highlighted in red.  In the example below, theLookup Missing Zips step caused an error.

  • The Logging tab displays the logging details for the most recent execution of the transformation. It also allows you to drill deeper to determine where errors occur.  Error lines are highlighted in red.  In the example below, theLookup Missing Zips step caused an error because it attempted to lookup values on a field calledPOSTALCODE2, which did not exist in the lookup stream.

  • TheExecution History tab provides you access to the Step Metrics and log information from previous executions of the transformation. This feature works only if you have configured your transformation to log to a database through the Logging tab of the Transformation Settings dialog. For more information on configuring logging or viewing the execution history, see Create DI Solutions.
  • The Performance Graph allows you to analyze the performance of steps based on a variety of metrics including how many records were read, written, caused an error, processing speed (rows per second) and more.  Like the Execution History, this feature requires you to configure your transformation to log to a database through the Logging tab of the Transformation Settings dialog box.
  • The Metrics tab allows you to see a Gantt chart after the transformation or job has run. This shows you information such as how long it takes to connect to a database, how much time is spent executing a SQL query, or how long it takes to load a transformation.

  • The Preview Data tab displays a preview of the data.

Pentaho Design Tools Data Integration Samples Transformations

Source: https://help.hitachivantara.com/Documentation/Pentaho/7.1/0J0/0C0/020

Posted by: martinthessalky.blogspot.com

0 Response to "Pentaho Design Tools Data Integration Samples Transformations"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel