Reputation: 840
with the reference to my previous post,here is the link
I have 130000 records in my source. When I tried running the transformation it was still running after 16 hours.
Will increasing the memory heap of spoon.bat script file help reduce the execution time of my transformation? (Changed from PENTAHO_DI_JAVA_OPTIONS="-Xmx256m -XX:MaxPermSize=256m
TO PENTAHO_DI_JAVA_OPTIONS="-Xmx2g -XX:MaxPermSize=256m
).
What are other ways to increase performance of the transformation?
Upvotes: 1
Views: 6349
Reputation: 11
Upvotes: 1
Reputation: 1764
I also needed to speed up a transformation. This is my settings PENTAHO_DI_JAVA_OPTIONS="-Xmx2048m" "-XX:MaxPermSize=1024m"
.
A final speed depends on a design of a transformation. In general:
Step Metrics
tab of Execution results
, focus on Speed
a Input/output
]. E.g. database joins to remote server, merge joins, sort step. You can set more instances for such a step (right click on the step > Change number of copies to start..
> set it to 2 or more > re-run the transformation and see the differences). Further reading:
Upvotes: 3