How to identify bottlenecks in
sources,targets,mappings,workflow,system and how to
increase the performance?

Answers were Sorted based on User's Feedback



How to identify bottlenecks in sources,targets,mappings,workflow,system and how to increase the ..

Answer / praveenkumar.b

Source:
Create the Filter transformation after all the Source
Qualifiers and make the filter condition FALSE so that the
data will not go beyond this trasformation. Then run the
session and find out the time taken from source. If you
feel there is some lack in performance, then suggest the
necessary index creation in Pre Session.
Note: If the source is File, then there is no possibility
of performance problme in source side

Target:
Delete the target table from the mapping and create the
same structure as a Flat file. Run the session and find out
the time taken to write the file. If you feel problem in
performance, then delete the INDEX of the table before
loading the data. In post Session, Create the same index
Note:If the target is File, then there is no possibility of
performance problme in target side

Mapping:
The below steps need to be consider
#1. Delete all the transformations and make it as single
pass through
#2. Avoid using more number of transformations
#3. If you want to use more filter transformation, then use
Router transformation instead of it
#4. Calculate the index and data cache properly for
Aggregator, Joiner, Ranker, Sorter if the Power center is
lower version. Advance version, Power center itself will
take care of this
#5. Always pass the sorted i/p's to Aggregator
#6. Use incremental aggregation
#7. Dont do complex calculation in Aggregator
transformation.

Session:
Increas the DTM buffer size

System:
#1. Increase the RAM capacity
#2. Avoid paging

Is This Answer Correct ?    27 Yes 1 No

How to identify bottlenecks in sources,targets,mappings,workflow,system and how to increase the ..

Answer / kalyan

Run ur session in Verbose Mode and check out the Busy
Percentage in the Log. IF its more at the Reader thread
than ur Source Query is the Bottleneck.Tune your SQ.

If its Writer thread, then you check with your target . May
be you need to drop and recreate the Indexes on the target
table.

If its the Transformation thread , then check with your
mapping logic. Concentrate More on Aggregator part..

Fine tune your logic. Don't drag the fields which are not
used to all the transformations. try to use as less
transformations as possible.
Cache your lookups .Whenever possible use the persistent
lookup concept.

This should help guys..

Is This Answer Correct ?    17 Yes 2 No

How to identify bottlenecks in sources,targets,mappings,workflow,system and how to increase the ..

Answer / samba ch

Bottleneck in Informatica
Bottleneck in ETL Processing is the point by which the performance of the ETL Process is slowr.
When ETL Process is in progress first thing login to workflow monitor and observe performance statistic. I.e. observe processing rows per second. In SSIS and Datastage when you run the job you can see at every level how many rows per second is processed by the server.
Mostly bottleneck occurs at source qualifier during fetching data from source joiner aggregator Lookup Cache Building Session.
Removing bottleneck is performance tuning.

Is This Answer Correct ?    3 Yes 0 No

How to identify bottlenecks in sources,targets,mappings,workflow,system and how to increase the ..

Answer / srinu

identification of bottelnecks
target:configuring session to write to flatfiletarget
source:add filter t/r after sq t/t to false show that no
data is processed past the filter t/r,if it time takes to
run new session remains same to the original session there
is source bottel necks
mapping:add filter t/f before each target and set filter
condition to false,similar to source
session:use the collect performance data to identify the
session bottel necks
read from desk,write to disk counters other than zero,there
is bottelnecks

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More Informatica Interview Questions

differnece between joiner and a look up(please don't give just definitions)....i mean in which scenario it is better to use joiner and in which scenario better o use lookup ??

2 Answers   IBM,


When do we use dynamic cache and static cache in connected and unconnected lookup transformations?

3 Answers  


What is a command that used to run a batch?

4 Answers  


What is event and what are the tasks related to it?

0 Answers  


By using joiner t/r we can join only 2 tables, SO if want join more than 2 flat files ,How can i join?

1 Answers  






what is the end to end process meaning in my project(my project is development)and functionality plz tell me

0 Answers  


What can we do to improve the performance of informatica aggregator transformation?

0 Answers  


I have three same source structure tables. But, I want to load into single target table. How do I do this? Explain in detail through mapping flow.

0 Answers  


Hi experts, can anyone tell how much we use plsql in real time

3 Answers  


What are the differences between joiner transformation and source qualifier transformation?

0 Answers   Informatica,


What is session task and command task?

0 Answers  


Explain pushdown optimization $pushdownconfig parameter - informatica

0 Answers   Informatica,


Categories