Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

the time of charging data

I'm working with talend to transform data from oracle database to postgresql database but i have a problem with the time of charging data, it takes too much time so is there any solution for this problem

Labels (1)
3 Replies
TRF
Champion II
Champion II

Can you detail your job? Which components are using? Which one seems to slow your job? How many rows are you trying to move from source to target?

 

Anonymous
Not applicable
Author

 the output of the tmap componant is the one which slow my job , i  have to move almost 3.000.000 lines from the source to the target . the componants which i use in my job are postgresqlinput oracleinput , postgresqloutput tmap and tunit .

 

TRF
Champion II
Champion II

Hi,
In most cases, tMap is not the cause of slow process and 3,000,000 rows is not a monster.
Did you use statistics to measure response time for each component?
Did you measure select duration individualy? Are they simple or complex queries?
In my opinion, you should focus on the Postgresql part and try to bulkify the transaction because of the number of rows. See tPostgresqlOutputBulkExec for this purpose.

Let us know.