Java filter

Pentaho Data Integration

Version
9.3.x
Audience
anonymous
Part Number
MK-95PDIA003-15

The Java filter step refines a transformation data stream using a Java expression to set up conditional processing.


Transformation using the Java filter step

As shown in the sample transformation above, the output stream from the Data grid step is processed by the Java filter step. Based on the specified condition, the Java filter step sends matching data to the true step and non-matching data to the false step. Below is the condition used in this sample transformation.

if( condition)
{matching step}

else
{non-matching step}