I just need some advice. I thought I read somewhere that using a data iterator to read a file without using a file access or ftp node first will slow down the process. I did a search but I can't find the original article. We are fairly new to IPA, so I'm trying to create a 'Best Practice' document as I learn more. The developer has a data iterator as the first node in the flow. The data iterator is needed to read the file, but I suggested he add a file access node to the beginning so the flow is not going to the drive each time to read in the file. The Caveat is the file is located on the IPA server. So do you have a best practice for reading in files?
Thanks
Joan
Hi Woozy - thank you. I'm assuming that it doesn't matter if the file is located on the same server as IPA, your answer would still be the same.
It might be this link:
https://www.lawsonguru.co...rator-login-process/
tambrosi thanks for the link, that's the one I was looking for.
woozy - Thank you. One more question. We are using a File Channel to read in the FILE so the DI input method is DATA from _inputData. based on a post in the link below
"The idea otf using FileAccess to 'load' the file into IPA prevents multipe Open-Read-Close of a file that the DataItera performs when it processes a file. Load the file and then set the DataIterator to process the Data (instead of File) and set the source to be the FileAccess_outputData. So read the file into IPA and set the DI to process the data from that. It saves a lot of time."
it appears the performance issue is related to the DI accessing the FILE as appose to the DATA. So in this case a file access is not needed. Is this a correct assumption?
Thank you everyone, that's what I needed.