This component creates a hash value. All configured input columns will be cleansed according to the given rules and concateneded in the order of the schema with the given delimiter. The resulting string is used to calculate the hash value.
Algorithm that will be used to generate the hash
Column of the output schema in which the hash value will be written
Column | Use | Trim | Case Sensitive |
---|---|---|---|
List of input columns | Check if column should added to the hash | Check if column should be trimmed | Select if column should be upper case, lower case, case sensitive or not in use (eg. in case of numeric values) |
Delimter to seperate the input values
Value that will be used to calculate the hash, if input value is null
- Example if replacement value is set to "#NULL#""
- COLUMN_1 = "Test"
- COLUMN_2 = null
- COLUMN_3 = 123
- Hash Input results in "Test";#NULL#;123
Maximum precision of float values
Maximum precision of double values
List of available number formats. Grouping is gernerally disabled.
- if checked
- all date fields will be represented as miliseconds since unix epoch
- if unchecked
- all date fields will be represented in the given date format
String based fields will be surrounded with the given quotation mark
If checked all empty trailing values will be truncated before hash will be calculated
- Example without quoting
- Hash Input = CUSTOMER A;1234;STREET 1;;;
- results in CUSTOMER A;1234;STREET 1
- Example with quoting
- Hash Input = "CUSTOMER A";1234;"STREET 1";"";;""
- results also in CUSTOMER A;1234;STREET 1
If all input values are null, the hash value will be replaced with the given value
- Example 1
- checked and value is set to "22222222222222222222222222222222"
- Hash input = ;;;;;
- Hash value = "22222222222222222222222222222222"
- Example 2
- unchecked
- Hash input = ;;;;;
- Hash value = 8f0158355357e8302939ea687dba9363
If checked the hash input (concatenation of all input values) will be exposed to the selected column