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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
_AnonymousUser
Specialist III
Specialist III

Running same job multiple times for reading file from same folder

hi,
I have a job which reads file from a folder and process it and load into db.
tfilelist----->iterate---->tfileinputdelimited----->main----->tmap----->main------>tmysqloutputbulkexec
if i run this job using two trunjob components,each tfilelist lists same files and both job will read same files but i want first job to read first file,and secondh job should read second file and etc . How to achieve this scenario.
Labels (2)
10 Replies
Anonymous
Not applicable

hi,

if its about parallel processing to make the process faster

then a simple workaround could be divide the files in two parts and change their names to some particular string so that you can  distinguish files of part one and two

and then use those particular strings as file mask in both the jobs respectively

in this way you can achieve the parallel processing.