Skip to main content
Delphix

Algorithm: Data Cleansing (KBA1662)

 

 

KBA

KBA# 1662

Overview

The Data Cleansing Algorithm is a simple algorithm that uses a lookup file with mappings of original/cleansed value pairs. These value pairs are imported when you create or modify the Data Cleansing algorithm.

This algorithm has been upgraded to the New Algorithm Framework as of Delphix Continuous Compliance Engine version 6.0.14.0.

Applicable Delphix Versions

Click here to view the versions of the Delphix engine to which this article applies
Major Release All Sub Releases
6.0

6.0.0.0, 6.0.1.0, 6.0.1.1, 6.0.2.0, 6.0.2.1, 6.0.3.0, 6.0.3.1, 6.0.4.0, 6.0.4.1, 6.0.4.2, 6.0.5.0, 6.0.6.0, 6.0.6.1, 6.0.7.0, 6.0.8.0, 6.0.8.1, 6.0.9.0, 6.0.10.0, 6.0.10.1, 6.0.11.0, 6.0.12.0, 6.0.12.1, 6.0.13.0, 6.0.13.1, 6.0.14.0, 6.0.15.0, 6.0.16.0, 6.0.17.0, 6.0.17.2

5.3

5.3.0.0, 5.3.0.1, 5.3.0.2, 5.3.0.3, 5.3.1.0, 5.3.1.1, 5.3.1.2, 5.3.2.0, 5.3.3.0, 5.3.3.1, 5.3.4.0, 5.3.5.0, 5.3.6.0, 5.3.7.0, 5.3.7.1, 5.3.8.0, 5.3.8.1, 5.3.9.0

5.2

5.2.2.0, 5.2.2.1, 5.2.3.0, 5.2.4.0, 5.2.5.0, 5.2.5.1, 5.2.6.0, 5.2.6.1

5.1

5.1.0.0, 5.1.1.0, 5.1.2.0, 5.1.3.0, 5.1.4.0, 5.1.5.0, 5.1.5.1, 5.1.6.0, 5.1.7.0, 5.1.8.0, 5.1.8.1, 5.1.9.0, 5.1.10.0

5.0

5.0.1.0, 5.0.1.1, 5.0.2.0, 5.0.2.1, 5.0.2.2, 5.0.2.3, 5.0.3.0, 5.0.3.1, 5.0.4.0, 5.0.4.1, 5.0.5.0, 5.0.5.1, 5.0.5.2, 5.0.5.3, 5.0.5.4

At a Glance 

Description: This algorithm is used to cleanse data (standardize in Data Quality terms). It can be used to obfuscate the data. The algorithm uses lookup values to change a set of terms to another (standard) set of terms. This algorithm is lightweight and fast.
Characteristics:
 
Type
RI1
1:12
Data Cleansing Lookup Yes  Yes

1 Referential Integrity - The cleaned value will be the same between job executions as well as tables.
2 1:1 Mapping - The cleaned value will be mapped uniquely to the input value.

Character 
Encoding:
Works with all character encodings (some bugs are known). Encoding should give the same result.
Data is not trimmed and it is Case Sensitive (Value and VALUE are different).
Lookup Pool Size: Up to 500,000
Limitations:

Considerations:

  • Will only match a full string in a field (not a word or words within a string).
  • Sensitive to white space.
  • A large pool size (number of rows in the lookup file) will take a long time to load. 
Customization: Creation: Lookup values are loaded when the algorithm is created from a text file.

Modify: The description and the list of lookup values can be changed. 
New Framework: This algorithm has been upgraded to the New Framework as of 6.0.14.0.

Creating and Modifying Algorithm  

The algorithms are accessed from the tab Settings and under the submenu Algorithm. Once created, the algorithm can be modified:

  • To create click Add Algorithm at the top of the page.
  • To modify click the Edit icon next to each algorithm.

User Interface 

When creating (and modifying) the algorithm, the following popup will display:

UI - Algorithm - Data Cleansing Algorithm Docs.png

  1. Algorithm Properties:
    • Algorithm Name.
    • Description.
  2. Lookup Details:
    • Lookup File Name.
    • Delimiter - the character used in the file to separate mappings of original/cleansed value pairs.

Modification 

Editable parameters are:

  • Description
  • List of lookup values
Note

Note:

To change any other parameter the algorithm needs to be deleted and then recreated. 

Considerations 

Pool Size and Performance 

The pool size (number of rows in the lookup file) affects both the algorithm creation time and the load time when the job starts up. An estimate is that the increase in load time is 10 to 3 - increase the number of values by 3 times and it will take 10 times longer to load. On an average system, it will take 4 min to load 500,000 values. Loading 1,500,00 will take 40 min. 

The graph below shows the load values in milliseconds (y) and in the number of values loaded on the horizontal axis (x). 

image.png

Memory Requirements 

The ingested values are loaded into RAM when the masking job starts. For large pool sizes, it might be required to increase the Min/Max Memory settings in the Job Configuration. 

White Space and Case Sensitivity  

The Data Cleansing Algorithm is sensitive to white spaces and case. This can be a problem if the data being masking is stored in a CHAR (or NCHAR) column as these values will be padded. 

White Space Workaround 

To resolve white space issues on a database, use this workaround:

  1. Open and edit the Rule Set
  2. Add a Custom SQL statement with the following amendment to the column that needs to be trimmed:

FrommaskCol
To   : LTRIM(RTRIM((maskCol)) as maskCol

Example:
SELECT ID, LTRIM(RTRIM((maskCol)) as maskCol from myTable;

Case Sensitivity workaround 

To resolve case sensitivity on a database, use this workaround:

  1. Open and edit the Rule Set
  2. Add a Custom SQL statement with the following amendment to the column with the case issue:

FrommaskCol
To   : UPPER((maskCol)) as maskCol

Example:
SELECT ID, UPPER(maskCol) as maskCol from myTable;

Masked Data Encoded with Non-Standard Code Page 

The data to be masked might be encoded and contain characters that are not converted correctly to UTF-8. The masked data is masked as????. This issue is resolved in version 5.1.

If experiencing this issue please raise a case with Delphix Support. 

Examples 

Below is an example of cleansed results using varchar. Note the case and white space sensitivity. 

Text file with search lookup values:

tst=test
Tst=Test
TST=TEST

Masking (cleansed) result:

+-----+--------+----------+
| ID  | Orig   | Cleansed |
+-----+--------+----------+
| 1   | tst    | test     |
| 2   | Tst    | Test     |
| 3   | TST    | TEST     |
+-----+--------+----------+
| 4   | tsT    | tsT      |  << Not cleansed >> no search value match
| 5   | TST    | TST      |  << Not cleansed >> trailing white space
+-----+--------+----------+

 

 

Related Articles

The following articles may provide more information or related information to this article:

Knowledge Base:

Documentation: