pentaho insert/update transformation

282 Views Asked by At

Have someone any idea why when I used insert/update in pentaho, it insert/update only with this values? enter image description here The tables are in the same database. One of transformation that I have in pentaho worked with great then 1000 rows insert/update but now I have so many problems with this insert/update because insert sometimes only 1 row per second.

Thank you!

I want to use insert/update in a transformation to be sure that the events I captured are update with the last version and I am expecting to insert/update with a higher speed in table not with 1 row per second

1

There are 1 best solutions below

2
Ana GH On

The Insert/Update operator is very slow, usually is more efficient to separate the rows to insert from the rows to update, and perform the two operations separately, in two separate transformations to avoid locking the table by inserting and updating rows in two separate operations at the same time.