Its been some time since the last post, but now i am back with a pretty interesting article
Performance tuning is a very vital aspect in any project. The faster and better interface is always appreciated and wins laurels
When the file size/ table which act as our sources are huge in size and the throughput is very low then we can go for partitioning. In partitioning we can split the data into various threads so data will be processed faster
If the informatica we are using is a standard edition then partitioning feature will not be available so now what we can do is increase DTM buffer size. It will be present in session properties under performance section. By default it will be in auto mode we can change it to say 220mb,1gb etc depending on size of the source data.This will increase the throughput
If the lookup transformation is taking is long time than we can go for joiner transformation to perform the same operation. As joiner will be better in performance when compared to lookup this is because lookup transformation stops the flow until it builds cache on the table whereas joiner doesn't do so the flow doesn't get hanged it keeps on running record by record.
If the target table is taking time to load drop the indexes in pre session command and recreate them in post session command. Keep the target load type as BULK. This increases the throughput.
If the update strategy transformation is taking long time to execute then try to perform the same operation via sql update statement either through sql transformation or post sql
Try as much filtering of records in initial stage of flow i.e. at source qualifier for table type of data give all where conditions which filters data in sql override
Use sorted input option for aggregator. so sort the data before data passes through aggregator transformation
Try performing much of the operations at database level rather than informatica
These are some of the tips for a better performance flows. Hope this article helps in your informatica performance
Comments
Post a Comment