We’re using Cloverleaf and the FTP Protocol to pull in a CSV file from a network server, make a very easy concatenation and then save the file to another server via the FTP Protocol. The file is about 5000 lines and 250KB. This all works fine.
What I don’t like is that this takes 5-10 minutes for the output file to get all the lines written to it. We are reading it in as NL and outputting it as NL with append checked. Each line is written to the SMAT logs on both sides as a separate transaction, is there a way to have this be one transaction logged with 5000 lines? I would assume that this would speed up processing as well.
When I changed this from NL to Single it would process the header line and part of the 2nd line and that was it. Anybody have any ideas on what makes the write part of this so slow and whether these can be logged as a single transaction? Thanks!