Table of Contents

Search

  1. Preface
  2. Introduction to Informatica Big Data Management
  3. Mappings in the Hadoop Environment
  4. Mapping Sources in the Hadoop Environment
  5. Mapping Targets in the Hadoop Environment
  6. Mapping Transformations in the Hadoop Environment
  7. Processing Hierarchical Data on the Spark Engine
  8. Configuring Transformations to Process Hierarchical Data
  9. Processing Unstructured and Semi-structured Data with an Intelligent Structure Model
  10. Stateful Computing on the Spark Engine
  11. Monitoring Mappings in the Hadoop Environment
  12. Mappings in the Native Environment
  13. Profiles
  14. Native Environment Optimization
  15. Cluster Workflows
  16. Connections
  17. Data Type Reference
  18. Function Reference
  19. Parameter Reference

Big Data Management User Guide

Big Data Management User Guide

Data Warehouse Optimization Mapping Example

Data Warehouse Optimization Mapping Example

You can optimize an enterprise data warehouse with the Hadoop system to store more terabytes of data cheaply in the warehouse.
For example, you need to analyze customer portfolios by processing the records that have changed in a 24-hour time period. You can offload the data on Hadoop, find the customer records that have been inserted, deleted, and updated in the last 24 hours, and then update those records in your data warehouse. You can capture these changes even if the number of columns change or if the keys change in the source files.
To capture the changes, you can create the following mappings in the Developer tool:
Mapping_Day1
Create a mapping to read customer data from flat files in a local file system and write to an HDFS target for the first 24-hour period.
Mapping_Day2
Create a mapping to read customer data from flat files in a local file system and write to an HDFS target for the next 24-hour period.
m_CDC_DWHOptimization
Create a mapping to capture the changed data. The mapping reads data from HDFS and identifies the data that has changed. To increase performance, you configure the mapping to run on Hadoop cluster nodes in a Hadoop environment.
The following image shows the mapping m_CDC_DWHOptimization:
The image shows the following sources: CustomerData_Day1, CustomerData_Day2. It shows four Expression transformations. Extract_Key_NonKey_File1 connects to an Expression. Extract_Key_Nonkey_File2 connects to Expression 1. These transformations join to a Joiner transformation. The Joiner transformations connects to the following Filter transformations: Insert, Delete, and Update. It shows the following target objects: Write_HDFS_Insert, Write_HDFS_delete, Write_HDFS_update.
The mapping contains the following objects:
  • Read transformations. Transformations that read data from HDFS files that were the targets of Mapping_Day1 and Mapping_Day2. The Data Integration Service reads all of the data as a single column.
  • Expression transformations. Extract a key from the non-key values in the data. The expressions use the INSTR function and SUBSTR function to perform the extraction of key values.
  • Joiner transformation. Performs a full outer join on the two sources based on the keys generated by the Expression transformations.
  • Filter transformations. Use the output of the Joiner transformation to filter rows based on whether or not the rows should be updated, deleted, or inserted.
  • Write transformations. Transformations that write the data to three HDFS files based on whether the data is inserted, deleted, or updated.
Consolidated_Mapping
Create a mapping to consolidate the data in the HDFS files and load the data to the data warehouse.
The following figure shows the mapping Consolidated_Mapping:
The image shows the following sources: Read_HDFS_delete, Read_HDFS_Insert, Read_HDFS_update. It shows the following Expression transformations: del_exp, Insert_exp, update_exp1. It shows a Union transformation and the Write_FF_ConsolidatedTarget.
The mapping contains the following objects:
  • Read transformations. Transformations that read data from HDFS files that were the target of the previous mapping are the sources of this mapping.
  • Expression transformations. Add the deleted, updated, or inserted tags to the data rows.
  • Union transformation. Combines the records.
  • Write transformation. Transformation that writes data to the flat file that acts as a staging location on the local file system.
You can open each mapping and right-click to run the mapping. To run all mappings in sequence, use a workflow.
The following image shows the example Data Warehouse Optimization workflow:
The image shows the Start Event and End Event with four mappings. It shows the following mappings: Mapping_Day1, Mapping_Day2, m_CDC_DWHOptimization, Consolidated_Mapping.
To run the workflow, use the infacmd wfs startWorkflow command.

0 COMMENTS

We’d like to hear from you!