I don’t think that you can add this condition to the Joiner node directly. However, you can perform the join without this restriction first and then use a subsequent Row Filter node (I would probably use a Java Snippet Row Filter) to extract the rows that you are interested in.
This might be a bit inefficient if the condition reduces the result size significantly, but improves the readability of the process at the same time.
thanks a lot for your answer. This is a good idea. I tried but after two hours the execution of the Joiner wasn't completed. It is like 350.000 rows multiplied by 360, then 126.000.000 rows in total, before the execution of the Row Filter node. I think the server doesn't support this dimension...
Maybe with a R node but I have to study how to do because I am new also of R language.
Maybe I have to import two data frame, first for Table1 and second for Table2 and after join them using a loop (????).
Nils (or someone else) know how to do? Like name of the R node that accept two input?
The join should be reducing the number of rows and not increasing them, so if 350,000 and 360 are the number of records of the two tables you would not get 120mm for the row filter.
I have attached a sample workflow, in case you are still trying.