Reputation: 2422
Using Kettle-Spoon 5.1, I have a transform that:
Note, the rollback is depending on the result not necessarily an error/exception. If a particular transaction gets rolled back, I still want to keep processing the other rows (don't want to the transform to stop).
Two questions:
Upvotes: 3
Views: 763
Reputation: 1238
Within a transformation, Pentaho processes rows within a stream concurrently, all in the same transaction. To roll back a single row, you would need a separate transaction for each row, which Pentaho doesn't support.
I recommend using another approach to achieve the same effect. Two possibilities:
Upvotes: 2